diff options
| author | Torne Wuff <torne@wolfpuppy.org.uk> | 2010-06-05 21:00:18 +0000 |
|---|---|---|
| committer | Torne Wuff <torne@wolfpuppy.org.uk> | 2010-06-05 21:00:18 +0000 |
| commit | 055f4c3b6309a35238ea34387fb0b410bbbbb432 (patch) | |
| tree | f98cc5fcbd4c7cd2a0016af14a4601e2d04ba3fd | |
| parent | 2eb01425877347f601b1f8b03e07dcb2d690d6d9 (diff) | |
| download | rockbox-055f4c3b6309a35238ea34387fb0b410bbbbb432.zip rockbox-055f4c3b6309a35238ea34387fb0b410bbbbb432.tar.gz rockbox-055f4c3b6309a35238ea34387fb0b410bbbbb432.tar.bz2 rockbox-055f4c3b6309a35238ea34387fb0b410bbbbb432.tar.xz | |
New USB charging system, part 3 (end of rework) - Default to usb charging on
It should now be safe to default the USB charging setting to "on" on targets which support it at all - it will only charge when connected to a host which has acknowleged its requirement for 500mA of power.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26595 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index ca62e89..55cefd9 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -1548,7 +1548,7 @@ const struct settings_list settings[] = { TEXT_SETTING(0,kbd_file,"kbd","-",ROCKBOX_DIR "/",".kbd"), #endif #ifdef HAVE_USB_CHARGING_ENABLE - CHOICE_SETTING(0, usb_charging, LANG_USB_CHARGING, 0, "usb charging", + CHOICE_SETTING(0, usb_charging, LANG_USB_CHARGING, 1, "usb charging", "off,on,force", NULL, 3, ID2P(LANG_SET_BOOL_NO), ID2P(LANG_SET_BOOL_YES), ID2P(LANG_FORCE)), #endif |