summaryrefslogtreecommitdiff
path: root/gnss-service/src/globals.h
blob: 7d0dc00419415ff8c864140942ad9b9d9a7985f1 (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
/**************************************************************************
* @licence app begin@
*
* SPDX-License-Identifier: MPL-2.0
*
* \ingroup GNSSService
* \author Marco Residori <marco.residori@xse.de>
*
* \copyright Copyright (C) 2013, XS Embedded GmbH
* 
* \license
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
* this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* @licence end@
**************************************************************************/

#ifndef GLOBALS_H
#define GLOBALS_H

#include <stdbool.h>
#include <pthread.h>
#include <time.h>

#include "gnss-init.h"
#include "gnss.h"
#include "gnss-meta-data.h"

#ifdef __cplusplus
extern "C" {
#endif

extern const TGnssMetaData gMetaData;

void updateGNSSTime(const TGNSSTime time[], uint16_t numElements);
void updateGNSSPosition(const TGNSSPosition position[], uint16_t numElements);
void updateGNSSSatelliteDetail(const TGNSSSatelliteDetail satelliteDetail[], uint16_t numElements);

#ifdef __cplusplus
}
#endif

#endif /* GLOBALS_H */