mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 10:28:29 -04:00
Parameters.pde: Added value aliases to comments
This commit is contained in:
parent
c03f1d04ea
commit
2a85a64b6e
@ -33,7 +33,7 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
|||||||
// @Param: SONAR_ENABLE
|
// @Param: SONAR_ENABLE
|
||||||
// @DisplayName: Enable Sonar
|
// @DisplayName: Enable Sonar
|
||||||
// @Description: Setting this to true (1) will enable the sonar. Setting this to false(0) will disable the sonar
|
// @Description: Setting this to true (1) will enable the sonar. Setting this to false(0) will disable the sonar
|
||||||
// @Values: 0,1
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
GSCALAR(sonar_enabled, "SONAR_ENABLE"),
|
GSCALAR(sonar_enabled, "SONAR_ENABLE"),
|
||||||
|
|
||||||
@ -52,14 +52,14 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
|||||||
// @Param: MAG_ENABLE
|
// @Param: MAG_ENABLE
|
||||||
// @DisplayName: Enable Compass
|
// @DisplayName: Enable Compass
|
||||||
// @Description: Setting this to true (1) will enable the compass. Setting this to false(0) will disable the compass
|
// @Description: Setting this to true (1) will enable the compass. Setting this to false(0) will disable the compass
|
||||||
// @Values: 0,1
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
GSCALAR(compass_enabled, "MAG_ENABLE"),
|
GSCALAR(compass_enabled, "MAG_ENABLE"),
|
||||||
|
|
||||||
// @Param: FLOW_ENABLE
|
// @Param: FLOW_ENABLE
|
||||||
// @DisplayName: Enable Optical Flow
|
// @DisplayName: Enable Optical Flow
|
||||||
// @Description: Setting this to true (1) will enable optical flow. Setting this to false(0) will disable optical flow
|
// @Description: Setting this to true (1) will enable optical flow. Setting this to false(0) will disable optical flow
|
||||||
// @Values: 0,1
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
GSCALAR(optflow_enabled, "FLOW_ENABLE"),
|
GSCALAR(optflow_enabled, "FLOW_ENABLE"),
|
||||||
|
|
||||||
@ -74,14 +74,14 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
|||||||
// @Param: SUPER_SIMPLE
|
// @Param: SUPER_SIMPLE
|
||||||
// @DisplayName: Enable Super Simple Mode
|
// @DisplayName: Enable Super Simple Mode
|
||||||
// @Description: Setting this to true (1) will enable Super Simple Mode. Setting this to false(0) will disable Super Simple Mode
|
// @Description: Setting this to true (1) will enable Super Simple Mode. Setting this to false(0) will disable Super Simple Mode
|
||||||
// @Values: 0,1
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
GSCALAR(super_simple, "SUPER_SIMPLE"),
|
GSCALAR(super_simple, "SUPER_SIMPLE"),
|
||||||
|
|
||||||
// @Param: RTL_LAND
|
// @Param: RTL_LAND
|
||||||
// @DisplayName: RTL Land
|
// @DisplayName: RTL Land
|
||||||
// @Description: Setting this to true (1) will enable landing after RTL. Setting this to false(0) will disable landing after RTL.
|
// @Description: Setting this to true (1) will enable landing after RTL. Setting this to false(0) will disable landing after RTL.
|
||||||
// @Values: 0,1
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
GSCALAR(rtl_land_enabled, "RTL_LAND"),
|
GSCALAR(rtl_land_enabled, "RTL_LAND"),
|
||||||
|
|
||||||
@ -97,7 +97,7 @@ static const AP_Param::Info var_info[] PROGMEM = {
|
|||||||
// @Param: RETRO_LOITER
|
// @Param: RETRO_LOITER
|
||||||
// @DisplayName: Retro Loiter
|
// @DisplayName: Retro Loiter
|
||||||
// @Description: Setting this to true (1) will enable the Loiter from 2.0.49. Setting this to false(0) will use the most recent Loiter routines.
|
// @Description: Setting this to true (1) will enable the Loiter from 2.0.49. Setting this to false(0) will use the most recent Loiter routines.
|
||||||
// @Values: 0,1
|
// @Values: 0:Disabled,1:Enabled
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
GSCALAR(retro_loiter, "RETRO_LOITER"),
|
GSCALAR(retro_loiter, "RETRO_LOITER"),
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user