Subversion Repositories FlightCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1068 thjac 1
/* gps.c
2
 */
3
 
4
int GPS_Nick;
5
int GPS_Roll;
6
 
7
 
8
void GPS_Neutral( void ) {
9
        GPS_Nick = 0;
10
        GPS_Roll = 0;
11
}
12
 
13
 
14
void GPS_Main( void ) {
15
        GPS_Neutral();
16
}
17