FreeCalypso > hg > freecalypso-tools
view loadtools/old/gtapower.c @ 752:c79aaed75bd8
compile-fc-batt: allow possible third field in source lines
Battery tables maintained in the fc-battery-conf repository will now
have a third field added, defining thresholds for the battery bars icon,
and there will be a new utility to compile them into the new
/etc/batterytab2 file read by the FC Tourmaline version of our
FCHG driver. For backward compatibility with the original Magnetite
version of FCHG, compile-fc-batt remains the tool for compiling the
original /etc/batterytab file format, and it needs to ignore the
newly added third field in battery table sources.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Nov 2020 20:37:55 +0000 |
parents | 62a91abc0300 |
children |
line wrap: on
line source
/* * This module is included only when loadtools are being built to run on the * GTA0x application processor (AP). It provides automated modem power * control, i.e., coordinates modem power control with loadtools operations * for convenience. */ #include <sys/types.h> #include <sys/file.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> /* * Check this pathname: it is correct for the kernel version I'm using * on my test GTA02, but it differs for some other kernel versions. */ static char modem_powerctl_pathname[] = "/sys/bus/platform/devices/gta02-pm-gsm.0/power_on"; void set_gta_modem_power_ctrl(boolval) { char strbuf[16]; int len, fd; len = sprintf(strbuf, "%d\n", boolval); fd = open(modem_powerctl_pathname, O_WRONLY); if (fd < 0) { perror(modem_powerctl_pathname); exit(1); } write(fd, strbuf, len); close(fd); } void fork_gta_modem_poweron() { int i; i = fork(); if (i < 0) { perror("fork"); exit(1); } if (i) return; printf("Toggling %s\n", modem_powerctl_pathname); set_gta_modem_power_ctrl(0); usleep(350000); set_gta_modem_power_ctrl(1); exit(0); }