|
@@ -1011,7 +1011,7 @@ static void fw_crash_init()
|
|
|
eeprom_read_byte((uint8_t*)EEPROM_FW_CRASH_FLAG) != 0xFF)
|
|
|
{
|
|
|
lcd_show_fullscreen_message_and_wait_P(
|
|
|
- _i("FW crash detected! "
|
|
|
+ _n("FW crash detected! "
|
|
|
"You can continue printing. "
|
|
|
"Debug data available for analysis. "
|
|
|
"Contact support to submit details."));
|
|
@@ -1025,17 +1025,17 @@ static void fw_crash_init()
|
|
|
lcd_beeper_quick_feedback();
|
|
|
lcd_clear();
|
|
|
|
|
|
- lcd_puts_P(_i("FIRMWARE CRASH!\nCrash reason:\n"));
|
|
|
+ lcd_puts_P(_n("FIRMWARE CRASH!\nCrash reason:\n"));
|
|
|
switch(crash_reason)
|
|
|
{
|
|
|
case dump_crash_reason::stack_error:
|
|
|
- lcd_puts_P(_i("Static memory has\nbeen overwritten"));
|
|
|
+ lcd_puts_P(_n("Static memory has\nbeen overwritten"));
|
|
|
break;
|
|
|
case dump_crash_reason::watchdog:
|
|
|
- lcd_puts_P(_i("Watchdog timeout"));
|
|
|
+ lcd_puts_P(_n("Watchdog timeout"));
|
|
|
break;
|
|
|
case dump_crash_reason::bad_isr:
|
|
|
- lcd_puts_P(_i("Bad interrupt"));
|
|
|
+ lcd_puts_P(_n("Bad interrupt"));
|
|
|
break;
|
|
|
default:
|
|
|
lcd_print((uint8_t)crash_reason);
|