mc_att_control_main: fix bound check for gyro instance

This commit is contained in:
Beat Küng 2017-01-17 13:40:37 +01:00 committed by Lorenz Meier
parent bbd47389e0
commit 7d5cd02c70

View File

@ -828,7 +828,7 @@ MulticopterAttitudeControl::sensor_correction_poll()
}
/* update the latest gyro selection */
if (_sensor_correction.selected_gyro_instance <= sizeof(_sensor_gyro_sub) / sizeof(_sensor_gyro_sub[0])) {
if (_sensor_correction.selected_gyro_instance < sizeof(_sensor_gyro_sub) / sizeof(_sensor_gyro_sub[0])) {
_selected_gyro = _sensor_correction.selected_gyro_instance;
}
}