iPod nano 2G: Use LCD_PHTIME = 0x22 for both LDS and ILI type of displays. Significantly improves speed on ILI type (factor of ~2.5x).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28861 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2010-12-19 21:22:31 +00:00
parent 084d57cef4
commit d215eb7c70

View file

@ -319,8 +319,9 @@ void lcd_init_device(void)
} else {
lcd_type = 1; /* Similar to LDS176 - aka "type 7" */
LCD_CON |= 0x100; /* use 16 bit bus width, little endian */
LCD_PHTIME = 0x022; /* Set Phase Time reg (relevant for LCD IF speed) */
}
LCD_PHTIME = 0x22; /* Set Phase Time reg (relevant for LCD IF speed) */
lcd_ispowered = true;
}