https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: cf88fc99ff2b79945ddd20098c66aee49a0e4363 authored by Alex on 05 September 2016, 10:46:40 UTC
Close branch mk11174/rawc-edited-online-with-bitbucket-1469826999319.
Tip revision: cf88fc9
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