blob: 621475d65efa287273e03ad5a55aa16626f8799f [file] [log] [blame]
Sylvain Munaut341542b2009-12-22 21:53:22 +01001/*
2 * ubx-parse.h
3 *
4 * Header for parsing code converting UBX messages to GPS assist data
5 *
6 *
7 * Copyright (C) 2009 Sylvain Munaut <tnt@246tNt.com>
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#ifndef __UBX_PARSE_H__
24#define __UBX_PARSE_H__
25
26
27#include "gps.h"
28#include "ubx.h"
29
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35
36/* Dispatch table */
37extern struct ubx_dispatch_entry ubx_parse_dt[];
38
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* __UBX_PARSE_H__ */
45