Rev 885 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 885 | Rev 886 | ||
---|---|---|---|
Line -... | Line 1... | ||
- | 1 | #ifndef _GPS_H |
|
- | 2 | #define _GPS_H |
|
- | 3 | ||
- | 4 | #include <inttypes.h> |
|
- | 5 | ||
1 | extern signed int GPS_Nick; |
6 | extern uint8_t GPS_P_Factor; |
2 | extern signed int GPS_Roll; |
7 | extern uint8_t GPS_I_Factor; |
3 | extern signed int GPS_Nick2; |
8 | extern uint8_t GPS_D_Factor; |
- | 9 | ||
4 | extern signed int GPS_Roll2; |
10 | extern void GPS_Main(uint8_t ctrl); |
- | 11 | extern void GPS_SetHomePosition(void); |
|
- | 12 | extern void GPS_ClearHomePosition(void); |
|
- | 13 | ||
- | 14 | #endif //_GPS_H |
|
Line 5... | Line -... | ||
5 | - | ||
6 | void GPS_Neutral(void); |
- |