AP_RangeFinder: group _ADDR with other first-rangefinder params

This commit is contained in:
Peter Barker 2016-07-28 20:58:47 +10:00 committed by Lucas De Marchi
parent d5ffc8a863
commit 1bb73383ec
1 changed files with 9 additions and 10 deletions

View File

@ -122,6 +122,14 @@ const AP_Param::GroupInfo RangeFinder::var_info[] = {
// @User: Standard // @User: Standard
AP_GROUPINFO("_GNDCLEAR", 11, RangeFinder, _ground_clearance_cm[0], RANGEFINDER_GROUND_CLEARANCE_CM_DEFAULT), AP_GROUPINFO("_GNDCLEAR", 11, RangeFinder, _ground_clearance_cm[0], RANGEFINDER_GROUND_CLEARANCE_CM_DEFAULT),
// @Param: _ADDR
// @DisplayName: Bus address of sensor
// @Description: This sets the bus address of the sensor, where applicable. Used for the LightWare I2C sensor to allow for multiple sensors on different addresses. A value of 0 disables the sensor.
// @Range: 0 127
// @Increment: 1
// @User: Standard
AP_GROUPINFO("_ADDR", 23, RangeFinder, _address[0], 0),
#if RANGEFINDER_MAX_INSTANCES > 1 #if RANGEFINDER_MAX_INSTANCES > 1
// @Param: 2_TYPE // @Param: 2_TYPE
// @DisplayName: Second Rangefinder type // @DisplayName: Second Rangefinder type
@ -206,17 +214,7 @@ const AP_Param::GroupInfo RangeFinder::var_info[] = {
// @Increment: 1 // @Increment: 1
// @User: Advanced // @User: Advanced
AP_GROUPINFO("2_GNDCLEAR", 22, RangeFinder, _ground_clearance_cm[1], RANGEFINDER_GROUND_CLEARANCE_CM_DEFAULT), AP_GROUPINFO("2_GNDCLEAR", 22, RangeFinder, _ground_clearance_cm[1], RANGEFINDER_GROUND_CLEARANCE_CM_DEFAULT),
#endif
// @Param: _ADDR
// @DisplayName: Bus address of sensor
// @Description: This sets the bus address of the sensor, where applicable. Used for the LightWare I2C sensor to allow for multiple sensors on different addresses. A value of 0 disables the sensor.
// @Range: 0 127
// @Increment: 1
// @User: Standard
AP_GROUPINFO("_ADDR", 23, RangeFinder, _address[0], 0),
#if RANGEFINDER_MAX_INSTANCES > 1
// @Param: 2_ADDR // @Param: 2_ADDR
// @DisplayName: Bus address of 2nd rangefinder // @DisplayName: Bus address of 2nd rangefinder
// @Description: This sets the bus address of the sensor, where applicable. Used for the LightWare I2C sensor to allow for multiple sensors on different addresses. A value of 0 disables the sensor. // @Description: This sets the bus address of the sensor, where applicable. Used for the LightWare I2C sensor to allow for multiple sensors on different addresses. A value of 0 disables the sensor.
@ -224,6 +222,7 @@ const AP_Param::GroupInfo RangeFinder::var_info[] = {
// @Increment: 1 // @Increment: 1
// @User: Advanced // @User: Advanced
AP_GROUPINFO("2_ADDR", 24, RangeFinder, _address[1], 0), AP_GROUPINFO("2_ADDR", 24, RangeFinder, _address[1], 0),
#endif #endif
#if RANGEFINDER_MAX_INSTANCES > 2 #if RANGEFINDER_MAX_INSTANCES > 2