mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 01:18:29 -04:00
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];
|
RangeFinder_State state[RANGEFINDER_MAX_INSTANCES];
|
||||||
AP_RangeFinder_Backend *drivers[RANGEFINDER_MAX_INSTANCES];
|
AP_RangeFinder_Backend *drivers[RANGEFINDER_MAX_INSTANCES];
|
||||||
uint8_t num_instances:3;
|
uint8_t num_instances;
|
||||||
float estimated_terrain_height;
|
float estimated_terrain_height;
|
||||||
AP_SerialManager &serial_manager;
|
AP_SerialManager &serial_manager;
|
||||||
Vector3f pos_offset_zero; // allows returning position offsets of zero for invalid requests
|
Vector3f pos_offset_zero; // allows returning position offsets of zero for invalid requests
|
||||||
|
Loading…
Reference in New Issue
Block a user