Browse Source

AP_Logger: LogStructure: add AIS

gps-1.3.1
Peter Hall 5 years ago committed by Randy Mackay
parent
commit
2a58e7097f
  1. 6
      libraries/AP_Logger/LogStructure.h

6
libraries/AP_Logger/LogStructure.h

@ -133,6 +133,7 @@ const struct MultiplierStructure log_Multipliers[] = { @@ -133,6 +133,7 @@ const struct MultiplierStructure log_Multipliers[] = {
#include <AC_PrecLand/LogStructure.h>
#include <AC_Avoidance/LogStructure.h>
#include <AP_ESC_Telem/LogStructure.h>
#include <AP_AIS/LogStructure.h>
// structure used to define logging format
struct PACKED LogStructure {
@ -1320,7 +1321,8 @@ LOG_STRUCTURE_FROM_VISUALODOM \ @@ -1320,7 +1321,8 @@ LOG_STRUCTURE_FROM_VISUALODOM \
{ LOG_PSC_MSG, sizeof(log_PSC), \
"PSC", "Qffffffffffff", "TimeUS,TPX,TPY,PX,PY,TVX,TVY,VX,VY,TAX,TAY,AX,AY", "smmmmnnnnoooo", "F000000000000", true }, \
{ LOG_PSCZ_MSG, sizeof(log_PSCZ), \
"PSCZ", "Qfffffffff", "TimeUS,TPZ,PZ,DVZ,TVZ,VZ,DAZ,TAZ,AZ,ThO", "smmnnnooo%", "F000000002", true }
"PSCZ", "Qfffffffff", "TimeUS,TPZ,PZ,DVZ,TVZ,VZ,DAZ,TAZ,AZ,ThO", "smmnnnooo%", "F000000002", true }, \
LOG_STRUCTURE_FROM_AIS \
// @LoggerMessage: SBPH
// @Description: Swift Health Data
@ -1434,6 +1436,8 @@ enum LogMessages : uint8_t { @@ -1434,6 +1436,8 @@ enum LogMessages : uint8_t {
LOG_PSCZ_MSG,
LOG_RAW_PROXIMITY_MSG,
LOG_IDS_FROM_PRECLAND,
LOG_IDS_FROM_AIS,
_LOG_LAST_MSG_
};

Loading…
Cancel
Save