Fix wizard serial messages
This commit is contained in:
parent
7fe1a50899
commit
7e9d9ade5c
|
|
@ -4047,7 +4047,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?
|
||||||
|
|
||||||
|
|
@ -4204,7 +4204,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