Skip to content

Commit 18ced5a

Browse files
Huibeanpeterbarker
authored andcommitted
AP_Periph: fix ACT param name
1 parent fd210ba commit 18ced5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tools/AP_Periph/actuator_telem.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,21 @@ const AP_Param::GroupInfo ActuatorTelem::var_info[] = {
7575
// @Description: Voltage offset at zero current on the current sensor.
7676
// @Units: V
7777
// @User: Standard
78-
AP_GROUPINFO("AMP_OFFSET", 4, ActuatorTelem, curr_amp_offset, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_OFFSET_DEFAULT),
78+
AP_GROUPINFO("_AMP_OFFSET", 4, ActuatorTelem, curr_amp_offset, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_OFFSET_DEFAULT),
7979

8080
// @Param: _AMP_PERVLT
8181
// @DisplayName: Amps per volt
8282
// @Description: Current sensor scale factor.
8383
// @Units: A/V
8484
// @User: Standard
85-
AP_GROUPINFO("AMP_PERVLT", 5, ActuatorTelem, curr_amp_per_volt, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_PERVLT_DEFAULT),
85+
AP_GROUPINFO("_AMP_PERVLT", 5, ActuatorTelem, curr_amp_per_volt, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_PERVLT_DEFAULT),
8686

8787
// @Param: _CURR_MAX
8888
// @DisplayName: Maximum current
8989
// @Description: Maximum expected current for this channel.
9090
// @Units: A
9191
// @User: Standard
92-
AP_GROUPINFO("CURR_MAX", 6, ActuatorTelem, curr_max, AP_PERIPH_ACTUATOR_TELEM_CURR_MAX_DEFAULT),
92+
AP_GROUPINFO("_CURR_MAX", 6, ActuatorTelem, curr_max, AP_PERIPH_ACTUATOR_TELEM_CURR_MAX_DEFAULT),
9393

9494
AP_GROUPEND
9595
};

0 commit comments

Comments
 (0)