Skip to content
Snippets Groups Projects
Commit 65adb78f authored by Randy Mackay's avatar Randy Mackay
Browse files

Copter: increase default battery capacity to 3500mAh

parent 0fa8e443
No related branches found
No related tags found
No related merge requests found
...@@ -147,7 +147,7 @@ const AP_Param::Info var_info[] PROGMEM = { ...@@ -147,7 +147,7 @@ const AP_Param::Info var_info[] PROGMEM = {
// @Description: Battery capacity in milliamp-hours (mAh) // @Description: Battery capacity in milliamp-hours (mAh)
// @Units: mAh // @Units: mAh
// @User: Standard // @User: Standard
GSCALAR(pack_capacity, "BATT_CAPACITY", HIGH_DISCHARGE), GSCALAR(pack_capacity, "BATT_CAPACITY", BATTERY_CAPACITY_DEFAULT),
// @Param: MAG_ENABLE // @Param: MAG_ENABLE
// @DisplayName: Enable Compass // @DisplayName: Enable Compass
......
...@@ -370,8 +370,8 @@ ...@@ -370,8 +370,8 @@
#ifndef CURR_AMPS_OFFSET #ifndef CURR_AMPS_OFFSET
# define CURR_AMPS_OFFSET 0.0f # define CURR_AMPS_OFFSET 0.0f
#endif #endif
#ifndef HIGH_DISCHARGE #ifndef BATTERY_CAPACITY_DEFAULT
# define HIGH_DISCHARGE 1760 # define BATTERY_CAPACITY_DEFAULT 3500
#endif #endif
#ifndef BOARD_VOLTAGE_MIN #ifndef BOARD_VOLTAGE_MIN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment