b7500dbcd5a4cf9bc54f7b0af9a44aa1566ea021
[osmocom-bb.git] / src / host / layer23 / include / osmocom / bb / common / 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 osmo_gps {
23         /* GPS device */
24         uint8_t         enable;
25
26 #ifdef _USE_GPSD
27         char            gpsd_host[32];
28         char            gpsd_port[6];
29 #else
30         char            device[32];
31         uint32_t        baud;
32 #endif
33
34         /* current data */
35         uint8_t         valid; /* we have a fix */
36         time_t          gmt; /* GMT time when position was received */
37         double          latitude, longitude;
38 };
39
40 extern struct osmo_gps gps;
41
42 int osmo_gps_open(void);
43 void osmo_gps_close(void);
44 void osmo_gps_init(void);
45
46