Subversion Repositories FlightCtrl

Rev

Rev 701 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
701 killagreg 1
#ifndef _GPS_H
2
#define _GPS_H
3
 
726 killagreg 4
#include <inttypes.h>
304 ingob 5
 
726 killagreg 6
extern int16_t GPS_Pitch;
7
extern int16_t GPS_Roll;
701 killagreg 8
 
726 killagreg 9
extern uint8_t GPS_P_Factor;
10
extern uint8_t GPS_D_Factor;
11
 
12
extern void GPS_Main(void);
13
 
701 killagreg 14
#endif //_GPS_H
15