mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
AP_RangeFinder: number enum entries
we log these so they should be numbered
This commit is contained in:
parent
46d37abcf7
commit
ee6bd4fca0
@ -194,11 +194,11 @@ public:
|
||||
};
|
||||
|
||||
enum class Status {
|
||||
NotConnected = 0,
|
||||
NoData,
|
||||
OutOfRangeLow,
|
||||
OutOfRangeHigh,
|
||||
Good
|
||||
NotConnected = 0,
|
||||
NoData = 1,
|
||||
OutOfRangeLow = 2,
|
||||
OutOfRangeHigh = 3,
|
||||
Good = 4,
|
||||
};
|
||||
|
||||
static constexpr int8_t SIGNAL_QUALITY_MIN = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user