https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 8dc672d2a590f0cf21e69d94cb4db566bb956146 authored by a1ex on 19 June 2016, 18:13:39 UTC
Close branch Windows build_tools.
Tip revision: 8dc672d
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