Copter: add @Increment to battery failsafe descriptions

This commit is contained in:
Randy Mackay 2013-10-29 11:24:04 +09:00
parent 328de5fc7b
commit 9176bf2e97
1 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,7 @@ const AP_Param::Info var_info[] PROGMEM = {
// @DisplayName: Failsafe battery voltage
// @Description: Battery voltage to trigger failsafe. Set to 0 to disable battery voltage failsafe. If the battery voltage drops below this voltage then the copter will RTL
// @Units: Volts
// @Increment: 0.1
// @User: Standard
GSCALAR(fs_batt_voltage, "FS_BATT_VOLTAGE", FS_BATT_VOLTAGE_DEFAULT),
@ -113,6 +114,7 @@ const AP_Param::Info var_info[] PROGMEM = {
// @DisplayName: Failsafe battery milliAmpHours
// @Description: Battery capacity remaining to trigger failsafe. Set to 0 to disable battery remaining failsafe. If the battery remaining drops below this level then the copter will RTL
// @Units: mAh
// @Increment: 50
// @User: Standard
GSCALAR(fs_batt_mah, "FS_BATT_MAH", FS_BATT_MAH_DEFAULT),