AP_KDECAN: log motor temp as zero

This commit is contained in:
Randy Mackay 2019-11-20 10:38:16 +09:00 committed by Andrew Tridgell
parent 1b79f102b6
commit cddc9b622f
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ void AP_KDECAN::update()
int32_t(telem_buffer[i].rpm * 60UL * 2 / num_poles * 100), int32_t(telem_buffer[i].rpm * 60UL * 2 / num_poles * 100),
telem_buffer[i].voltage, telem_buffer[i].voltage,
telem_buffer[i].current, telem_buffer[i].current,
int16_t(telem_buffer[i].temp * 100U), 0); int16_t(telem_buffer[i].temp * 100U), 0, 0);
} }
} }
} }