mirror of https://github.com/ArduPilot/ardupilot
RangeFinder: Removed the 3 bit limitation for the enumeration
This commit is contained in:
parent
5eff01a86f
commit
f8af5afc53
|
@ -166,7 +166,7 @@ private:
|
|||
|
||||
RangeFinder_State state[RANGEFINDER_MAX_INSTANCES];
|
||||
AP_RangeFinder_Backend *drivers[RANGEFINDER_MAX_INSTANCES];
|
||||
uint8_t num_instances:3;
|
||||
uint8_t num_instances;
|
||||
float estimated_terrain_height;
|
||||
AP_SerialManager &serial_manager;
|
||||
Vector3f pos_offset_zero; // allows returning position offsets of zero for invalid requests
|
||||
|
|
Loading…
Reference in New Issue