From 82d073dcb8221d64d94ca77d053e6fd28136940d Mon Sep 17 00:00:00 2001 From: nls Date: Mon, 5 Nov 2007 14:36:31 +0000 Subject: [PATCH] Add missing descriptions for display settings, mirror various HAVE_* defines in the platform files and let the display settings be included based on those, lots of minor tweaks git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15471 a1c6a512-1295-4272-9138-f99709370657 --- manual/configure_rockbox/display_options.tex | 55 +++++++++++++++++----------- manual/platform/c200.tex | 3 ++ manual/platform/e200.tex | 5 +++ manual/platform/gigabeatf.tex | 2 + manual/platform/h10.tex | 4 ++ manual/platform/h10_5gb.tex | 1 + manual/platform/h1xx.tex | 4 ++ manual/platform/h300.tex | 3 ++ manual/platform/ipod1g2g.tex | 3 ++ manual/platform/ipod3g.tex | 3 ++ manual/platform/ipod4g.tex | 3 ++ manual/platform/ipodcolor.tex | 1 + manual/platform/ipodmini.tex | 4 ++ manual/platform/ipodnano.tex | 2 + manual/platform/ipodvideo.tex | 2 + manual/platform/m5.tex | 3 ++ manual/platform/ondiofm.tex | 2 + manual/platform/ondiosp.tex | 2 + manual/platform/player.tex | 1 + manual/platform/recorder.tex | 3 ++ manual/platform/recorderv2fm.tex | 3 ++ manual/platform/x5.tex | 5 +++ 22 files changed, 92 insertions(+), 22 deletions(-) diff --git a/manual/configure_rockbox/display_options.tex b/manual/configure_rockbox/display_options.tex index a8decd5db..16fb15d18 100644 --- a/manual/configure_rockbox/display_options.tex +++ b/manual/configure_rockbox/display_options.tex @@ -6,23 +6,29 @@ \item[LCD Settings:] This sub menu contains settings that relate to the display of the \dap. \begin{description} - \nopt{ondiofm,ondiosp}{ + \opt{HAVE_BACKLIGHT}{ \item[Backlight:] The amount of time the backlight shines after a key press. If set to \setting{Off}, the backlight will not light when a button is pressed. If set to \setting{On}, the backlight will never shut off. If set to a time (1 to 90 seconds), the backlight will stay lit for that amount of time after a button press. - \item[Backlight on When Plugged:] - This setting is equivalent to the Backlight setting except it applies when - the \dap\ is plugged into the charger. + \item[Backlight (While Plugged In):] + This setting is equivalent to the \setting{Backlight} setting except it + applies when the \dap{} is plugged into the charger. + \item[Backlight on Hold:] + This setting controls the behavior of the backlight when the Hold switch + is toggled. If set to \setting{Normal} the backlight will behave as usual. + If set to \setting{Off} the backlight will be turned off immediately when + the Hold switch is engaged and if set to \setting{On} the backlight will + be turned on and stay on while the Hold switch is engaged. \item[Caption Backlight:] This option turns on the backlight a number of seconds before the start of a new track, and keeps it on for the same number of seconds after the beginning so that the display can be read to see song information. The amount of time is determined by the value of the backlight timeout setting, but is no less than 5 seconds. - \opt{h1xx,ipodmini,ipodnano,ipodvideo}{ + \opt{HAVE_BACKLIGHT_PWM_FADING}{ \item[Backlight fade in:] The amount of time that the backlight will take to fade from off to on after a button is pressed. If set to \setting{Off} the backlight will @@ -39,34 +45,39 @@ With this option enabled the first keypress while the backlight is turned off will only turn the backlight on without having any other effect. When disabled the first keypress will \emph{also} perform its appropriate action. - \opt{h300,x5}{ + + \opt{HAVE_LCD_SLEEP}{ + \item[Sleep (After Backlight Off):] + This setting controls how long rockbox will wait before turning off the + display after the backlight is turned off. Turning off the display + saves a little bit of battery power but turning on the display takes + noticeably longer than just turning on the backlight. + } + + \opt{HAVE_BACKLIGHT_BRIGHTNESS}{ \item[Brightness:] Changes the brightness of your LCD display. } - } % \nopt{ondiofm,ondiosp} + } % \opt{HAVE_BACKLIGHT} \opt{archos,h1xx,ipodmini,ipod3g,ipod4g,x5}{ \item[Contrast:] Changes the contrast of your LCD display. \warn{Setting the contrast too dark or too light can make it hard to find this menu option again!} - \nopt{HAVE_LCD_COLOR,player}{ - \item[LCD Mode:] - This setting lets you invert the whole screen, so now you get a - black background and light text and graphics. - } % \opt{HAVE_LCD_BITMAP} } % \opt{archos,h1xx,ipodmini,ipod4g,x5} - - \opt{HAVE_LCD_BITMAP}{ - \nopt{ipodcolor,ipodnano,ipodvideo}{ - \item[Upside Down:] - Displays the screen so that the top of the display is nearest the buttons. - This is sometimes useful when carrying the \dap\ in a pocket for easy - access to the headphone socket. - } % \nopt{ipodcolor,ipodnano.ipodvideo} - - } % \opt{HAVE_LCD_BITMAP} + \opt{HAVE_LCD_INVERT}{ + \item[LCD Mode:] + This setting lets you invert the colours of the display. + } + + \opt{HAVE_LCD_FLIP}{ + \item[Upside Down:] + Displays the screen so that the top of the display is nearest the buttons. + This is sometimes useful when carrying the \dap{} in a pocket for easy + access to the headphone socket. + } \end{description} % \opt{HAVE_REMOTE_LCD}{ diff --git a/manual/platform/c200.tex b/manual/platform/c200.tex index 594bc422d..b4f5d6f6d 100644 --- a/manual/platform/c200.tex +++ b/manual/platform/c200.tex @@ -2,10 +2,13 @@ \def\UseOption{c200} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,SANSA_C200_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_BRIGHTNESS} \edef\UseOption{\UseOption,sansa} \newcommand{\playerman}{Sansa} diff --git a/manual/platform/e200.tex b/manual/platform/e200.tex index 0408a51de..00c6eb339 100644 --- a/manual/platform/e200.tex +++ b/manual/platform/e200.tex @@ -2,12 +2,17 @@ \def\UseOption{e200} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} +\edef\UseOption{\UseOption,HAVE_LCD_SLEEP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_TUNER} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,SANSA_E200_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_BRIGHTNESS} \edef\UseOption{\UseOption,sansa} \newcommand{\playerman}{Sansa} diff --git a/manual/platform/gigabeatf.tex b/manual/platform/gigabeatf.tex index 75822fe5d..1f8ab957f 100644 --- a/manual/platform/gigabeatf.tex +++ b/manual/platform/gigabeatf.tex @@ -6,6 +6,8 @@ \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,GIGABEAT_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_BRIGHTNESS} \edef\UseOption{\UseOption,gigabeat} \newcommand{\playerman}{Toshiba} diff --git a/manual/platform/h10.tex b/manual/platform/h10.tex index 3f5d15e30..fac13bf91 100644 --- a/manual/platform/h10.tex +++ b/manual/platform/h10.tex @@ -2,10 +2,14 @@ \def\UseOption{h10} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} +\edef\UseOption{\UseOption,HAVE_LCD_SLEEP} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IRIVER_H10_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,iriver} \newcommand{\playerman}{Iriver} diff --git a/manual/platform/h10_5gb.tex b/manual/platform/h10_5gb.tex index 30ce9e053..ef4447650 100644 --- a/manual/platform/h10_5gb.tex +++ b/manual/platform/h10_5gb.tex @@ -6,6 +6,7 @@ \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IRIVER_H10_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,iriver} \newcommand{\playerman}{Iriver} diff --git a/manual/platform/h1xx.tex b/manual/platform/h1xx.tex index f936eba5b..985b9b252 100644 --- a/manual/platform/h1xx.tex +++ b/manual/platform/h1xx.tex @@ -2,11 +2,15 @@ \def\UseOption{h1xx} \edef\UseOption{\UseOption,HAVE_RB_BL_IN_FLASH} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_TUNER} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IRIVER_H100_PAD} \edef\UseOption{\UseOption,HAVE_REMOTE_LCD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_PWM_FADING} \edef\UseOption{\UseOption,iriver} \newcommand{\playerman}{Iriver} diff --git a/manual/platform/h300.tex b/manual/platform/h300.tex index 28c90bfd2..5809b6602 100644 --- a/manual/platform/h300.tex +++ b/manual/platform/h300.tex @@ -2,6 +2,7 @@ \def\UseOption{h300} \edef\UseOption{\UseOption,HAVE_RB_BL_IN_FLASH} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_TUNER} \edef\UseOption{\UseOption,CONFIG_RTC} @@ -9,6 +10,8 @@ \edef\UseOption{\UseOption,IRIVER_H300_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} \edef\UseOption{\UseOption,HAVE_REMOTE_LCD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_BRIGHTNESS} \edef\UseOption{\UseOption,iriver} \newcommand{\playerman}{Iriver} diff --git a/manual/platform/ipod1g2g.tex b/manual/platform/ipod1g2g.tex index ea6db7dc8..5f31002bc 100644 --- a/manual/platform/ipod1g2g.tex +++ b/manual/platform/ipod1g2g.tex @@ -2,10 +2,13 @@ \def\UseOption{ipod1g2g} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,HAVE_RTC_ALARM} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_3G_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/ipod3g.tex b/manual/platform/ipod3g.tex index ac3300442..1fab69020 100644 --- a/manual/platform/ipod3g.tex +++ b/manual/platform/ipod3g.tex @@ -2,10 +2,13 @@ \def\UseOption{ipod3g} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,HAVE_RTC_ALARM} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_3G_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/ipod4g.tex b/manual/platform/ipod4g.tex index 840228814..c9193bd5f 100644 --- a/manual/platform/ipod4g.tex +++ b/manual/platform/ipod4g.tex @@ -2,10 +2,13 @@ \def\UseOption{ipod4g} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,HAVE_RTC_ALARM} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_4G_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/ipodcolor.tex b/manual/platform/ipodcolor.tex index 5aa3727e4..175642289 100644 --- a/manual/platform/ipodcolor.tex +++ b/manual/platform/ipodcolor.tex @@ -7,6 +7,7 @@ \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_4G_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/ipodmini.tex b/manual/platform/ipodmini.tex index dcb0e83af..db692e228 100644 --- a/manual/platform/ipodmini.tex +++ b/manual/platform/ipodmini.tex @@ -2,10 +2,14 @@ \def\UseOption{ipodmini} \edef\UseOption{\UseOption,HAVE_RB_BL_ON_DISK} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,HAVE_RTC_ALARM} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_4G_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_PWM_FADING} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/ipodnano.tex b/manual/platform/ipodnano.tex index fe9645fbd..860dd6faf 100644 --- a/manual/platform/ipodnano.tex +++ b/manual/platform/ipodnano.tex @@ -7,6 +7,8 @@ \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_4G_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_PWM_FADING} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/ipodvideo.tex b/manual/platform/ipodvideo.tex index dc1314b41..53ecaba83 100644 --- a/manual/platform/ipodvideo.tex +++ b/manual/platform/ipodvideo.tex @@ -7,6 +7,8 @@ \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IPOD_4G_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_PWM_FADING} \edef\UseOption{\UseOption,ipod} \newcommand{\playerman}{Ipod} diff --git a/manual/platform/m5.tex b/manual/platform/m5.tex index 55a2df17c..2149ae4ce 100644 --- a/manual/platform/m5.tex +++ b/manual/platform/m5.tex @@ -2,11 +2,14 @@ \def\UseOption{m5} \edef\UseOption{\UseOption,HAVE_RB_BL_IN_FLASH} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,SWCODEC} \edef\UseOption{\UseOption,IAUDIO_X5_PAD} \edef\UseOption{\UseOption,HAVE_REMOTE_LCD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,iaudio} \newcommand{\playerman}{Iaudio} diff --git a/manual/platform/ondiofm.tex b/manual/platform/ondiofm.tex index 37762bfb0..44e315bf2 100644 --- a/manual/platform/ondiofm.tex +++ b/manual/platform/ondiofm.tex @@ -4,6 +4,8 @@ % To not break the current manual \edef\UseOption{\UseOption,ondio} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_TUNER} \edef\UseOption{\UseOption,MASCODEC} diff --git a/manual/platform/ondiosp.tex b/manual/platform/ondiosp.tex index 5cb9a61a2..61d19ffea 100644 --- a/manual/platform/ondiosp.tex +++ b/manual/platform/ondiosp.tex @@ -3,6 +3,8 @@ \def\UseOption{ondiosp} \edef\UseOption{\UseOption,ondio} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,MASCODEC} \edef\UseOption{\UseOption,ONDIO_PAD} \edef\UseOption{\UseOption,archos} diff --git a/manual/platform/player.tex b/manual/platform/player.tex index e9674009b..45117432d 100644 --- a/manual/platform/player.tex +++ b/manual/platform/player.tex @@ -2,6 +2,7 @@ \def\UseOption{player} \edef\UseOption{\UseOption,MASCODEC} \edef\UseOption{\UseOption,PLAYER_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,archos} \newcommand{\playerman}{Archos} diff --git a/manual/platform/recorder.tex b/manual/platform/recorder.tex index fa42f3829..23595be30 100644 --- a/manual/platform/recorder.tex +++ b/manual/platform/recorder.tex @@ -1,10 +1,13 @@ % $Id$ % \def\UseOption{recorder} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,MASCODEC} \edef\UseOption{\UseOption,RECORDER_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,archos} \newcommand{\playerman}{Archos} diff --git a/manual/platform/recorderv2fm.tex b/manual/platform/recorderv2fm.tex index d65205679..cfc165b6d 100644 --- a/manual/platform/recorderv2fm.tex +++ b/manual/platform/recorderv2fm.tex @@ -1,12 +1,15 @@ % $Id$ % \def\UseOption{recorderv2fm} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_TUNER} \edef\UseOption{\UseOption,CONFIG_RTC} \edef\UseOption{\UseOption,HAVE_RTC_ALARM} \edef\UseOption{\UseOption,MASCODEC} \edef\UseOption{\UseOption,RECORDER_PAD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} \edef\UseOption{\UseOption,archos} \newcommand{\playerman}{Archos} diff --git a/manual/platform/x5.tex b/manual/platform/x5.tex index 67a19ae40..27d7f9589 100644 --- a/manual/platform/x5.tex +++ b/manual/platform/x5.tex @@ -2,6 +2,9 @@ \def\UseOption{x5} \edef\UseOption{\UseOption,HAVE_RB_BL_IN_FLASH} \edef\UseOption{\UseOption,HAVE_LCD_BITMAP} +\edef\UseOption{\UseOption,HAVE_LCD_INVERT} +\edef\UseOption{\UseOption,HAVE_LCD_FLIP} +\edef\UseOption{\UseOption,HAVE_LCD_SLEEP} \edef\UseOption{\UseOption,HAVE_RECORDING} \edef\UseOption{\UseOption,CONFIG_TUNER} \edef\UseOption{\UseOption,CONFIG_RTC} @@ -9,6 +12,8 @@ \edef\UseOption{\UseOption,IAUDIO_X5_PAD} \edef\UseOption{\UseOption,HAVE_LCD_COLOR} \edef\UseOption{\UseOption,HAVE_REMOTE_LCD} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT} +\edef\UseOption{\UseOption,HAVE_BACKLIGHT_BRIGHTNESS} \edef\UseOption{\UseOption,iaudio} \newcommand{\playerman}{Iaudio} -- 2.11.4.GIT