Revision e5a9df6c8724cf2da2442a26e26145c58d206c98 authored by alex@thinkpad on 14 September 2017, 15:58:30 UTC, committed by alex@thinkpad on 14 September 2017, 15:58:30 UTC
1 parent b92d89e
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