diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-20 15:02:29 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-20 15:02:29 +0000 |
| commit | b6c12a129e22dadff4be67e5b0fe8993c888d6d8 (patch) | |
| tree | ee6e855a5d998e3c5bae6d74a86641f3d01ebd50 /apps/settings_list.c | |
| parent | 181e0e0878aac10dd9a6651842fbb59c4fed7a9b (diff) | |
| download | rockbox-b6c12a129e22dadff4be67e5b0fe8993c888d6d8.zip rockbox-b6c12a129e22dadff4be67e5b0fe8993c888d6d8.tar.gz rockbox-b6c12a129e22dadff4be67e5b0fe8993c888d6d8.tar.bz2 rockbox-b6c12a129e22dadff4be67e5b0fe8993c888d6d8.tar.xz | |
Submit FS#11065. Introduce a new system setting for en-/disabling the Line-out. For now only implemented on iPod Video. This allows to save power if the user does not use the player's Line-out. On iPod 5G the saving is ~0.5 mA.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25257 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_list.c')
| -rw-r--r-- | apps/settings_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index 5759e24..2638eac 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -700,6 +700,10 @@ const struct settings_list settings[] = { OFFON_SETTING(0, accessory_supply, LANG_ACCESSORY_SUPPLY, true, "accessory power supply", accessory_supply_set), #endif +#ifdef HAVE_LINEOUT_POWEROFF + OFFON_SETTING(0, lineout_active, LANG_LINEOUT_ONOFF, + true, "lineout", lineout_set), +#endif /* tuner */ #if CONFIG_TUNER OFFON_SETTING(0,fm_force_mono, LANG_FM_MONO_MODE, |