summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c')
-rw-r--r--firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
index 840d3c4c3c..ece773f2fa 100644
--- a/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
+++ b/firmware/target/arm/as3525/sansa-e200v2/lcd-e200v2.c
@@ -138,6 +138,10 @@ static void lcd_write_cmd(int cmd)
138 /* Wait for fifo to empty */ 138 /* Wait for fifo to empty */
139 while ((DBOP_STAT & (1<<10)) == 0); 139 while ((DBOP_STAT & (1<<10)) == 0);
140 140
141 /* Fuze OF has this loop and it seems to help us now also */
142 int delay=8;
143 while(delay--);
144
141 DBOP_TIMPOL_23 = 0xa167e06f; 145 DBOP_TIMPOL_23 = 0xa167e06f;
142} 146}
143 147