as3525v2: factorize writing to ascodec PMU

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25380 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-03-29 13:00:33 +00:00
parent 1bfffbcaaa
commit ba76e2870e
4 changed files with 18 additions and 18 deletions

View file

@ -30,8 +30,7 @@ int buttonlight_is_on = 0;
void _backlight_set_brightness(int brightness)
{
ascodec_write(AS3543_PMU_ENABLE, 8|2); // sub register
ascodec_write(AS3543_BACKLIGHT, brightness * 10);
ascodec_write_pmu(AS3543_BACKLIGHT, 2, brightness * 10);
}
bool _backlight_init(void)
@ -39,11 +38,9 @@ bool _backlight_init(void)
GPIOB_DIR |= 1<<5; /* for buttonlight, stuff below seems to be needed
for buttonlight as well*/
ascodec_write(AS3543_PMU_ENABLE, 8|1); // sub register
ascodec_write(AS3543_BACKLIGHT, 0x80);
ascodec_write_pmu(AS3543_BACKLIGHT, 1, 0x80);
ascodec_write_pmu(AS3543_BACKLIGHT, 2, backlight_brightness * 10);
ascodec_write(AS3543_PMU_ENABLE, 8|2); // sub register
ascodec_write(AS3543_BACKLIGHT, backlight_brightness * 10);
return true;
}
@ -52,14 +49,12 @@ void _backlight_on(void)
#ifdef HAVE_LCD_ENABLE
lcd_enable(true); /* power on lcd + visible display */
#endif
ascodec_write(AS3543_PMU_ENABLE, 8|1); // sub register
ascodec_write(AS3543_BACKLIGHT, 0x80);
ascodec_write_pmu(AS3543_BACKLIGHT, 1, 0x80);
}
void _backlight_off(void)
{
ascodec_write(AS3543_PMU_ENABLE, 8|1); // sub register
ascodec_write(AS3543_BACKLIGHT, 0);
ascodec_write_pmu(AS3543_BACKLIGHT, 1, 0x0);
#ifdef HAVE_LCD_ENABLE
lcd_enable(false); /* power off visible display */
#endif