forked from Archive/PX4-Autopilot
21 lines
361 B
C
21 lines
361 B
C
|
/*
|
||
|
* gps.h
|
||
|
*
|
||
|
* Created on: Mar 8, 2012
|
||
|
* Author: thomasgubler
|
||
|
*/
|
||
|
|
||
|
#ifndef GPS_H_
|
||
|
#define GPS_H_
|
||
|
/****************************************************************************
|
||
|
* Included Files
|
||
|
****************************************************************************/
|
||
|
|
||
|
int gps_fd;
|
||
|
|
||
|
//extern gps_bin_ubx_state_t * ubx_state;
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* GPS_H_ */
|