Developer World
Spresense Arduino Library v3.2.0-77d75a4
GNSSPositionData.h
1/*
2 * GNSSPositionData.h - GNSS include file for the Spresense SDK
3 * Copyright 2018, 2023 Sony Semiconductor Solutions Corporation
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef GnssPositionData_h
21#define GnssPositionData_h
22
23#include <arch/chip/gnss.h>
24
25typedef struct
26{
27 unsigned long MagicNumber;
28 unsigned long CRC;
29 struct cxd56_gnss_positiondata_s Data;
31
32#ifdef CONFIG_CXD56_GNSS_ADDON
33typedef struct
34{
35 unsigned long MagicNumber;
36 unsigned long CRC;
37 struct cxd56_gnss_positiondata2_s Data;
38}GnssPositionData2;
39#endif
40
41#endif // GnssPositionData_h
Definition: GNSSPositionData.h:26