AP_NavEKF3: use enum-class for RangeFinder Status

This commit is contained in:
Peter Barker 2019-11-01 16:11:26 +11:00 committed by Peter Barker
parent 9735684184
commit 11b372a986

View File

@ -41,7 +41,7 @@ void NavEKF3_core::readRangeFinder(void)
if (sensor == nullptr) {
continue;
}
if ((sensor->orientation() == ROTATION_PITCH_270) && (sensor->status() == RangeFinder::RangeFinder_Good)) {
if ((sensor->orientation() == ROTATION_PITCH_270) && (sensor->status() == RangeFinder::Status::Good)) {
rngMeasIndex[sensorIndex] ++;
if (rngMeasIndex[sensorIndex] > 2) {
rngMeasIndex[sensorIndex] = 0;