-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathashtech.h
151 lines (114 loc) · 4.41 KB
/
ashtech.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/****************************************************************************
*
* Copyright (C) 2013. All rights reserved.
* Author: Boriskin Aleksey <[email protected]>
* Kistanov Alexander <[email protected]>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/** @file ASHTECH protocol definitions */
#pragma once
#include "base_station.h"
#include <math.h>
class RTCMParsing;
#define ASHTECH_RECV_BUFFER_SIZE 512
#define ASH_RESPONSE_TIMEOUT 200 // ms, timeout for waiting for a response
class GPSDriverAshtech : public GPSBaseStationSupport
{
public:
/**
* @param heading_offset heading offset in radians [-pi, pi]. It is substracted from the measurement.
*/
GPSDriverAshtech(GPSCallbackPtr callback, void *callback_user, sensor_gps_s *gps_position,
satellite_info_s *satellite_info, float heading_offset = 0.f);
virtual ~GPSDriverAshtech();
int configure(unsigned &baudrate, const GPSConfig &config) override;
int receive(unsigned timeout) override;
private:
enum class AshtechBoard {
trimble_mb_two,
other
};
enum class NMEACommand {
Acked, // Command that returns a (N)Ack
PRT, // port config
RID, // board identification
RECEIPT// board identification
};
enum class NMEACommandState {
idle,
waiting,
nack,
received
};
enum class NMEADecodeState {
uninit,
got_sync1,
got_asteriks,
got_first_cs_byte,
decode_rtcm3
};
/**
* enable output of correction output
*/
void activateCorrectionOutput();
void activateRTCMOutput(bool reduce_update_rate);
void decodeInit(void);
int handleMessage(int len);
int parseChar(uint8_t b);
/**
* receive data for at least the specified amount of time
*/
void receiveWait(unsigned timeout_min);
void sendSurveyInStatusUpdate(bool active, bool valid, double latitude = static_cast<double>(NAN),
double longitude = static_cast<double>(NAN), float altitude = NAN);
/**
* Write a command and wait for a (N)Ack
* @return 0 on success, <0 otherwise
*/
int writeAckedCommand(const void *buf, int buf_length, unsigned timeout);
int waitForReply(NMEACommand command, const unsigned timeout);
bool _correction_output_activated{false};
bool _configure_done{false};
bool _got_pashr_pos_message{false}; /**< If we got a PASHR,POS message, we will ignore GGA messages */
char _port{'A'}; /**< port we are connected to (e.g. 'A') */
uint8_t _rx_buffer[ASHTECH_RECV_BUFFER_SIZE];
uint16_t _rx_buffer_bytes{};
uint64_t _last_timestamp_time{0};
float _heading_offset;
gps_abstime _survey_in_start{0};
sensor_gps_s *_gps_position {nullptr};
satellite_info_s *_satellite_info {nullptr};
AshtechBoard _board{AshtechBoard::other}; /**< board we are connected to */
NMEACommand _waiting_for_command;
NMEACommandState _command_state{NMEACommandState::idle};
NMEADecodeState _decode_state{NMEADecodeState::uninit};
OutputMode _output_mode{OutputMode::GPS};
RTCMParsing *_rtcm_parsing{nullptr};
};