summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/settings.c10
-rw-r--r--apps/settings_menu.c3
2 files changed, 5 insertions, 8 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 2765ae8e52..bbb37db3f1 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -217,13 +217,9 @@ static const struct bit_entry rtc_bits[] =
217 {1, S_O(discharge), 0, "deep discharge", off_on }, 217 {1, S_O(discharge), 0, "deep discharge", off_on },
218 {1, S_O(trickle_charge), true, "trickle charge", off_on }, 218 {1, S_O(trickle_charge), true, "trickle charge", off_on },
219#endif 219#endif
220#if CONFIG_BATTERY == BATT_LIION2200 220 {12, S_O(battery_capacity), BATTERY_CAPACITY_MIN, "battery capacity",
221 {12, S_O(battery_capacity), 2200, "battery capacity", NULL }, /* 1500...3200 */ 221 NULL }, /* 1500...3200 for NiMH, 2200...3200 for LiIon,
222#elif CONFIG_BATTERY == BATT_4AA_NIMH 222 1000...2000 for Alkaline */
223 {12, S_O(battery_capacity), 1500, "battery capacity", NULL }, /* 1500...3200 */
224#elif CONFIG_BATTERY == BATT_3AAA_ALKALINE
225 {12, S_O(battery_capacity), 1000, "battery capacity", NULL },
226#endif
227#ifdef HAVE_CHARGING 223#ifdef HAVE_CHARGING
228 {1, S_O(car_adapter_mode), false, "car adapter mode", off_on }, 224 {1, S_O(car_adapter_mode), false, "car adapter mode", off_on },
229#endif 225#endif
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 2579d7b4dc..8877818d43 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -703,7 +703,8 @@ static bool battery_capacity(void)
703{ 703{
704 return set_int(str(LANG_BATTERY_CAPACITY), "mAh", UNIT_MAH, 704 return set_int(str(LANG_BATTERY_CAPACITY), "mAh", UNIT_MAH,
705 &global_settings.battery_capacity, 705 &global_settings.battery_capacity,
706 &set_battery_capacity, 50, 1500, BATTERY_CAPACITY_MAX ); 706 &set_battery_capacity, 50, BATTERY_CAPACITY_MIN,
707 BATTERY_CAPACITY_MAX );
707} 708}
708#endif 709#endif
709 710