mirror of https://github.com/ArduPilot/ardupilot
AP_Gripper: Add missing parameter units
This commit is contained in:
parent
0d4ca03dcd
commit
2243d900d5
|
@ -31,6 +31,7 @@ const AP_Param::GroupInfo AP_Gripper::var_info[] = {
|
|||
// @Description: PWM value sent to Gripper to initiate grabbing the cargo
|
||||
// @User: Advanced
|
||||
// @Range: 1000 2000
|
||||
// @Units: PWM
|
||||
AP_GROUPINFO("GRAB", 2, AP_Gripper, config.grab_pwm, GRIPPER_GRAB_PWM_DEFAULT),
|
||||
|
||||
// @Param: RELEASE
|
||||
|
@ -38,6 +39,7 @@ const AP_Param::GroupInfo AP_Gripper::var_info[] = {
|
|||
// @Description: PWM value sent to Gripper to release the cargo
|
||||
// @User: Advanced
|
||||
// @Range: 1000 2000
|
||||
// @Units: PWM
|
||||
AP_GROUPINFO("RELEASE", 3, AP_Gripper, config.release_pwm, GRIPPER_RELEASE_PWM_DEFAULT),
|
||||
|
||||
// @Param: NEUTRAL
|
||||
|
@ -45,6 +47,7 @@ const AP_Param::GroupInfo AP_Gripper::var_info[] = {
|
|||
// @Description: PWM value sent to grabber when not grabbing or releasing
|
||||
// @User: Advanced
|
||||
// @Range: 1000 2000
|
||||
// @Units: PWM
|
||||
AP_GROUPINFO("NEUTRAL", 4, AP_Gripper, config.neutral_pwm, GRIPPER_NEUTRAL_PWM_DEFAULT),
|
||||
|
||||
// @Param: REGRAB
|
||||
|
|
Loading…
Reference in New Issue