AP_ESC_Telem: keep RPM updates in the correct order

This commit is contained in:
Andy Piper 2022-08-06 21:30:56 +01:00 committed by Andrew Tridgell
parent 2c22bca1a9
commit d6ba508cb9

View File

@ -82,7 +82,10 @@ uint8_t AP_ESC_Telem::get_motor_frequencies_hz(uint8_t nfreqs, float* freqs) con
for (uint8_t i = 0; i < ESC_TELEM_MAX_ESCS && i < nfreqs; i++) {
float rpm;
if (get_rpm(i, rpm)) {
freqs[valid_escs++] = rpm * (1.0f / 60.0f);
freqs[i] = rpm * (1.0f / 60.0f);
valid_escs++;
} else {
freqs[i] = 0.0f;
}
}