mirror of https://github.com/ArduPilot/ardupilot
Sub: log MNT at 10hz
This commit is contained in:
parent
c4e6d83be1
commit
816f9494b4
|
@ -210,6 +210,11 @@ void Sub::ten_hz_logging_loop()
|
||||||
if (should_log(MASK_LOG_CTUN)) {
|
if (should_log(MASK_LOG_CTUN)) {
|
||||||
attitude_control.control_monitor_log();
|
attitude_control.control_monitor_log();
|
||||||
}
|
}
|
||||||
|
#if HAL_MOUNT_ENABLED
|
||||||
|
if (should_log(MASK_LOG_CAMERA)) {
|
||||||
|
camera_mount.write_log();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// twentyfive_hz_logging_loop
|
// twentyfive_hz_logging_loop
|
||||||
|
|
Loading…
Reference in New Issue