AP_RangeFinder: number enum entries

we log these so they should be numbered
This commit is contained in:
Peter Barker 2024-08-22 20:26:15 +10:00 committed by Andrew Tridgell
parent 46d37abcf7
commit ee6bd4fca0
1 changed files with 5 additions and 5 deletions

View File

@ -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;