diff options
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/backlight.h | 4 | ||||
| -rw-r--r-- | firmware/export/config-h300.h | 2 | ||||
| -rw-r--r-- | firmware/export/pcf50606.h | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/firmware/export/backlight.h b/firmware/export/backlight.h index 9c3f5aa..f4c62a2 100644 --- a/firmware/export/backlight.h +++ b/firmware/export/backlight.h @@ -49,3 +49,7 @@ void sim_backlight(int value); void sim_remote_backlight(int value); #endif #endif + +#ifdef HAVE_BACKLIGHT_BRIGHTNESS +void backlight_set_brightness(int val); +#endif diff --git a/firmware/export/config-h300.h b/firmware/export/config-h300.h index 20e27c5..54a2ef5 100644 --- a/firmware/export/config-h300.h +++ b/firmware/export/config-h300.h @@ -100,4 +100,6 @@ #define BOOTFILE_EXT "iriver" #define BOOTFILE "rockbox." BOOTFILE_EXT +#define HAVE_BACKLIGHT_BRIGHTNESS + #endif diff --git a/firmware/export/pcf50606.h b/firmware/export/pcf50606.h index fd180bf..daacbac 100644 --- a/firmware/export/pcf50606.h +++ b/firmware/export/pcf50606.h @@ -25,6 +25,7 @@ int pcf50606_write_multiple(int address, const unsigned char* buf, int count); int pcf50606_write(int address, unsigned char val); int pcf50606_read_multiple(int address, unsigned char* buf, int count); int pcf50606_read(int address); +void pcf50606_set_bl_pwm(unsigned char ucVal); #endif #endif |