https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: c0d36205c2acb9b59ae9cdd2cfa5b35f148e57f2 authored by Daniel Fort on 19 January 2019, 23:42:10 UTC
undo merge
Tip revision: c0d3620
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