LoRaWAN-Signal-Mapping/iot/main/power.h
Starbeamrainbowlabs 79adeef737 Implement initial power management functions.
Next up, we need to test it to see how long it'll last on a battery.
2019-06-20 12:23:09 +01:00

16 lines
259 B
C

/**
* Wakes the GPS module up from standby.
*/
void power_gps_wakeup();
/**
* Puts the GPS module into standby.
*/
void power_gps_standby();
/**
* Signals that our work is complete and that we can turn off now to the
* TPL5111.
*/
void power_off();