From 08eae404f1ff91b93230529e704b5ddb48832088 Mon Sep 17 00:00:00 2001 From: Huibean Date: Tue, 10 Feb 2026 08:32:05 +0800 Subject: [PATCH] AP_Periph: fix ACT param name --- Tools/AP_Periph/actuator_telem.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/AP_Periph/actuator_telem.cpp b/Tools/AP_Periph/actuator_telem.cpp index 17e1b59eca956..f369b65bf528f 100644 --- a/Tools/AP_Periph/actuator_telem.cpp +++ b/Tools/AP_Periph/actuator_telem.cpp @@ -75,21 +75,21 @@ const AP_Param::GroupInfo ActuatorTelem::var_info[] = { // @Description: Voltage offset at zero current on the current sensor. // @Units: V // @User: Standard - AP_GROUPINFO("AMP_OFFSET", 4, ActuatorTelem, curr_amp_offset, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_OFFSET_DEFAULT), + AP_GROUPINFO("_AMP_OFFSET", 4, ActuatorTelem, curr_amp_offset, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_OFFSET_DEFAULT), // @Param: _AMP_PERVLT // @DisplayName: Amps per volt // @Description: Current sensor scale factor. // @Units: A/V // @User: Standard - AP_GROUPINFO("AMP_PERVLT", 5, ActuatorTelem, curr_amp_per_volt, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_PERVLT_DEFAULT), + AP_GROUPINFO("_AMP_PERVLT", 5, ActuatorTelem, curr_amp_per_volt, AP_PERIPH_ACTUATOR_TELEM_CURR_AMP_PERVLT_DEFAULT), // @Param: _CURR_MAX // @DisplayName: Maximum current // @Description: Maximum expected current for this channel. // @Units: A // @User: Standard - AP_GROUPINFO("CURR_MAX", 6, ActuatorTelem, curr_max, AP_PERIPH_ACTUATOR_TELEM_CURR_MAX_DEFAULT), + AP_GROUPINFO("_CURR_MAX", 6, ActuatorTelem, curr_max, AP_PERIPH_ACTUATOR_TELEM_CURR_MAX_DEFAULT), AP_GROUPEND };