forked from len0rd/rockbox
make the m200v2 lcd work again with higher cpu frequency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18974 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
34151e55f8
commit
0b34b77e13
1 changed files with 4 additions and 1 deletions
|
|
@ -80,7 +80,6 @@ void lcd_write_command(int byte)
|
|||
/* While push fifo is not empty */
|
||||
while ((DBOP_STAT & (1<<10)) == 0)
|
||||
;
|
||||
|
||||
DBOP_TIMPOL_23 = 0x6E06F;
|
||||
}
|
||||
|
||||
|
|
@ -94,6 +93,10 @@ void lcd_write_data(const fb_data* p_bytes, int count)
|
|||
/* While push fifo is not empty */
|
||||
while ((DBOP_STAT & (1<<10)) == 0)
|
||||
;
|
||||
/* delay a bit. value arbitrary */
|
||||
int i = 0;
|
||||
while(i < 15)
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue