2015-05-13 03:09:36 -03:00
|
|
|
#include "Plane.h"
|
|
|
|
|
2011-09-08 22:29:39 -03:00
|
|
|
#if LOGGING_ENABLED == ENABLED
|
|
|
|
|
2013-12-30 07:24:36 -04:00
|
|
|
// Write an attitude packet
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::Log_Write_Attitude(void)
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2015-01-16 12:01:33 -04:00
|
|
|
Vector3f targets; // Package up the targets into a vector for commonality with Copter usage of Log_Wrote_Attitude
|
|
|
|
targets.x = nav_roll_cd;
|
|
|
|
targets.y = nav_pitch_cd;
|
|
|
|
|
2017-04-18 09:52:29 -03:00
|
|
|
if (quadplane.in_vtol_mode() || quadplane.in_assisted_flight()) {
|
|
|
|
// when VTOL active log the copter target yaw
|
|
|
|
targets.z = wrap_360_cd(quadplane.attitude_control->get_att_target_euler_cd().z);
|
|
|
|
} else {
|
|
|
|
//Plane does not have the concept of navyaw. This is a placeholder.
|
|
|
|
targets.z = 0;
|
|
|
|
}
|
2019-03-31 14:22:12 -03:00
|
|
|
|
2019-01-17 22:38:51 -04:00
|
|
|
if (quadplane.tailsitter_active() || quadplane.in_vtol_mode()) {
|
|
|
|
// we need the attitude targets from the AC_AttitudeControl controller, as they
|
2019-03-31 14:22:12 -03:00
|
|
|
// account for the acceleration limits.
|
|
|
|
// Also, for bodyframe roll input types, _attitude_target_euler_angle is not maintained
|
|
|
|
// since Euler angles are not used and it is a waste of cpu to compute them at the loop rate.
|
|
|
|
// Get them from the quaternion instead:
|
|
|
|
quadplane.attitude_control->get_attitude_target_quat().to_euler(targets.x, targets.y, targets.z);
|
|
|
|
targets *= degrees(100.0f);
|
2019-01-18 00:24:08 -04:00
|
|
|
logger.Write_AttitudeView(*quadplane.ahrs_view, targets);
|
2017-03-30 20:37:47 -03:00
|
|
|
} else {
|
2019-10-23 21:33:20 -03:00
|
|
|
logger.Write_Attitude(targets);
|
2017-03-30 20:37:47 -03:00
|
|
|
}
|
2017-03-13 03:22:41 -03:00
|
|
|
if (quadplane.in_vtol_mode() || quadplane.in_assisted_flight()) {
|
|
|
|
// log quadplane PIDs separately from fixed wing PIDs
|
2019-01-18 00:24:08 -04:00
|
|
|
logger.Write_PID(LOG_PIQR_MSG, quadplane.attitude_control->get_rate_roll_pid().get_pid_info());
|
|
|
|
logger.Write_PID(LOG_PIQP_MSG, quadplane.attitude_control->get_rate_pitch_pid().get_pid_info());
|
|
|
|
logger.Write_PID(LOG_PIQY_MSG, quadplane.attitude_control->get_rate_yaw_pid().get_pid_info());
|
|
|
|
logger.Write_PID(LOG_PIQA_MSG, quadplane.pos_control->get_accel_z_pid().get_pid_info() );
|
2017-03-13 03:22:41 -03:00
|
|
|
}
|
|
|
|
|
2019-01-18 00:24:08 -04:00
|
|
|
logger.Write_PID(LOG_PIDR_MSG, rollController.get_pid_info());
|
|
|
|
logger.Write_PID(LOG_PIDP_MSG, pitchController.get_pid_info());
|
|
|
|
logger.Write_PID(LOG_PIDY_MSG, yawController.get_pid_info());
|
|
|
|
logger.Write_PID(LOG_PIDS_MSG, steerController.get_pid_info());
|
2014-01-01 21:16:20 -04:00
|
|
|
|
|
|
|
#if AP_AHRS_NAVEKF_AVAILABLE
|
2019-07-02 20:55:10 -03:00
|
|
|
AP::ahrs_navekf().Log_Write();
|
2019-10-23 21:33:20 -03:00
|
|
|
logger.Write_AHRS2();
|
2014-01-03 20:51:36 -04:00
|
|
|
#endif
|
2015-05-04 03:18:55 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2019-01-17 18:16:41 -04:00
|
|
|
sitl.Log_Write_SIMSTATE();
|
2013-12-30 19:24:38 -04:00
|
|
|
#endif
|
2019-10-23 21:33:20 -03:00
|
|
|
logger.Write_POS();
|
2013-12-30 07:24:36 -04:00
|
|
|
}
|
|
|
|
|
2016-05-01 19:51:13 -03:00
|
|
|
// do logging at loop rate
|
|
|
|
void Plane::Log_Write_Fast(void)
|
|
|
|
{
|
|
|
|
if (should_log(MASK_LOG_ATTITUDE_FAST)) {
|
|
|
|
Log_Write_Attitude();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-01 21:16:20 -04:00
|
|
|
|
2013-04-19 10:37:21 -03:00
|
|
|
struct PACKED log_Startup {
|
2013-01-26 04:07:21 -04:00
|
|
|
LOG_PACKET_HEADER;
|
2015-04-30 00:40:51 -03:00
|
|
|
uint64_t time_us;
|
2013-01-26 04:07:21 -04:00
|
|
|
uint8_t startup_type;
|
2014-03-10 05:20:08 -03:00
|
|
|
uint16_t command_total;
|
2013-01-26 04:07:21 -04:00
|
|
|
};
|
|
|
|
|
2015-11-09 18:40:34 -04:00
|
|
|
void Plane::Log_Write_Startup(uint8_t type)
|
2013-01-26 04:07:21 -04:00
|
|
|
{
|
|
|
|
struct log_Startup pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_STARTUP_MSG),
|
2015-11-19 23:04:52 -04:00
|
|
|
time_us : AP_HAL::micros64(),
|
2013-01-26 04:07:21 -04:00
|
|
|
startup_type : type,
|
2014-03-03 09:48:49 -04:00
|
|
|
command_total : mission.num_commands()
|
2013-01-26 04:07:21 -04:00
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteCriticalBlock(&pkt, sizeof(pkt));
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2013-04-19 10:37:21 -03:00
|
|
|
struct PACKED log_Control_Tuning {
|
2013-01-26 04:07:21 -04:00
|
|
|
LOG_PACKET_HEADER;
|
2015-04-30 00:40:51 -03:00
|
|
|
uint64_t time_us;
|
2013-01-26 04:07:21 -04:00
|
|
|
int16_t nav_roll_cd;
|
|
|
|
int16_t roll;
|
|
|
|
int16_t nav_pitch_cd;
|
|
|
|
int16_t pitch;
|
|
|
|
int16_t throttle_out;
|
|
|
|
int16_t rudder_out;
|
2016-01-30 02:38:31 -04:00
|
|
|
int16_t throttle_dem;
|
2017-10-31 19:16:59 -03:00
|
|
|
float airspeed_estimate;
|
2013-01-26 04:07:21 -04:00
|
|
|
};
|
2011-09-08 22:29:39 -03:00
|
|
|
|
|
|
|
// Write a control tuning packet. Total length : 22 bytes
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::Log_Write_Control_Tuning()
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2017-10-31 19:16:59 -03:00
|
|
|
float est_airspeed = 0;
|
|
|
|
ahrs.airspeed_estimate(&est_airspeed);
|
|
|
|
|
2013-01-26 04:07:21 -04:00
|
|
|
struct log_Control_Tuning pkt = {
|
2013-04-19 10:37:21 -03:00
|
|
|
LOG_PACKET_HEADER_INIT(LOG_CTUN_MSG),
|
2015-11-19 23:04:52 -04:00
|
|
|
time_us : AP_HAL::micros64(),
|
2013-01-26 04:07:21 -04:00
|
|
|
nav_roll_cd : (int16_t)nav_roll_cd,
|
|
|
|
roll : (int16_t)ahrs.roll_sensor,
|
|
|
|
nav_pitch_cd : (int16_t)nav_pitch_cd,
|
|
|
|
pitch : (int16_t)ahrs.pitch_sensor,
|
2016-10-22 07:27:57 -03:00
|
|
|
throttle_out : (int16_t)SRV_Channels::get_output_scaled(SRV_Channel::k_throttle),
|
|
|
|
rudder_out : (int16_t)SRV_Channels::get_output_scaled(SRV_Channel::k_rudder),
|
2017-10-31 19:16:59 -03:00
|
|
|
throttle_dem : (int16_t)SpdHgt_Controller->get_throttle_demand(),
|
|
|
|
airspeed_estimate : est_airspeed
|
2013-01-26 04:07:21 -04:00
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2013-01-26 04:07:21 -04:00
|
|
|
}
|
|
|
|
|
2013-04-19 10:37:21 -03:00
|
|
|
struct PACKED log_Nav_Tuning {
|
2013-01-26 04:07:21 -04:00
|
|
|
LOG_PACKET_HEADER;
|
2015-04-30 00:40:51 -03:00
|
|
|
uint64_t time_us;
|
2015-01-01 00:17:45 -04:00
|
|
|
float wp_distance;
|
2014-05-21 07:14:00 -03:00
|
|
|
int16_t target_bearing_cd;
|
|
|
|
int16_t nav_bearing_cd;
|
2013-01-26 04:07:21 -04:00
|
|
|
int16_t altitude_error_cm;
|
2016-01-05 19:33:49 -04:00
|
|
|
float xtrack_error;
|
2016-04-20 19:35:03 -03:00
|
|
|
float xtrack_error_i;
|
2016-05-10 16:51:36 -03:00
|
|
|
float airspeed_error;
|
2018-05-25 04:53:23 -03:00
|
|
|
int32_t target_lat;
|
|
|
|
int32_t target_lng;
|
|
|
|
int32_t target_alt;
|
2018-08-08 21:33:56 -03:00
|
|
|
int32_t target_airspeed;
|
2013-01-26 04:07:21 -04:00
|
|
|
};
|
|
|
|
|
2016-01-05 19:33:49 -04:00
|
|
|
// Write a navigation tuning packet
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::Log_Write_Nav_Tuning()
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2013-01-26 04:07:21 -04:00
|
|
|
struct log_Nav_Tuning pkt = {
|
2013-04-19 10:37:21 -03:00
|
|
|
LOG_PACKET_HEADER_INIT(LOG_NTUN_MSG),
|
2015-11-19 23:04:52 -04:00
|
|
|
time_us : AP_HAL::micros64(),
|
2015-01-01 00:17:45 -04:00
|
|
|
wp_distance : auto_state.wp_distance,
|
2014-05-21 07:14:00 -03:00
|
|
|
target_bearing_cd : (int16_t)nav_controller->target_bearing_cd(),
|
|
|
|
nav_bearing_cd : (int16_t)nav_controller->nav_bearing_cd(),
|
2013-01-26 04:07:21 -04:00
|
|
|
altitude_error_cm : (int16_t)altitude_error_cm,
|
2016-04-20 19:35:03 -03:00
|
|
|
xtrack_error : nav_controller->crosstrack_error(),
|
2016-05-10 16:51:36 -03:00
|
|
|
xtrack_error_i : nav_controller->crosstrack_error_integrator(),
|
2018-05-25 04:53:23 -03:00
|
|
|
airspeed_error : airspeed_error,
|
|
|
|
target_lat : next_WP_loc.lat,
|
|
|
|
target_lng : next_WP_loc.lng,
|
|
|
|
target_alt : next_WP_loc.alt,
|
2018-08-08 21:33:56 -03:00
|
|
|
target_airspeed : target_airspeed_cm,
|
2013-01-26 04:07:21 -04:00
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2015-04-09 22:42:48 -03:00
|
|
|
struct PACKED log_Status {
|
|
|
|
LOG_PACKET_HEADER;
|
2015-04-30 00:40:51 -03:00
|
|
|
uint64_t time_us;
|
2015-04-09 22:42:48 -03:00
|
|
|
uint8_t is_flying;
|
|
|
|
float is_flying_probability;
|
2015-04-29 22:15:08 -03:00
|
|
|
uint8_t armed;
|
|
|
|
uint8_t safety;
|
2015-06-03 16:22:24 -03:00
|
|
|
bool is_crashed;
|
|
|
|
bool is_still;
|
2015-09-25 22:30:26 -03:00
|
|
|
uint8_t stage;
|
2015-11-17 20:11:21 -04:00
|
|
|
bool impact;
|
2015-04-09 22:42:48 -03:00
|
|
|
};
|
|
|
|
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::Log_Write_Status()
|
2015-04-09 22:42:48 -03:00
|
|
|
{
|
|
|
|
struct log_Status pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_STATUS_MSG)
|
2015-11-19 23:04:52 -04:00
|
|
|
,time_us : AP_HAL::micros64()
|
2015-04-09 22:42:48 -03:00
|
|
|
,is_flying : is_flying()
|
|
|
|
,is_flying_probability : isFlyingProbability
|
2015-04-29 22:15:08 -03:00
|
|
|
,armed : hal.util->get_soft_armed()
|
2016-02-26 01:12:34 -04:00
|
|
|
,safety : static_cast<uint8_t>(hal.util->safety_switch_state())
|
2015-08-20 17:44:32 -03:00
|
|
|
,is_crashed : crash_state.is_crashed
|
2018-03-10 06:00:42 -04:00
|
|
|
,is_still : AP::ins().is_still()
|
2016-02-26 01:12:34 -04:00
|
|
|
,stage : static_cast<uint8_t>(flight_stage)
|
2015-11-17 20:11:21 -04:00
|
|
|
,impact : crash_state.impact_detected
|
2015-06-03 16:22:24 -03:00
|
|
|
};
|
2015-04-09 22:42:48 -03:00
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2015-04-09 22:42:48 -03:00
|
|
|
}
|
|
|
|
|
2013-10-30 19:23:21 -03:00
|
|
|
struct PACKED log_Sonar {
|
|
|
|
LOG_PACKET_HEADER;
|
2015-04-30 00:40:51 -03:00
|
|
|
uint64_t time_us;
|
2016-05-17 22:34:39 -03:00
|
|
|
float distance;
|
2013-10-30 19:23:21 -03:00
|
|
|
float voltage;
|
2014-08-26 08:17:47 -03:00
|
|
|
uint8_t count;
|
2014-08-27 05:25:17 -03:00
|
|
|
float correction;
|
2013-10-30 19:23:21 -03:00
|
|
|
};
|
|
|
|
|
2019-04-05 06:20:05 -03:00
|
|
|
// Write a sonar packet. Note that RFND log messages are written by
|
|
|
|
// RangeFinder itself as part of update().
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::Log_Write_Sonar()
|
2013-10-30 19:23:21 -03:00
|
|
|
{
|
2015-05-27 20:51:29 -03:00
|
|
|
uint16_t distance = 0;
|
2017-02-09 07:39:58 -04:00
|
|
|
if (rangefinder.status_orient(ROTATION_PITCH_270) == RangeFinder::RangeFinder_Good) {
|
|
|
|
distance = rangefinder.distance_cm_orient(ROTATION_PITCH_270);
|
2015-05-27 20:51:29 -03:00
|
|
|
}
|
|
|
|
|
2013-10-30 19:23:21 -03:00
|
|
|
struct log_Sonar pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_SONAR_MSG),
|
2015-11-19 23:04:52 -04:00
|
|
|
time_us : AP_HAL::micros64(),
|
2016-05-17 22:34:39 -03:00
|
|
|
distance : (float)distance*0.01f,
|
2017-02-09 07:39:58 -04:00
|
|
|
voltage : rangefinder.voltage_mv_orient(ROTATION_PITCH_270)*0.001f,
|
2014-08-26 08:17:47 -03:00
|
|
|
count : rangefinder_state.in_range_count,
|
2014-08-27 05:25:17 -03:00
|
|
|
correction : rangefinder_state.correction
|
2013-10-30 19:23:21 -03:00
|
|
|
};
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2013-10-30 19:23:21 -03:00
|
|
|
}
|
|
|
|
|
2017-07-06 02:56:13 -03:00
|
|
|
struct PACKED log_AETR {
|
|
|
|
LOG_PACKET_HEADER;
|
|
|
|
uint64_t time_us;
|
|
|
|
int16_t aileron;
|
|
|
|
int16_t elevator;
|
|
|
|
int16_t throttle;
|
|
|
|
int16_t rudder;
|
|
|
|
int16_t flap;
|
|
|
|
};
|
|
|
|
|
|
|
|
void Plane::Log_Write_AETR()
|
|
|
|
{
|
|
|
|
struct log_AETR pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_AETR_MSG)
|
|
|
|
,time_us : AP_HAL::micros64()
|
|
|
|
,aileron : SRV_Channels::get_output_scaled(SRV_Channel::k_aileron)
|
|
|
|
,elevator : SRV_Channels::get_output_scaled(SRV_Channel::k_elevator)
|
|
|
|
,throttle : SRV_Channels::get_output_scaled(SRV_Channel::k_throttle)
|
|
|
|
,rudder : SRV_Channels::get_output_scaled(SRV_Channel::k_rudder)
|
|
|
|
,flap : SRV_Channels::get_output_scaled(SRV_Channel::k_flap_auto)
|
|
|
|
};
|
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.WriteBlock(&pkt, sizeof(pkt));
|
2017-07-06 02:56:13 -03:00
|
|
|
}
|
|
|
|
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::Log_Write_RC(void)
|
2013-11-25 17:44:17 -04:00
|
|
|
{
|
2019-01-18 00:24:08 -04:00
|
|
|
logger.Write_RCIN();
|
|
|
|
logger.Write_RCOUT();
|
2015-09-04 12:51:03 -03:00
|
|
|
if (rssi.enabled()) {
|
2019-04-05 19:48:49 -03:00
|
|
|
logger.Write_RSSI();
|
2015-09-04 12:51:03 -03:00
|
|
|
}
|
2017-07-06 02:56:13 -03:00
|
|
|
Log_Write_AETR();
|
2013-11-25 17:44:17 -04:00
|
|
|
}
|
|
|
|
|
2015-12-07 22:54:12 -04: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
|
2015-12-07 22:54:12 -04:00
|
|
|
// units and "Format characters" for field type information
|
2016-04-16 07:26:43 -03:00
|
|
|
const struct LogStructure Plane::log_structure[] = {
|
2013-04-19 10:37:21 -03:00
|
|
|
LOG_COMMON_STRUCTURES,
|
|
|
|
{ LOG_STARTUP_MSG, sizeof(log_Startup),
|
2015-12-07 22:54:12 -04:00
|
|
|
"STRT", "QBH", "TimeUS,SType,CTot", "s--", "F--" },
|
2013-04-19 10:37:21 -03:00
|
|
|
{ LOG_CTUN_MSG, sizeof(log_Control_Tuning),
|
2015-12-07 22:54:12 -04:00
|
|
|
"CTUN", "Qcccchhhf", "TimeUS,NavRoll,Roll,NavPitch,Pitch,ThrOut,RdrOut,ThrDem,Aspd", "sdddd---n", "FBBBB---0" },
|
2013-04-19 10:37:21 -03:00
|
|
|
{ LOG_NTUN_MSG, sizeof(log_Nav_Tuning),
|
2018-08-08 21:33:56 -03:00
|
|
|
"NTUN", "QfcccfffLLii", "TimeUS,Dist,TBrg,NavBrg,AltErr,XT,XTi,AspdE,TLat,TLng,TAlt,TAspd", "smddmmmnDUmn", "F0BBB0B0GGBB" },
|
2013-10-30 19:23:21 -03:00
|
|
|
{ LOG_SONAR_MSG, sizeof(log_Sonar),
|
2015-12-07 22:54:12 -04:00
|
|
|
"SONR", "QffBf", "TimeUS,Dist,Volt,Cnt,Corr", "smv--", "FB0--" },
|
2014-04-30 08:22:16 -03:00
|
|
|
{ LOG_ATRP_MSG, sizeof(AP_AutoTune::log_ATRP),
|
2015-12-07 22:54:12 -04:00
|
|
|
"ATRP", "QBBcfff", "TimeUS,Type,State,Servo,Demanded,Achieved,P", "s---dd-", "F---00-" },
|
2015-04-09 22:42:48 -03:00
|
|
|
{ LOG_STATUS_MSG, sizeof(log_Status),
|
2015-12-07 22:54:12 -04:00
|
|
|
"STAT", "QBfBBBBBB", "TimeUS,isFlying,isFlyProb,Armed,Safety,Crash,Still,Stage,Hit", "s--------", "F--------" },
|
2016-03-24 22:33:19 -03:00
|
|
|
{ LOG_QTUN_MSG, sizeof(QuadPlane::log_QControl_Tuning),
|
2018-12-21 03:42:59 -04:00
|
|
|
"QTUN", "Qffffffeccf", "TimeUS,ThI,ABst,ThO,ThH,DAlt,Alt,BAlt,DCRt,CRt,TMix", "s----mmmnn-", "F----00000-" },
|
2017-04-09 08:16:50 -03:00
|
|
|
{ LOG_AOA_SSA_MSG, sizeof(log_AOA_SSA),
|
2015-12-07 22:54:12 -04:00
|
|
|
"AOA", "Qff", "TimeUS,AOA,SSA", "sdd", "F00" },
|
2017-03-13 03:22:41 -03:00
|
|
|
{ LOG_PIQR_MSG, sizeof(log_PID), \
|
2015-12-07 22:54:12 -04:00
|
|
|
"PIQR", PID_FMT, PID_LABELS, PID_UNITS, PID_MULTS }, \
|
2017-03-13 03:22:41 -03:00
|
|
|
{ LOG_PIQP_MSG, sizeof(log_PID), \
|
2015-12-07 22:54:12 -04:00
|
|
|
"PIQP", PID_FMT, PID_LABELS, PID_UNITS, PID_MULTS }, \
|
2017-03-13 03:22:41 -03:00
|
|
|
{ LOG_PIQY_MSG, sizeof(log_PID), \
|
2015-12-07 22:54:12 -04:00
|
|
|
"PIQY", PID_FMT, PID_LABELS, PID_UNITS, PID_MULTS }, \
|
2017-03-13 03:22:41 -03:00
|
|
|
{ LOG_PIQA_MSG, sizeof(log_PID), \
|
2015-12-07 22:54:12 -04:00
|
|
|
"PIQA", PID_FMT, PID_LABELS, PID_UNITS, PID_MULTS }, \
|
2017-07-06 02:56:13 -03:00
|
|
|
{ LOG_AETR_MSG, sizeof(log_AETR), \
|
2015-12-07 22:54:12 -04:00
|
|
|
"AETR", "Qhhhhh", "TimeUS,Ail,Elev,Thr,Rudd,Flap", "s-----", "F-----" }, \
|
2013-04-19 10:37:21 -03:00
|
|
|
};
|
2011-09-08 22:29:39 -03:00
|
|
|
|
2015-08-06 10:25:22 -03:00
|
|
|
void Plane::Log_Write_Vehicle_Startup_Messages()
|
|
|
|
{
|
2019-01-18 00:23:42 -04:00
|
|
|
// only 200(?) bytes are guaranteed by AP_Logger
|
2015-08-06 10:25:22 -03:00
|
|
|
Log_Write_Startup(TYPE_GROUNDSTART_MSG);
|
2019-01-15 13:46:13 -04:00
|
|
|
logger.Write_Mode(control_mode->mode_number(), control_mode_reason);
|
2018-05-16 00:30:09 -03:00
|
|
|
ahrs.Log_Write_Home_And_Origin();
|
2019-01-18 00:23:42 -04:00
|
|
|
gps.Write_AP_Logger_Log_Startup_messages();
|
2015-08-06 10:25:22 -03:00
|
|
|
}
|
|
|
|
|
2015-05-13 03:09:36 -03:00
|
|
|
/*
|
|
|
|
initialise logging subsystem
|
|
|
|
*/
|
|
|
|
void Plane::log_init(void)
|
|
|
|
{
|
2019-01-18 00:23:42 -04:00
|
|
|
logger.Init(log_structure, ARRAY_SIZE(log_structure));
|
2015-05-13 03:09:36 -03:00
|
|
|
}
|
2011-09-08 22:29:39 -03:00
|
|
|
|
2015-05-13 03:09:36 -03:00
|
|
|
#else // LOGGING_ENABLED
|
2013-01-12 07:18:58 -04:00
|
|
|
|
2015-07-31 18:26:14 -03:00
|
|
|
void Plane::Log_Write_Attitude(void) {}
|
2017-01-01 23:54:24 -04:00
|
|
|
void Plane::Log_Write_Fast(void) {}
|
2015-07-31 18:26:14 -03:00
|
|
|
void Plane::Log_Write_Performance() {}
|
|
|
|
void Plane::Log_Write_Startup(uint8_t type) {}
|
|
|
|
void Plane::Log_Write_Control_Tuning() {}
|
|
|
|
void Plane::Log_Write_Nav_Tuning() {}
|
|
|
|
void Plane::Log_Write_Status() {}
|
|
|
|
void Plane::Log_Write_Sonar() {}
|
|
|
|
|
|
|
|
void Plane::Log_Write_RC(void) {}
|
2018-04-20 03:42:37 -03:00
|
|
|
void Plane::Log_Write_Vehicle_Startup_Messages() {}
|
2015-07-31 18:26:14 -03:00
|
|
|
|
|
|
|
void Plane::log_init(void) {}
|
2011-09-08 22:29:39 -03:00
|
|
|
|
|
|
|
#endif // LOGGING_ENABLED
|