summaryrefslogtreecommitdiff
path: root/gps_json.h
blob: bb1047e154ad4f4a1bd65c0bdb3c3dcbc3d2d8c2 (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
49
50
51
52
53
54
55
56
57
58
59
60
/* gps_json.h - JSON handling for libgps and gpsd
 *
 * By Eric S. Raymond, 2009
 * This file is Copyright (c) 2010-2019 by the GPSD project
 * SPDX-License-Identifier: BSD-2-clause
 */

#include "json.h"

#define GPS_JSON_COMMAND_MAX	80
/* u-blox 9 can make really long JSON in "RAW" messages */
#define GPS_JSON_RESPONSE_MAX	10240

#ifdef __cplusplus
extern "C" {
#endif

struct gps_device_t;

void json_data_report(const gps_mask_t,
		      const struct gps_device_t *,
		      const struct gps_policy_t *,
		      char *, size_t);
char *json_stringify(char *, size_t, const char *);
void json_tpv_dump(const struct gps_device_t *,
		   const struct gps_policy_t *, char *, size_t);
void json_noise_dump(const struct gps_data_t *, char *, size_t);
void json_raw_dump(const struct gps_data_t *, char *, size_t);
void json_sky_dump(const struct gps_data_t *, char *, size_t);
void json_att_dump(const struct gps_data_t *, char *, size_t);
void json_oscillator_dump(const struct gps_data_t *, char *, size_t);
void json_subframe_dump(const struct gps_data_t *, char buf[], size_t);
void json_device_dump(const struct gps_device_t *, char *, size_t);
void json_watch_dump(const struct gps_policy_t *, char *, size_t);
int json_watch_read(const char *, struct gps_policy_t *,
		    const char **);
int json_device_read(const char *, struct devconfig_t *,
		     const char **);
void json_version_dump(char *, size_t);
void json_aivdm_dump(const struct ais_t *, const char *, bool,
		     char *, size_t);
int json_rtcm2_read(const char *, char *, size_t, struct rtcm2_t *,
		    const char **);
int json_rtcm3_read(const char *, char *, size_t, struct rtcm3_t *,
		    const char **);
int json_ais_read(const char *, char *, size_t, struct ais_t *,
		  const char **);
int libgps_json_unpack(const char *, struct gps_data_t *,
		       const char **);
#ifdef __cplusplus
}
#endif

/* these values don't matter in themselves, they just have to be out-of-band */
#define DEVDEFAULT_BPS  	0
#define DEVDEFAULT_PARITY	'X'
#define DEVDEFAULT_STOPBITS	3
#define DEVDEFAULT_NATIVE	-1

/* gps_json.h ends here */