mirror of https://github.com/ArduPilot/ardupilot
322 lines
8.1 KiB
C++
322 lines
8.1 KiB
C++
#include "LR_MsgHandler.h"
|
|
#include "LogReader.h"
|
|
#include "Replay.h"
|
|
|
|
#include <AP_DAL/AP_DAL.h>
|
|
|
|
#include <cinttypes>
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
#define MSG_CREATE(sname,msgbytes) log_ ##sname msg; memcpy((void*)&msg, (msgbytes)+3, sizeof(msg));
|
|
|
|
LR_MsgHandler::LR_MsgHandler(struct log_Format &_f) :
|
|
MsgHandler(_f) {
|
|
}
|
|
|
|
void LR_MsgHandler_RFRH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RFRH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RFRF::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RFRF, msgbytes);
|
|
#define MAP_FLAG(flag1, flag2) if (msg.frame_types & uint8_t(flag1)) msg.frame_types |= uint8_t(flag2)
|
|
/*
|
|
when we force an EKF we map the trigger flags over
|
|
*/
|
|
if (replay_force_ekf2) {
|
|
MAP_FLAG(AP_DAL::FrameType::InitialiseFilterEKF3, AP_DAL::FrameType::InitialiseFilterEKF2);
|
|
MAP_FLAG(AP_DAL::FrameType::UpdateFilterEKF3, AP_DAL::FrameType::UpdateFilterEKF2);
|
|
MAP_FLAG(AP_DAL::FrameType::LogWriteEKF3, AP_DAL::FrameType::LogWriteEKF2);
|
|
}
|
|
if (replay_force_ekf3) {
|
|
MAP_FLAG(AP_DAL::FrameType::InitialiseFilterEKF2, AP_DAL::FrameType::InitialiseFilterEKF3);
|
|
MAP_FLAG(AP_DAL::FrameType::UpdateFilterEKF2, AP_DAL::FrameType::UpdateFilterEKF3);
|
|
MAP_FLAG(AP_DAL::FrameType::LogWriteEKF2, AP_DAL::FrameType::LogWriteEKF3);
|
|
}
|
|
#undef MAP_FLAG
|
|
AP::dal().handle_message(msg, ekf2, ekf3);
|
|
}
|
|
|
|
void LR_MsgHandler_RFRN::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RFRN, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_REV2::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(REV2, msgbytes);
|
|
|
|
switch ((AP_DAL::Event)msg.event) {
|
|
|
|
case AP_DAL::Event::resetGyroBias:
|
|
ekf2.resetGyroBias();
|
|
break;
|
|
case AP_DAL::Event::resetHeightDatum:
|
|
ekf2.resetHeightDatum();
|
|
break;
|
|
case AP_DAL::Event::setTerrainHgtStable:
|
|
ekf2.setTerrainHgtStable(true);
|
|
break;
|
|
case AP_DAL::Event::unsetTerrainHgtStable:
|
|
ekf2.setTerrainHgtStable(false);
|
|
break;
|
|
case AP_DAL::Event::requestYawReset:
|
|
ekf2.requestYawReset();
|
|
break;
|
|
case AP_DAL::Event::checkLaneSwitch:
|
|
ekf2.checkLaneSwitch();
|
|
break;
|
|
}
|
|
if (replay_force_ekf3) {
|
|
LR_MsgHandler_REV3 h{f, ekf2, ekf3};
|
|
h.process_message(msgbytes);
|
|
}
|
|
}
|
|
|
|
void LR_MsgHandler_RSO2::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RSO2, msgbytes);
|
|
Location loc;
|
|
loc.lat = msg.lat;
|
|
loc.lng = msg.lng;
|
|
loc.alt = msg.alt;
|
|
ekf2.setOriginLLH(loc);
|
|
|
|
if (replay_force_ekf3) {
|
|
LR_MsgHandler_RSO2 h{f, ekf2, ekf3};
|
|
h.process_message(msgbytes);
|
|
}
|
|
}
|
|
|
|
void LR_MsgHandler_RWA2::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RWA2, msgbytes);
|
|
ekf2.writeDefaultAirSpeed(msg.airspeed);
|
|
if (replay_force_ekf3) {
|
|
LR_MsgHandler_RWA2 h{f, ekf2, ekf3};
|
|
h.process_message(msgbytes);
|
|
}
|
|
}
|
|
|
|
|
|
void LR_MsgHandler_REV3::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(REV3, msgbytes);
|
|
|
|
switch ((AP_DAL::Event)msg.event) {
|
|
|
|
case AP_DAL::Event::resetGyroBias:
|
|
ekf3.resetGyroBias();
|
|
break;
|
|
case AP_DAL::Event::resetHeightDatum:
|
|
ekf3.resetHeightDatum();
|
|
break;
|
|
case AP_DAL::Event::setTerrainHgtStable:
|
|
ekf3.setTerrainHgtStable(true);
|
|
break;
|
|
case AP_DAL::Event::unsetTerrainHgtStable:
|
|
ekf3.setTerrainHgtStable(false);
|
|
break;
|
|
case AP_DAL::Event::requestYawReset:
|
|
ekf3.requestYawReset();
|
|
break;
|
|
case AP_DAL::Event::checkLaneSwitch:
|
|
ekf3.checkLaneSwitch();
|
|
break;
|
|
}
|
|
|
|
if (replay_force_ekf2) {
|
|
LR_MsgHandler_REV2 h{f, ekf2, ekf3};
|
|
h.process_message(msgbytes);
|
|
}
|
|
}
|
|
|
|
void LR_MsgHandler_RSO3::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RSO3, msgbytes);
|
|
Location loc;
|
|
loc.lat = msg.lat;
|
|
loc.lng = msg.lng;
|
|
loc.alt = msg.alt;
|
|
ekf3.setOriginLLH(loc);
|
|
if (replay_force_ekf2) {
|
|
LR_MsgHandler_RSO2 h{f, ekf2, ekf3};
|
|
h.process_message(msgbytes);
|
|
}
|
|
}
|
|
|
|
void LR_MsgHandler_RWA3::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RWA3, msgbytes);
|
|
ekf3.writeDefaultAirSpeed(msg.airspeed, msg.uncertainty);
|
|
if (replay_force_ekf2) {
|
|
LR_MsgHandler_RWA2 h{f, ekf2, ekf3};
|
|
h.process_message(msgbytes);
|
|
}
|
|
}
|
|
|
|
void LR_MsgHandler_REY3::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(REY3, msgbytes);
|
|
ekf3.writeEulerYawAngle(msg.yawangle, msg.yawangleerr, msg.timestamp_ms, msg.type);
|
|
}
|
|
|
|
void LR_MsgHandler_RISH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RISH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
void LR_MsgHandler_RISI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RISI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RASH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RASH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
void LR_MsgHandler_RASI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RASI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RBRH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RBRH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RBRI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RBRI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RRNH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RRNH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RRNI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RRNI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RGPH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RGPH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RGPI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RGPI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RGPJ::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RGPJ, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RMGH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RMGH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RMGI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RMGI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RBCH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RBCH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RBCI::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RBCI, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_RVOH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RVOH, msgbytes);
|
|
AP::dal().handle_message(msg);
|
|
}
|
|
|
|
void LR_MsgHandler_ROFH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(ROFH, msgbytes);
|
|
AP::dal().handle_message(msg, ekf2, ekf3);
|
|
}
|
|
|
|
void LR_MsgHandler_RWOH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RWOH, msgbytes);
|
|
AP::dal().handle_message(msg, ekf2, ekf3);
|
|
}
|
|
|
|
void LR_MsgHandler_RBOH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(RBOH, msgbytes);
|
|
AP::dal().handle_message(msg, ekf2, ekf3);
|
|
}
|
|
|
|
void LR_MsgHandler_REPH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(REPH, msgbytes);
|
|
AP::dal().handle_message(msg, ekf2, ekf3);
|
|
}
|
|
|
|
void LR_MsgHandler_REVH::process_message(uint8_t *msgbytes)
|
|
{
|
|
MSG_CREATE(REVH, msgbytes);
|
|
AP::dal().handle_message(msg, ekf2, ekf3);
|
|
}
|
|
|
|
#include <AP_AHRS/AP_AHRS.h>
|
|
#include "VehicleType.h"
|
|
|
|
bool LR_MsgHandler_PARM::set_parameter(const char *name, const float value)
|
|
{
|
|
const char *ignore_parms[] = {
|
|
"LOG_FILE_BUFSIZE",
|
|
"LOG_DISARMED"
|
|
};
|
|
for (uint8_t i=0; i < ARRAY_SIZE(ignore_parms); i++) {
|
|
if (strncmp(name, ignore_parms[i], AP_MAX_NAME_SIZE) == 0) {
|
|
::printf("Ignoring set of %s to %f\n", name, value);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return LogReader::set_parameter(name, value);
|
|
}
|
|
|
|
void LR_MsgHandler_PARM::process_message(uint8_t *msg)
|
|
{
|
|
const uint8_t parameter_name_len = AP_MAX_NAME_SIZE + 1; // null-term
|
|
char parameter_name[parameter_name_len];
|
|
|
|
require_field(msg, "Name", parameter_name, parameter_name_len);
|
|
|
|
float value = require_field_float(msg, "Value");
|
|
set_parameter(parameter_name, value);
|
|
}
|