AP_EFI: emit ignition voltage as unknown in EFI_STATUS

This commit is contained in:
Peter Barker 2022-06-07 13:30:33 +10:00 committed by Randy Mackay
parent 31051889d1
commit ea7f71a1a7
1 changed files with 5 additions and 1 deletions

View File

@ -233,7 +233,11 @@ void AP_EFI::send_mavlink_status(mavlink_channel_t chan)
KELVIN_TO_C(state.cylinder_status[0].cylinder_head_temperature), KELVIN_TO_C(state.cylinder_status[0].cylinder_head_temperature),
state.cylinder_status[0].ignition_timing_deg, state.cylinder_status[0].ignition_timing_deg,
state.cylinder_status[0].injection_time_ms, state.cylinder_status[0].injection_time_ms,
0, 0, 0); 0, // exhaust gas temperature
0, // throttle out
0, // pressure/temperature compensation
0 // ignition voltage (spark supply voltage)
);
} }
namespace AP { namespace AP {