From 843ac237c1d4970c87531982389cee19d7d999aa Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Thu, 24 Jul 2025 17:08:10 +0200 Subject: [PATCH] ROLO: Ensure messages are not covering each other, change punctuation Change-Id: I7c9a96afce39d95f120c8349d489f0b649f1ae11 --- firmware/rolo.c | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/firmware/rolo.c b/firmware/rolo.c index 6857290260..a8e8f3938b 100644 --- a/firmware/rolo.c +++ b/firmware/rolo.c @@ -229,13 +229,13 @@ int rolo_load(const char* filename) int err, length; lcd_clear_display(); - lcd_puts(0, 0, "ROLO..."); - lcd_puts(0, 1, "Loading"); + lcd_puts(0, 0, "ROLO"); + lcd_puts(0, 1, "Loading..."); lcd_update(); #ifdef HAVE_REMOTE_LCD lcd_remote_clear_display(); - lcd_remote_puts(0, 0, "ROLO..."); - lcd_remote_puts(0, 1, "Loading"); + lcd_remote_puts(0, 0, "ROLO"); + lcd_remote_puts(0, 1, "Loading..."); lcd_remote_update(); #endif @@ -296,20 +296,25 @@ int rolo_load(const char* filename) rolo_restart_cop(); /* Wait for COP to be in safe code */ while(cpu_reply != 1); - lcd_puts(0, 2, " "); + lcd_clear_display(); + lcd_puts(0, 0, "ROLO"); + lcd_puts(0, 1, "Loading..."); lcd_update(); #endif #ifdef HAVE_STORAGE_FLUSH - lcd_puts(0, 1, "Flushing storage buffers"); + lcd_puts(0, 1, "Flushing storage buffers..."); lcd_update(); storage_flush(); + lcd_clear_display(); + lcd_puts(0, 0, "ROLO"); + lcd_update(); #endif - lcd_puts(0, 1, "Executing"); + lcd_puts(0, 1, "Executing..."); lcd_update(); #ifdef HAVE_REMOTE_LCD - lcd_remote_puts(0, 1, "Executing"); + lcd_remote_puts(0, 1, "Executing..."); lcd_remote_update(); #endif