mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
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:
parent
f511e4916d
commit
476e464901
1 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue