summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sparmann <theseven@rockbox.org>2009-10-21 20:29:51 +0000
committerMichael Sparmann <theseven@rockbox.org>2009-10-21 20:29:51 +0000
commit6afe802a8335a1334babcdb33a15ee61652bb6f3 (patch)
tree6b89c9460bbe259178104e9c5a2b77ae74d5c57e
parent940fd995a4abd83d79af4d6420ca51a3f0dd8e58 (diff)
downloadrockbox-6afe802a8335a1334babcdb33a15ee61652bb6f3.tar.gz
rockbox-6afe802a8335a1334babcdb33a15ee61652bb6f3.zip
Add a "Flushing storage buffers" message to ROLO if it needs to do that.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23313 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/rolo.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c
index c206bca589..a8ea1cdf5e 100644
--- a/firmware/rolo.c
+++ b/firmware/rolo.c
@@ -286,6 +286,12 @@ int rolo_load(const char* filename)
286 return -1; 286 return -1;
287 } 287 }
288 288
289#ifdef HAVE_STORAGE_FLUSH
290 lcd_puts(0, 1, "Flushing storage buffers");
291 lcd_update();
292 storage_flush();
293#endif
294
289 lcd_puts(0, 1, "Executing"); 295 lcd_puts(0, 1, "Executing");
290 lcd_update(); 296 lcd_update();
291#ifdef HAVE_REMOTE_LCD 297#ifdef HAVE_REMOTE_LCD
@@ -293,9 +299,6 @@ int rolo_load(const char* filename)
293 lcd_remote_update(); 299 lcd_remote_update();
294#endif 300#endif
295 adc_close(); 301 adc_close();
296#ifdef HAVE_STORAGE_FLUSH
297 storage_flush();
298#endif
299 302
300#ifdef CPU_ARM 303#ifdef CPU_ARM
301 /* Should do these together since some ARM version should never have 304 /* Should do these together since some ARM version should never have
@@ -348,13 +351,15 @@ int rolo_load(const char* filename)
348 return -1; 351 return -1;
349 } 352 }
350 353
351 lcd_puts(0, 1, "Executing ");
352 lcd_update();
353
354#ifdef HAVE_STORAGE_FLUSH 354#ifdef HAVE_STORAGE_FLUSH
355 lcd_puts(0, 1, "Flushing ");
356 lcd_update();
355 storage_flush(); 357 storage_flush();
356#endif 358#endif
357 359
360 lcd_puts(0, 1, "Executing ");
361 lcd_update();
362
358 set_irq_level(HIGHEST_IRQ_LEVEL); 363 set_irq_level(HIGHEST_IRQ_LEVEL);
359 364
360 /* Calling these 2 initialization routines was necessary to get the 365 /* Calling these 2 initialization routines was necessary to get the