Revision 142b54530dfe3f8f40b96da52ed8a081348668dd authored by a1ex on 27 January 2015, 20:48:44 UTC, committed by a1ex on 27 January 2015, 20:48:44 UTC
1 parent 2e7479d
Raw File
gps.h
#ifndef __GPS_H_
#define __GPS_H_

uint32_t gps_get_state();
#define GPS_OFF 0
#define GPS_EXTERNAL 1
#define GPS_INTERNAL 2

void gps_disable();
void gps_re_enable();

#ifdef FEATURE_GPS_TWEAKS
void gps_tweaks_startup_hook();
void gps_tweaks_shutdown_hook();
#endif

#endif // __GPS_H_
back to top