mirror of https://github.com/ArduPilot/ardupilot
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