mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 00:28:30 -04:00
Parameters: Changed rtl_approach_alt to float to support more granular altitudes
This commit is contained in:
parent
77d6f22864
commit
a366bb2f81
@ -211,7 +211,7 @@ public:
|
||||
AP_Float low_voltage;
|
||||
AP_Int8 super_simple;
|
||||
AP_Int8 rtl_land_enabled;
|
||||
AP_Uint8 rtl_approach_alt;
|
||||
AP_Float rtl_approach_alt;
|
||||
AP_Int8 axis_enabled;
|
||||
AP_Int8 copter_leds_mode; // Operating mode of LED lighting system
|
||||
|
||||
@ -332,7 +332,7 @@ public:
|
||||
low_voltage (LOW_VOLTAGE),
|
||||
super_simple (SUPER_SIMPLE),
|
||||
rtl_land_enabled (RTL_AUTO_LAND),
|
||||
rtl_approach_alt (0),
|
||||
rtl_approach_alt (0.0),
|
||||
axis_enabled (AXIS_LOCK_ENABLED),
|
||||
copter_leds_mode (0),
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user