Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ROLO: Ensure messages are not covering each other, change punctuation

Change-Id: I7c9a96afce39d95f120c8349d489f0b649f1ae11

authored by

Vencislav Atanasov and committed by
Solomon Peachy
843ac237 a901b530

+13 -8
+13 -8
firmware/rolo.c
··· 229 229 int err, length; 230 230 231 231 lcd_clear_display(); 232 - lcd_puts(0, 0, "ROLO..."); 233 - lcd_puts(0, 1, "Loading"); 232 + lcd_puts(0, 0, "ROLO"); 233 + lcd_puts(0, 1, "Loading..."); 234 234 lcd_update(); 235 235 #ifdef HAVE_REMOTE_LCD 236 236 lcd_remote_clear_display(); 237 - lcd_remote_puts(0, 0, "ROLO..."); 238 - lcd_remote_puts(0, 1, "Loading"); 237 + lcd_remote_puts(0, 0, "ROLO"); 238 + lcd_remote_puts(0, 1, "Loading..."); 239 239 lcd_remote_update(); 240 240 #endif 241 241 ··· 296 296 rolo_restart_cop(); 297 297 /* Wait for COP to be in safe code */ 298 298 while(cpu_reply != 1); 299 - lcd_puts(0, 2, " "); 299 + lcd_clear_display(); 300 + lcd_puts(0, 0, "ROLO"); 301 + lcd_puts(0, 1, "Loading..."); 300 302 lcd_update(); 301 303 #endif 302 304 303 305 #ifdef HAVE_STORAGE_FLUSH 304 - lcd_puts(0, 1, "Flushing storage buffers"); 306 + lcd_puts(0, 1, "Flushing storage buffers..."); 305 307 lcd_update(); 306 308 storage_flush(); 309 + lcd_clear_display(); 310 + lcd_puts(0, 0, "ROLO"); 311 + lcd_update(); 307 312 #endif 308 313 309 - lcd_puts(0, 1, "Executing"); 314 + lcd_puts(0, 1, "Executing..."); 310 315 lcd_update(); 311 316 #ifdef HAVE_REMOTE_LCD 312 - lcd_remote_puts(0, 1, "Executing"); 317 + lcd_remote_puts(0, 1, "Executing..."); 313 318 lcd_remote_update(); 314 319 #endif 315 320