mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-23 16:23:56 -04:00
AP_BoardConfig: fixed build with logging disabled
fixes CubeOrange-periph build
This commit is contained in:
parent
2454be6038
commit
fa19fd0bfe
@ -81,6 +81,7 @@ void AP_BoardConfig::set_imu_temp(float current)
|
||||
heater.output = constrain_float(heater.output, 0, 100);
|
||||
}
|
||||
|
||||
#if HAL_LOGGING_ENABLED
|
||||
if (now - heater.last_log_ms >= 1000) {
|
||||
// @LoggerMessage: HEAT
|
||||
// @Description: IMU Heater data
|
||||
@ -98,6 +99,8 @@ void AP_BoardConfig::set_imu_temp(float current)
|
||||
heater.output);
|
||||
heater.last_log_ms = now;
|
||||
}
|
||||
#endif // HAL_LOGGING_ENABLED
|
||||
|
||||
#if 0
|
||||
gcs().send_text(MAV_SEVERITY_INFO, "Heater: Out=%.1f Temp=%.1f",
|
||||
double(heater.output),
|
||||
|
Loading…
Reference in New Issue
Block a user