blob: ba1aabfb1ffee4e837e1dd2e35b99809220e953c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/*
* gpsdclient.h -- common functions for GPSD clients
*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*
*/
#ifndef _GPSD_GPSDCLIENT_H_
#define _GPSD_GPSDCLIENT_H_
struct exportmethod_t
/* describe an export method */
{
const char *name;
const char *magic;
const char *description;
};
struct fixsource_t
/* describe a data source */
{
char *spec; /* pointer to actual storage */
char *server;
char *port;
char *device;
};
struct exportmethod_t *export_lookup(const char *);
struct exportmethod_t *export_default(void);
void export_list(FILE *);
enum unit {unspecified, imperial, nautical, metric};
enum unit gpsd_units(void);
enum deg_str_type { deg_dd, deg_ddmm, deg_ddmmss };
float true2magnetic(double, double, double);
extern char *deg_to_str( enum deg_str_type type, double f);
extern void gpsd_source_spec(const char *fromstring,
struct fixsource_t *source);
char *maidenhead(double n,double e);
/* this needs to match JSON_DATE_MAX in gpsd.h */
#define CLIENT_DATE_MAX 24
#endif /* _GPSDCLIENT_H_ */
/* gpsdclient.h ends here */
|