-
Notifications
You must be signed in to change notification settings - Fork 1
/
GnssNavClockParser.h
95 lines (79 loc) · 2.69 KB
/
GnssNavClockParser.h
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* Copyright (C) 2019 GlobalLogic
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __GNSSNAVCLOCKPARSER_H__
#define __GNSSNAVCLOCKPARSER_H__
#include <vector>
#include <cstdint>
#include <list>
#include <queue>
#include <android/hardware/gnss/1.0/types.h>
#include <android/hardware/gnss/1.0/IGnssMeasurementCallback.h>
#include "GnssParserCommonImpl.h"
/* From u-blox 8 / u-blox M8 Receiver Description - Manual
* 33.18.2 UBX-RXM-MEASX (0x02 0x14)
* 33.18.2.1 Satellite Measurements for RRLP
* Message: UBX-NAV-PVT
* Description: Satellite Measurements for RRLP
*/
class GnssNavClockParser : public GnssParserCommonImpl {
public:
/*!
* \brief GnssNavClockParser
* \param payload - a pointer to the payload of incoming message
* \param payloadLen - length in bytes of payload
*/
GnssNavClockParser(const uint8_t* payload, uint16_t payloadLen);
~GnssNavClockParser() override {}
/*!
* \brief retrieveSvInfo - fill the gnssData object with collected data
* \param gnssData - reference to gnssData object
* \return ClockDone on success, otherwise NotReady
*/
uint8_t retrieveSvInfo(MeasurementCb::GnssData &gnssData) final;
/*!
* \brief dumpDebug - print log in logcat, and write dump to file
*/
void dumpDebug() override;
protected:
GnssNavClockParser() : mPayload(nullptr) {}
/*!
* \brief parseNavClockMsg
*/
void parseNavClockMsg();
/*!
* \brief parseSingleBlock - parser incoming message of type ubx-nav-clock
* \brief get clock bias, clock drift, time accuracy and frequency estimate
*/
void parseSingleBlock();
/*!
* \brief getGnssClock - fill the clock member, of GnssData struct
* \param instance - a reference to the clockfield of GnssData structure
*/
void getGnssClock(MeasurementCb::GnssClock &instance);
private:
typedef struct NavClock {
uint32_t iTow;
int32_t clockBias;
int32_t clockDrift;
uint32_t timeAccuracy;
uint32_t freqAccuracyEstimate;
} navClock_t;
const uint8_t* mPayload;
navClock_t data = {};
uint16_t mPayloadLen = 0;
bool mValid = false;
};
#endif //__GNSSNAVCLOCKPARSER_H__