diff options
author | Udo Schläpfer <rockbox-2014.10@desktopwarrior.net> | 2015-01-21 20:51:36 +0100 |
---|---|---|
committer | Udo Schläpfer <rockbox-2014.10@desktopwarrior.net> | 2015-02-02 22:43:46 +0100 |
commit | 95fdad5e2827685160a5a669c3e8b4dc783995ad (patch) | |
tree | 14719a6459ededf8f746ccda965501a37c4f55e4 /apps/menus | |
parent | 040306a71663d98f1ca568b61010ee125d1e6501 (diff) |
iBasso DX50/DX90: User selectable USB mode.
Depends on http://gerrit.rockbox.org/r/#/c/1043/.
This patch adds a new setting in Settings -> General -> System: USB Mode.
Usable in Quickscreen and Shortcuts.
Possible settings are:
- Mass Storage: The default, on USB connect export the internal and external
drives as usual. Rockbox will exit gracefully in this case, since the internal
drive (/mnt/sdcard) is exported as mass storage device and Android prevents
Rockbox from continued execution.
- Charge Only: USB charge only, do not export the internal and external drives.
This will not close Rockbox.
- ADB: Enable the Android Debug Bridge. This will not close Rockbox.
Charge only and ADB are actually the same, since it is not yet established if
charge only is doable without adb and major hooks into Android.
German translation provided.
This may be genric for Android based devices but is only enabled
for iBasso Devices. Other maintainers may choose do adopt this.
Change-Id: I616247c29946c6595ebcf8f0c14b2410c9f0498b
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/settings_menu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c index 6fcc3e91a9..f42550cc6a 100644 --- a/apps/menus/settings_menu.c +++ b/apps/menus/settings_menu.c @@ -52,6 +52,7 @@ #if defined(DX50) || defined(DX90) #include "governor-ibasso.h" +#include "usb-ibasso.h" #endif /***********************************/ @@ -331,6 +332,7 @@ MENUITEM_SETTING(shortcuts_replaces_quickscreen, &global_settings.shortcuts_repl #if defined(DX50) || defined(DX90) MENUITEM_SETTING(governor, &global_settings.governor, NULL); +MENUITEM_SETTING(usb_mode, &global_settings.usb_mode, NULL); #endif MAKE_MENU(system_menu, ID2P(LANG_SYSTEM), @@ -388,6 +390,7 @@ MAKE_MENU(system_menu, ID2P(LANG_SYSTEM), #if defined(DX50) || defined(DX90) &governor, + &usb_mode, #endif ); |