mirror of https://github.com/ArduPilot/ardupilot
AP_KDECAN: log motor temp as zero
This commit is contained in:
parent
1b79f102b6
commit
cddc9b622f
|
@ -633,7 +633,7 @@ void AP_KDECAN::update()
|
|||
int32_t(telem_buffer[i].rpm * 60UL * 2 / num_poles * 100),
|
||||
telem_buffer[i].voltage,
|
||||
telem_buffer[i].current,
|
||||
int16_t(telem_buffer[i].temp * 100U), 0);
|
||||
int16_t(telem_buffer[i].temp * 100U), 0, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue