single material printer (no mmu unit) M600 hotfix: M600_check_state loop working
This commit is contained in:
parent
b13ff8e424
commit
d3ed270a5a
|
|
@ -8843,8 +8843,7 @@ void M600_check_state()
|
||||||
{
|
{
|
||||||
//Wait for user to check the state
|
//Wait for user to check the state
|
||||||
lcd_change_fil_state = 0;
|
lcd_change_fil_state = 0;
|
||||||
|
while (lcd_change_fil_state != 1){
|
||||||
while ((lcd_change_fil_state == 0)||(lcd_change_fil_state != 1)){
|
|
||||||
lcd_change_fil_state = 0;
|
lcd_change_fil_state = 0;
|
||||||
KEEPALIVE_STATE(PAUSED_FOR_USER);
|
KEEPALIVE_STATE(PAUSED_FOR_USER);
|
||||||
lcd_alright();
|
lcd_alright();
|
||||||
|
|
@ -8871,7 +8870,7 @@ void M600_check_state()
|
||||||
lcd_update_enable(true);
|
lcd_update_enable(true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void M600_wait_for_user() {
|
void M600_wait_for_user() {
|
||||||
|
|
@ -9036,7 +9035,7 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
|
||||||
fsensor_disable();
|
fsensor_disable();
|
||||||
}
|
}
|
||||||
#endif //FILAMENT_SENSOR
|
#endif //FILAMENT_SENSOR
|
||||||
|
lcd_update_enable(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define FIL_LOAD_LENGTH 60
|
#define FIL_LOAD_LENGTH 60
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue