-
Notifications
You must be signed in to change notification settings - Fork 459
/
GPS.h
33 lines (27 loc) · 917 Bytes
/
GPS.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef GPS_H_
#define GPS_H_
//Function prototypes for GPS frame parsing
bool GPS_newFrame(uint8_t c);
extern uint8_t GPS_Frame; // a valid GPS_Frame was detected, and data is ready for nav computation
extern int32_t wrap_18000(int32_t ang);
void GPS_set_pids(void);
void GPS_SerialInit(void);
uint8_t GPS_Compute(void);
void GPS_reset_home_position(void);
void GPS_set_next_wp(int32_t* lat_to, int32_t* lon_to, int32_t* lat_from, int32_t* lon_from);
void GPS_reset_nav(void);
int32_t get_altitude_error();
void clear_new_altitude();
void force_new_altitude(int32_t _new_alt);
void set_new_altitude(int32_t _new_alt);
int32_t get_new_altitude();
void abort_mission(unsigned char error_code);
void GPS_adjust_heading();
void init_RTH(void);
void check_land(void);
#if defined(I2C_GPS)
uint8_t GPS_NewData(void);
#endif
extern uint32_t wp_distance;
extern int32_t target_bearing;
#endif /* GPS_H_ */