|
@ -572,6 +572,7 @@ void serial_echopair_P(const char* s_P, float v) { serialprintPGM(s_P); |
|
|
void serial_echopair_P(const char* s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); } |
|
|
void serial_echopair_P(const char* s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); } |
|
|
void serial_echopair_P(const char* s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); } |
|
|
void serial_echopair_P(const char* s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); } |
|
|
|
|
|
|
|
|
|
|
|
void tool_change(const uint8_t tmp_extruder, const float fr_mm_m=0.0, bool no_move=false); |
|
|
static void report_current_position(); |
|
|
static void report_current_position(); |
|
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
@ -2882,6 +2883,12 @@ inline void gcode_G28() { |
|
|
#endif |
|
|
#endif |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
// Always home with tool 0 active
|
|
|
|
|
|
#if HOTENDS > 1 |
|
|
|
|
|
uint8_t old_tool_index = active_extruder; |
|
|
|
|
|
tool_change(0, 0, true); |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* For mesh bed leveling deactivate the mesh calculations, will be turned |
|
|
* For mesh bed leveling deactivate the mesh calculations, will be turned |
|
|
* on again when homing all axis |
|
|
* on again when homing all axis |
|
@ -3185,6 +3192,11 @@ inline void gcode_G28() { |
|
|
if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28"); |
|
|
if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("<<< gcode_G28"); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
// Restore the active tool after homing
|
|
|
|
|
|
#if HOTENDS > 1 |
|
|
|
|
|
tool_change(old_tool_index, 0, true); |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
report_current_position(); |
|
|
report_current_position(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -6666,13 +6678,7 @@ inline void invalid_extruder_error(const uint8_t &e) { |
|
|
SERIAL_ECHOLN(MSG_INVALID_EXTRUDER); |
|
|
SERIAL_ECHOLN(MSG_INVALID_EXTRUDER); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/**
|
|
|
void tool_change(const uint8_t tmp_extruder, const float fr_mm_m/*=0.0*/, bool no_move/*=false*/) { |
|
|
* T0-T3: Switch tool, usually switching extruders |
|
|
|
|
|
* |
|
|
|
|
|
* F[units/min] Set the movement feedrate |
|
|
|
|
|
* S1 Don't move the tool in XY after change |
|
|
|
|
|
*/ |
|
|
|
|
|
inline void gcode_T(uint8_t tmp_extruder) { |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1 |
|
|
#if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1 |
|
|
|
|
|
|
|
@ -6687,14 +6693,6 @@ inline void gcode_T(uint8_t tmp_extruder) { |
|
|
|
|
|
|
|
|
#else //!MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
|
|
|
#else //!MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
|
|
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
|
|
if (DEBUGGING(LEVELING)) { |
|
|
|
|
|
SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder); |
|
|
|
|
|
SERIAL_ECHOLNPGM(")"); |
|
|
|
|
|
DEBUG_POS("BEFORE", current_position); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if HOTENDS > 1 |
|
|
#if HOTENDS > 1 |
|
|
|
|
|
|
|
|
if (tmp_extruder >= EXTRUDERS) { |
|
|
if (tmp_extruder >= EXTRUDERS) { |
|
@ -6704,16 +6702,9 @@ inline void gcode_T(uint8_t tmp_extruder) { |
|
|
|
|
|
|
|
|
float old_feedrate_mm_m = feedrate_mm_m; |
|
|
float old_feedrate_mm_m = feedrate_mm_m; |
|
|
|
|
|
|
|
|
if (code_seen('F')) { |
|
|
feedrate_mm_m = fr_mm_m > 0.0 ? (old_feedrate_mm_m = fr_mm_m) : XY_PROBE_FEEDRATE_MM_M; |
|
|
float next_feedrate_mm_m = code_value_axis_units(X_AXIS); |
|
|
|
|
|
if (next_feedrate_mm_m > 0.0) old_feedrate_mm_m = feedrate_mm_m = next_feedrate_mm_m; |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
feedrate_mm_m = XY_PROBE_FEEDRATE_MM_M; |
|
|
|
|
|
|
|
|
|
|
|
if (tmp_extruder != active_extruder) { |
|
|
if (tmp_extruder != active_extruder) { |
|
|
bool no_move = code_seen('S') && code_value_bool(); |
|
|
|
|
|
|
|
|
|
|
|
if (!no_move && axis_unhomed_error(true, true, true)) { |
|
|
if (!no_move && axis_unhomed_error(true, true, true)) { |
|
|
SERIAL_ECHOLNPGM("No move on toolchange"); |
|
|
SERIAL_ECHOLNPGM("No move on toolchange"); |
|
|
no_move = true; |
|
|
no_move = true; |
|
@ -6970,18 +6961,49 @@ inline void gcode_T(uint8_t tmp_extruder) { |
|
|
|
|
|
|
|
|
#endif // HOTENDS <= 1
|
|
|
#endif // HOTENDS <= 1
|
|
|
|
|
|
|
|
|
|
|
|
SERIAL_ECHO_START; |
|
|
|
|
|
SERIAL_ECHOPGM(MSG_ACTIVE_EXTRUDER); |
|
|
|
|
|
SERIAL_PROTOCOLLN((int)active_extruder); |
|
|
|
|
|
|
|
|
|
|
|
#endif //!MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* T0-T3: Switch tool, usually switching extruders |
|
|
|
|
|
* |
|
|
|
|
|
* F[units/min] Set the movement feedrate |
|
|
|
|
|
* S1 Don't move the tool in XY after change |
|
|
|
|
|
*/ |
|
|
|
|
|
inline void gcode_T(uint8_t tmp_extruder) { |
|
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
if (DEBUGGING(LEVELING)) { |
|
|
if (DEBUGGING(LEVELING)) { |
|
|
DEBUG_POS("AFTER", current_position); |
|
|
SERIAL_ECHOPAIR(">>> gcode_T(", tmp_extruder); |
|
|
SERIAL_ECHOLNPGM("<<< gcode_T"); |
|
|
SERIAL_ECHOLNPGM(")"); |
|
|
|
|
|
DEBUG_POS("BEFORE", current_position); |
|
|
} |
|
|
} |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
SERIAL_ECHO_START; |
|
|
#if HOTENDS == 1 || (ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1) |
|
|
SERIAL_ECHOPGM(MSG_ACTIVE_EXTRUDER); |
|
|
|
|
|
SERIAL_PROTOCOLLN((int)active_extruder); |
|
|
|
|
|
|
|
|
|
|
|
#endif //!MIXING_EXTRUDER || MIXING_VIRTUAL_TOOLS <= 1
|
|
|
tool_change(tmp_extruder); |
|
|
|
|
|
|
|
|
|
|
|
#elif HOTENDS > 1 |
|
|
|
|
|
|
|
|
|
|
|
tool_change( |
|
|
|
|
|
tmp_extruder, |
|
|
|
|
|
code_seen('F') ? code_value_axis_units(X_AXIS) : 0.0, |
|
|
|
|
|
(tmp_extruder == active_extruder) || (code_seen('S') && code_value_bool()) |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
|
|
if (DEBUGGING(LEVELING)) { |
|
|
|
|
|
DEBUG_POS("AFTER", current_position); |
|
|
|
|
|
SERIAL_ECHOLNPGM("<<< gcode_T"); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|