1
0
Fork 0
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:
Dominik Wenger 2008-11-02 01:10:29 +00:00
parent 34151e55f8
commit 0b34b77e13

View file

@ -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++;
}
}