2015-09-11 10:42:58 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// Trimble GPS driver for ArduPilot.
|
|
|
|
// Code by Michael Oborne
|
2023-05-19 02:02:31 -03:00
|
|
|
// https://receiverhelp.trimble.com/oem-gnss/index.html#Welcome.html?TocPath=_____1
|
|
|
|
|
2016-02-17 21:25:23 -04:00
|
|
|
#pragma once
|
2015-09-11 10:42:58 -03:00
|
|
|
|
|
|
|
#include "AP_GPS.h"
|
2016-04-13 14:20:05 -03:00
|
|
|
#include "GPS_Backend.h"
|
2015-09-11 10:42:58 -03:00
|
|
|
|
2022-01-09 19:15:32 -04:00
|
|
|
#if AP_GPS_GSOF_ENABLED
|
2015-09-11 10:42:58 -03:00
|
|
|
class AP_GPS_GSOF : public AP_GPS_Backend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AP_GPS_GSOF(AP_GPS &_gps, AP_GPS::GPS_State &_state, AP_HAL::UARTDriver *_port);
|
|
|
|
|
2023-05-10 11:53:30 -03:00
|
|
|
AP_GPS::GPS_Status highest_supported_status(void) override WARN_IF_UNUSED {
|
2017-01-25 20:03:22 -04:00
|
|
|
return AP_GPS::GPS_OK_FIX_3D_RTK_FIXED;
|
2015-09-11 10:42:58 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Methods
|
2023-05-10 11:53:30 -03:00
|
|
|
bool read() override WARN_IF_UNUSED;
|
2015-09-11 10:42:58 -03:00
|
|
|
|
2016-08-01 08:58:23 -03:00
|
|
|
const char *name() const override { return "GSOF"; }
|
|
|
|
|
2015-09-11 10:42:58 -03:00
|
|
|
private:
|
|
|
|
|
2023-05-10 11:53:30 -03:00
|
|
|
bool parse(const uint8_t temp) WARN_IF_UNUSED;
|
|
|
|
bool process_message() WARN_IF_UNUSED;
|
|
|
|
void requestBaud(const uint8_t portindex);
|
|
|
|
void requestGSOF(const uint8_t messagetype, const uint8_t portindex);
|
2023-05-11 15:12:35 -03:00
|
|
|
double SwapDouble(const uint8_t* src, const uint32_t pos) const WARN_IF_UNUSED;
|
|
|
|
float SwapFloat(const uint8_t* src, const uint32_t pos) const WARN_IF_UNUSED;
|
|
|
|
uint32_t SwapUint32(const uint8_t* src, const uint32_t pos) const WARN_IF_UNUSED;
|
|
|
|
uint16_t SwapUint16(const uint8_t* src, const uint32_t pos) const WARN_IF_UNUSED;
|
2015-09-11 10:42:58 -03:00
|
|
|
|
2023-05-11 15:24:33 -03:00
|
|
|
struct Msg_Parser
|
2015-09-11 10:42:58 -03:00
|
|
|
{
|
2023-05-09 14:52:45 -03:00
|
|
|
|
2023-05-11 15:24:33 -03:00
|
|
|
enum class State
|
2015-09-11 10:42:58 -03:00
|
|
|
{
|
|
|
|
STARTTX = 0,
|
|
|
|
STATUS,
|
|
|
|
PACKETTYPE,
|
|
|
|
LENGTH,
|
|
|
|
DATA,
|
|
|
|
CHECKSUM,
|
|
|
|
ENDTX
|
2023-05-09 14:52:45 -03:00
|
|
|
};
|
|
|
|
|
2023-05-11 15:24:33 -03:00
|
|
|
State state;
|
2015-09-11 10:42:58 -03:00
|
|
|
|
|
|
|
uint8_t status;
|
|
|
|
uint8_t packettype;
|
|
|
|
uint8_t length;
|
|
|
|
uint8_t data[256];
|
|
|
|
uint8_t checksum;
|
|
|
|
uint8_t endtx;
|
|
|
|
|
|
|
|
uint16_t read;
|
|
|
|
uint8_t checksumcalc;
|
2023-05-11 15:24:33 -03:00
|
|
|
} msg;
|
2015-09-11 10:42:58 -03:00
|
|
|
|
2023-05-11 15:24:33 -03:00
|
|
|
static const uint8_t STX = 0x02;
|
|
|
|
static const uint8_t ETX = 0x03;
|
2015-09-11 10:42:58 -03:00
|
|
|
|
2023-05-19 02:17:21 -03:00
|
|
|
uint8_t packetcount;
|
|
|
|
uint32_t gsofmsg_time;
|
|
|
|
uint8_t gsofmsgreq_index;
|
2023-05-18 22:24:34 -03:00
|
|
|
const uint8_t gsofmsgreq[5] = {1,2,8,9,12};
|
2015-09-11 10:42:58 -03:00
|
|
|
};
|
2022-01-09 19:15:32 -04:00
|
|
|
#endif
|