Revision 1565fb689cdd3d62857c6527ab0a3b7e74874e13 authored by alex@thinkpad on 01 June 2017, 17:19:43 UTC, committed by alex@thinkpad on 01 June 2017, 17:19:43 UTC
(only messages received shortly after a mpu_send call should be considered replies)
1 parent fd48834
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