diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2006-11-10 01:30:09 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2006-11-10 01:30:09 +0000 |
| commit | 00ce880da779699d86159ab2eaea2474e9a2b151 (patch) | |
| tree | ca77a644ac3fbd02434b38aa17fc86b67df77047 | |
| parent | cf59a4fc1d21c2a1d6cfc019f97268275d4a8581 (diff) | |
| download | rockbox-00ce880da779699d86159ab2eaea2474e9a2b151.zip rockbox-00ce880da779699d86159ab2eaea2474e9a2b151.tar.gz rockbox-00ce880da779699d86159ab2eaea2474e9a2b151.tar.bz2 rockbox-00ce880da779699d86159ab2eaea2474e9a2b151.tar.xz | |
Removed the settings #defines from backlight.h since they are now in the players' config files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11489 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/backlight.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/firmware/export/backlight.h b/firmware/export/backlight.h index 6875768..1cd6c47 100644 --- a/firmware/export/backlight.h +++ b/firmware/export/backlight.h @@ -77,18 +77,6 @@ void sim_remote_backlight(int value); #endif #ifdef HAVE_BACKLIGHT_BRIGHTNESS - -#ifdef IAUDIO_X5 -/* PFC50506 can output 0%-100% duty cycle but D305A expects %15-100%. */ -#define MIN_BRIGHTNESS_SETTING 1 /* 15/16 (93.75%) */ -#define MAX_BRIGHTNESS_SETTING 13 /* 3/16 (18.75%) */ -#define DEFAULT_BRIGHTNESS_SETTING 8 /* 8/16 (50.00%) = x5 boot default */ -#else -#define MIN_BRIGHTNESS_SETTING 2 /* 2/16 (12.50%) */ -#define MAX_BRIGHTNESS_SETTING 15 /* 15/16 (93.75%) */ -#define DEFAULT_BRIGHTNESS_SETTING 9 /* 9/16 (56.25%) */ -#endif - void backlight_set_brightness(int val); #endif /* HAVE_BACKLIGHT_BRIGHTNESS */ |