e45cbc5df223a4ce85a18f11ae592a1c8d8b7c7e
[osmocom-bb.git] / src / host / layer23 / include / osmocom / bb / mobile / gps.h
1 /*
2  * (C) 2010 by Andreas Eversberg <jolly@eversberg.eu>
3  *
4  * All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  */
21
22 struct gps {
23         /* GPS device */
24         uint8_t         enable;
25         char            device[32];
26         uint32_t        baud;
27
28         /* current data */
29         uint8_t         valid; /* we have a fix */
30         time_t          gmt; /* GMT time when position was received */
31         double          latitude, longitude;
32 };
33
34 extern struct gps gps;
35
36 int gps_open(void);
37 void gps_close(void);
38 void gps_init(void);
39
40