https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: ac3e8038574fe7f2dfd931ea3b3929856fa536d5 authored by Daniel Fort on 21 January 2018, 02:44:02 UTC
Closed branch EOSM2.103_new-dryos-task-hooks-2
Tip revision: ac3e803
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