16 lines
259 B
C
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();
|