Fix Onda VX747+ LCD not working on boot

Same fix as in r29083.

Flyspray: FS#11896
Author: Purling Nayuki

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29102 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2011-01-21 12:38:03 +00:00
parent f511e4916d
commit 476e464901

View file

@ -39,10 +39,11 @@ do { \
#define SLEEP(x) { register int __i; for(__i=0; __i<x; __i++) asm volatile("nop\n nop\n"); }
#define DELAY SLEEP(700000);
#if (defined(ONDA_VX777) && !defined(BOOTLOADER)) || defined(USB_BOOT)
#if (defined((ONDA_VX777) || (ONDA_VX747P)) && !defined(BOOTLOADER)) \
|| defined(USB_BOOT)
/*
* Onda VX777 needs this in order to boot correctly, it looks like the SPL
* does not correctly initialize the LCD for Rockbox to switch it on.
* Onda VX777/VX747+ needs this in order to boot correctly, it looks like the
* SPL does not correctly initialize the LCD for Rockbox to switch it on.
*/
#define RESET_LCD
#endif