G-code unification

"FSENSOR_RECOVER" ->-> "PRUSA fsensor_recover"
This commit is contained in:
MRprusa3d 2019-03-05 13:36:13 +01:00
parent 7e48d633cb
commit 20a03d703d
3 changed files with 9 additions and 8 deletions

View file

@ -3463,11 +3463,6 @@ void process_commands()
}
#endif //BACKLASH_Y
#endif //TMC2130
#ifdef FILAMENT_SENSOR
else if (code_seen("FSENSOR_RECOVER")) { //! FSENSOR_RECOVER
fsensor_restore_print_and_continue();
}
#endif //FILAMENT_SENSOR
else if(code_seen("PRUSA")){
if (code_seen("Ping")) { //! PRUSA Ping
if (farm_mode) {
@ -3498,6 +3493,12 @@ void process_commands()
eeprom_update_byte((uint8_t*)EEPROM_UVLO,0);
enquecommand_P(PSTR("M24"));
}
#ifdef FILAMENT_SENSOR
else if (code_seen("fsensor_recover")) //! PRUSA fsensor_recover
{
fsensor_restore_print_and_continue();
}
#endif //FILAMENT_SENSOR
else if (code_seen("MMURES")) //! PRUSA MMURES
{
mmu_reset();