2016-01-14 15:30:56 -04:00
|
|
|
#include "Sub.h"
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2024-01-10 00:34:30 -04:00
|
|
|
#if HAL_LOGGING_ENABLED
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
// Code to Write and Read packets from AP_Logger log memory
|
2015-12-30 18:57:56 -04:00
|
|
|
// Code to interact with the user to dump or erase logs
|
|
|
|
|
|
|
|
struct PACKED log_Control_Tuning {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
2016-04-05 00:17:39 -03:00
|
|
|
float throttle_in;
|
|
|
|
float angle_boost;
|
2015-12-30 18:57:56 -04:00
|
|
|
float throttle_out;
|
2016-07-05 21:18:58 -03:00
|
|
|
float throttle_hover;
|
2015-12-30 18:57:56 -04:00
|
|
|
float desired_alt;
|
|
|
|
float inav_alt;
|
2017-04-15 13:33:24 -03:00
|
|
|
float baro_alt;
|
2016-05-22 21:50:44 -03:00
|
|
|
int16_t desired_rangefinder_alt;
|
|
|
|
int16_t rangefinder_alt;
|
2016-05-03 01:45:37 -03:00
|
|
|
float terr_alt;
|
2016-07-05 21:18:58 -03:00
|
|
|
int16_t target_climb_rate;
|
2015-12-30 18:57:56 -04:00
|
|
|
int16_t climb_rate;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write a control tuning packet
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::Log_Write_Control_Tuning()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2017-02-03 17:33:27 -04:00
|
|
|
// get terrain altitude
|
|
|
|
float terr_alt = 0.0f;
|
2021-02-12 23:40:10 -04:00
|
|
|
#if AP_TERRAIN_AVAILABLE
|
2017-02-03 17:33:27 -04:00
|
|
|
terrain.height_above_terrain(terr_alt, true);
|
2016-05-03 01:45:37 -03:00
|
|
|
#endif
|
|
|
|
|
2015-12-30 18:57:56 -04:00
|
|
|
struct log_Control_Tuning pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_CONTROL_TUNING_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
2016-04-05 00:17:39 -03:00
|
|
|
throttle_in : attitude_control.get_throttle_in(),
|
2015-12-30 18:57:56 -04:00
|
|
|
angle_boost : attitude_control.angle_boost(),
|
|
|
|
throttle_out : motors.get_throttle(),
|
2017-02-03 17:33:27 -04:00
|
|
|
throttle_hover : motors.get_throttle_hover(),
|
2021-04-27 03:50:06 -03:00
|
|
|
desired_alt : pos_control.get_pos_target_z_cm() / 100.0f,
|
2021-10-20 05:30:56 -03:00
|
|
|
inav_alt : inertial_nav.get_position_z_up_cm() * 0.01f,
|
2017-04-15 13:33:24 -03:00
|
|
|
baro_alt : barometer.get_altitude(),
|
2016-05-22 21:50:44 -03:00
|
|
|
desired_rangefinder_alt : (int16_t)target_rangefinder_alt,
|
|
|
|
rangefinder_alt : rangefinder_state.alt_cm,
|
2017-02-03 17:33:27 -04:00
|
|
|
terr_alt : terr_alt,
|
2021-04-27 03:50:06 -03:00
|
|
|
target_climb_rate : (int16_t)pos_control.get_vel_target_z_cms(),
|
2015-12-30 18:57:56 -04:00
|
|
|
climb_rate : climb_rate
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write an attitude packet
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::Log_Write_Attitude()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
Vector3f targets = attitude_control.get_att_target_euler_cd();
|
2017-02-03 00:18:27 -04:00
|
|
|
targets.z = wrap_360_cd(targets.z);
|
2021-01-09 04:07:51 -04:00
|
|
|
ahrs.Write_Attitude(targets);
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2021-07-20 09:16:34 -03:00
|
|
|
AP::ahrs().Log_Write();
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct PACKED log_Data_Int16t {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
uint8_t id;
|
|
|
|
int16_t data_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write an int16_t data packet
|
|
|
|
UNUSED_FUNCTION
|
2019-10-25 03:07:45 -03:00
|
|
|
void Sub::Log_Write_Data(LogDataID id, int16_t value)
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (should_log(MASK_LOG_ANY)) {
|
|
|
|
struct log_Data_Int16t pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_DATA_INT16_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
2019-10-25 03:07:45 -03:00
|
|
|
id : (uint8_t)id,
|
2015-12-30 18:57:56 -04:00
|
|
|
data_value : value
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteCriticalBlock(&pkt, sizeof(pkt));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PACKED log_Data_UInt16t {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
uint8_t id;
|
|
|
|
uint16_t data_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write an uint16_t data packet
|
2017-02-03 17:33:27 -04:00
|
|
|
UNUSED_FUNCTION
|
2019-10-25 03:07:45 -03:00
|
|
|
void Sub::Log_Write_Data(LogDataID id, uint16_t value)
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (should_log(MASK_LOG_ANY)) {
|
|
|
|
struct log_Data_UInt16t pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_DATA_UINT16_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
2019-10-25 03:07:45 -03:00
|
|
|
id : (uint8_t)id,
|
2015-12-30 18:57:56 -04:00
|
|
|
data_value : value
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteCriticalBlock(&pkt, sizeof(pkt));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PACKED log_Data_Int32t {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
uint8_t id;
|
|
|
|
int32_t data_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write an int32_t data packet
|
2019-10-25 03:07:45 -03:00
|
|
|
void Sub::Log_Write_Data(LogDataID id, int32_t value)
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (should_log(MASK_LOG_ANY)) {
|
|
|
|
struct log_Data_Int32t pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_DATA_INT32_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
2019-10-25 03:07:45 -03:00
|
|
|
id : (uint8_t)id,
|
2015-12-30 18:57:56 -04:00
|
|
|
data_value : value
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteCriticalBlock(&pkt, sizeof(pkt));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PACKED log_Data_UInt32t {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
uint8_t id;
|
|
|
|
uint32_t data_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write a uint32_t data packet
|
2019-10-25 03:07:45 -03:00
|
|
|
void Sub::Log_Write_Data(LogDataID id, uint32_t value)
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (should_log(MASK_LOG_ANY)) {
|
|
|
|
struct log_Data_UInt32t pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_DATA_UINT32_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
2019-10-25 03:07:45 -03:00
|
|
|
id : (uint8_t)id,
|
2015-12-30 18:57:56 -04:00
|
|
|
data_value : value
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteCriticalBlock(&pkt, sizeof(pkt));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PACKED log_Data_Float {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
uint8_t id;
|
|
|
|
float data_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write a float data packet
|
|
|
|
UNUSED_FUNCTION
|
2019-10-25 03:07:45 -03:00
|
|
|
void Sub::Log_Write_Data(LogDataID id, float value)
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (should_log(MASK_LOG_ANY)) {
|
|
|
|
struct log_Data_Float pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_DATA_FLOAT_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
2019-10-25 03:07:45 -03:00
|
|
|
id : (uint8_t)id,
|
2015-12-30 18:57:56 -04:00
|
|
|
data_value : value
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteCriticalBlock(&pkt, sizeof(pkt));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-03 01:45:37 -03:00
|
|
|
struct PACKED log_GuidedTarget {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
uint8_t type;
|
|
|
|
float pos_target_x;
|
|
|
|
float pos_target_y;
|
|
|
|
float pos_target_z;
|
|
|
|
float vel_target_x;
|
|
|
|
float vel_target_y;
|
|
|
|
float vel_target_z;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Write a Guided mode target
|
|
|
|
void Sub::Log_Write_GuidedTarget(uint8_t target_type, const Vector3f& pos_target, const Vector3f& vel_target)
|
|
|
|
{
|
|
|
|
struct log_GuidedTarget pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_GUIDEDTARGET_MSG),
|
|
|
|
time_us : AP_HAL::micros64(),
|
|
|
|
type : target_type,
|
|
|
|
pos_target_x : pos_target.x,
|
|
|
|
pos_target_y : pos_target.y,
|
|
|
|
pos_target_z : pos_target.z,
|
|
|
|
vel_target_x : vel_target.x,
|
|
|
|
vel_target_y : vel_target.y,
|
|
|
|
vel_target_z : vel_target.z
|
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2016-05-03 01:45:37 -03:00
|
|
|
}
|
|
|
|
|
2020-03-20 02:38:04 -03:00
|
|
|
// @LoggerMessage: CTUN
|
|
|
|
// @Description: Control Tuning information
|
2020-04-07 04:36:02 -03:00
|
|
|
// @Field: TimeUS: Time since system startup
|
2020-03-20 02:38:04 -03:00
|
|
|
// @Field: ThI: throttle input
|
|
|
|
// @Field: ABst: angle boost
|
|
|
|
// @Field: ThO: throttle output
|
|
|
|
// @Field: ThH: calculated hover throttle
|
|
|
|
// @Field: DAlt: desired altitude
|
|
|
|
// @Field: Alt: achieved altitude
|
|
|
|
// @Field: BAlt: barometric altitude
|
|
|
|
// @Field: DSAlt: desired rangefinder altitude
|
2020-04-07 04:36:02 -03:00
|
|
|
// @Field: SAlt: achieved rangefinder altitude
|
2020-03-20 02:38:04 -03:00
|
|
|
// @Field: TAlt: terrain altitude
|
|
|
|
// @Field: DCRt: desired climb rate
|
|
|
|
// @Field: CRt: climb rate
|
|
|
|
|
2020-04-02 06:14:15 -03:00
|
|
|
// @LoggerMessage: D16
|
|
|
|
// @Description: Generic 16-bit-signed-integer storage
|
|
|
|
// @Field: TimeUS: Time since system startup
|
|
|
|
// @Field: Id: Data type identifier
|
|
|
|
// @Field: Value: Value
|
|
|
|
|
|
|
|
// @LoggerMessage: D32
|
|
|
|
// @Description: Generic 32-bit-signed-integer storage
|
|
|
|
// @Field: TimeUS: Time since system startup
|
|
|
|
// @Field: Id: Data type identifier
|
|
|
|
// @Field: Value: Value
|
|
|
|
|
|
|
|
// @LoggerMessage: DFLT
|
|
|
|
// @Description: Generic float storage
|
|
|
|
// @Field: TimeUS: Time since system startup
|
|
|
|
// @Field: Id: Data type identifier
|
|
|
|
// @Field: Value: Value
|
|
|
|
|
|
|
|
// @LoggerMessage: DU16
|
|
|
|
// @Description: Generic 16-bit-unsigned-integer storage
|
|
|
|
// @Field: TimeUS: Time since system startup
|
|
|
|
// @Field: Id: Data type identifier
|
|
|
|
// @Field: Value: Value
|
|
|
|
|
|
|
|
// @LoggerMessage: DU32
|
|
|
|
// @Description: Generic 32-bit-unsigned-integer storage
|
|
|
|
// @Field: TimeUS: Time since system startup
|
|
|
|
// @Field: Id: Data type identifier
|
|
|
|
// @Field: Value: Value
|
|
|
|
|
2022-01-25 12:29:28 -04:00
|
|
|
// @LoggerMessage: GUIP
|
2020-04-23 06:15:16 -03:00
|
|
|
// @Description: Guided mode target information
|
|
|
|
// @Field: TimeUS: Time since system startup
|
|
|
|
// @Field: Type: Type of guided mode
|
|
|
|
// @Field: pX: Target position, X-Axis
|
|
|
|
// @Field: pY: Target position, Y-Axis
|
|
|
|
// @Field: pZ: Target position, Z-Axis
|
|
|
|
// @Field: vX: Target velocity, X-Axis
|
|
|
|
// @Field: vY: Target velocity, Y-Axis
|
|
|
|
// @Field: vZ: Target velocity, Z-Axis
|
|
|
|
|
2017-09-05 22:02:59 -03:00
|
|
|
// type and unit information can be found in
|
2019-01-18 00:23:42 -04:00
|
|
|
// libraries/AP_Logger/Logstructure.h; search for "log_Units" for
|
2017-09-05 22:02:59 -03:00
|
|
|
// units and "Format characters" for field type information
|
2016-01-14 15:30:56 -04:00
|
|
|
const struct LogStructure Sub::log_structure[] = {
|
2015-12-30 18:57:56 -04:00
|
|
|
LOG_COMMON_STRUCTURES,
|
|
|
|
{ LOG_CONTROL_TUNING_MSG, sizeof(log_Control_Tuning),
|
2017-09-05 22:02:59 -03:00
|
|
|
"CTUN", "Qfffffffccfhh", "TimeUS,ThI,ABst,ThO,ThH,DAlt,Alt,BAlt,DSAlt,SAlt,TAlt,DCRt,CRt", "s----mmmmmmnn", "F----00BBBBBB" },
|
2015-12-30 18:57:56 -04:00
|
|
|
{ LOG_DATA_INT16_MSG, sizeof(log_Data_Int16t),
|
2017-09-05 22:02:59 -03:00
|
|
|
"D16", "QBh", "TimeUS,Id,Value", "s--", "F--" },
|
2015-12-30 18:57:56 -04:00
|
|
|
{ LOG_DATA_UINT16_MSG, sizeof(log_Data_UInt16t),
|
2017-09-05 22:02:59 -03:00
|
|
|
"DU16", "QBH", "TimeUS,Id,Value", "s--", "F--" },
|
2015-12-30 18:57:56 -04:00
|
|
|
{ LOG_DATA_INT32_MSG, sizeof(log_Data_Int32t),
|
2017-09-05 22:02:59 -03:00
|
|
|
"D32", "QBi", "TimeUS,Id,Value", "s--", "F--" },
|
2015-12-30 18:57:56 -04:00
|
|
|
{ LOG_DATA_UINT32_MSG, sizeof(log_Data_UInt32t),
|
2017-09-05 22:02:59 -03:00
|
|
|
"DU32", "QBI", "TimeUS,Id,Value", "s--", "F--" },
|
2015-12-30 18:57:56 -04:00
|
|
|
{ LOG_DATA_FLOAT_MSG, sizeof(log_Data_Float),
|
2017-09-05 22:02:59 -03:00
|
|
|
"DFLT", "QBf", "TimeUS,Id,Value", "s--", "F--" },
|
2017-02-03 17:33:27 -04:00
|
|
|
{ LOG_GUIDEDTARGET_MSG, sizeof(log_GuidedTarget),
|
2022-01-25 12:29:28 -04:00
|
|
|
"GUIP", "QBffffff", "TimeUS,Type,pX,pY,pZ,vX,vY,vZ", "s-mmmnnn", "F-000000" },
|
2015-12-30 18:57:56 -04:00
|
|
|
};
|
|
|
|
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::Log_Write_Vehicle_Startup_Messages()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2019-01-18 00:23:42 -04:00
|
|
|
// only 200(?) bytes are guaranteed by AP_Logger
|
2023-04-03 09:11:21 -03:00
|
|
|
logger.Write_Mode((uint8_t)control_mode, control_mode_reason);
|
2018-05-16 00:30:28 -03:00
|
|
|
ahrs.Log_Write_Home_And_Origin();
|
2019-01-18 00:23:42 -04:00
|
|
|
gps.Write_AP_Logger_Log_Startup_messages();
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-28 08:09:40 -03:00
|
|
|
void Sub::log_init()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.Init(log_structure, ARRAY_SIZE(log_structure));
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
2024-01-10 00:34:30 -04:00
|
|
|
#endif // HAL_LOGGING_ENABLED
|