mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
19 lines
224 B
C
19 lines
224 B
C
/*
|
|
* gps.h
|
|
*
|
|
* Created on: Mar 8, 2012
|
|
* Author: thomasgubler
|
|
*/
|
|
|
|
#ifndef GPS_H_
|
|
#define GPS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct arg_struct {
|
|
int *fd_ptr;
|
|
bool *thread_should_exit_ptr;
|
|
};
|
|
|
|
#endif /* GPS_H_ */
|