https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 3c8ed7d6cda1a2c21294add1866d7d3f47dc0941 authored by alex@thinkpad on 24 September 2018, 10:00:01 UTC
io_trace: fix crash with CONFIG_QEMU
Tip revision: 3c8ed7d
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