Fix wizard serial messages
This commit is contained in:
parent
30ec4e8b53
commit
384a6d1989
|
|
@ -3964,7 +3964,7 @@ void lcd_wizard(WizState state)
|
||||||
FORCE_BL_ON_START;
|
FORCE_BL_ON_START;
|
||||||
|
|
||||||
while (!end) {
|
while (!end) {
|
||||||
printf_P(PSTR("Wizard state: %d\n"), state);
|
printf_P(PSTR("Wizard state: %d\n"), (uint8_t)state);
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case S::Run: //Run wizard?
|
case S::Run: //Run wizard?
|
||||||
|
|
||||||
|
|
@ -4117,7 +4117,7 @@ void lcd_wizard(WizState state)
|
||||||
|
|
||||||
FORCE_BL_ON_END;
|
FORCE_BL_ON_END;
|
||||||
|
|
||||||
printf_P(_N("Wizard end state: %d\n"), state);
|
printf_P(_N("Wizard end state: %d\n"), (uint8_t)state);
|
||||||
switch (state) { //final message
|
switch (state) { //final message
|
||||||
case S::Restore: //printer was already calibrated
|
case S::Restore: //printer was already calibrated
|
||||||
msg = _T(MSG_WIZARD_DONE);
|
msg = _T(MSG_WIZARD_DONE);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue