mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
Use 'target_extruder' in M104 as with M109 (#12448)
This commit is contained in:
parent
66580f32c2
commit
56a94c2a26
@ -43,22 +43,22 @@ void GcodeSuite::M104() {
|
|||||||
if (DEBUGGING(DRYRUN)) return;
|
if (DEBUGGING(DRYRUN)) return;
|
||||||
|
|
||||||
#if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
|
#if ENABLED(MIXING_EXTRUDER) && MIXING_VIRTUAL_TOOLS > 1
|
||||||
constexpr int8_t e = 0;
|
constexpr int8_t target_extruder = 0;
|
||||||
#else
|
#else
|
||||||
const int8_t e = get_target_extruder_from_command();
|
const int8_t target_extruder = get_target_extruder_from_command();
|
||||||
if (e < 0) return;
|
if (target_extruder < 0) return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (parser.seenval('S')) {
|
if (parser.seenval('S')) {
|
||||||
const int16_t temp = parser.value_celsius();
|
const int16_t temp = parser.value_celsius();
|
||||||
#if ENABLED(SINGLENOZZLE)
|
#if ENABLED(SINGLENOZZLE)
|
||||||
singlenozzle_temp[e] = temp;
|
singlenozzle_temp[target_extruder] = temp;
|
||||||
if (e != active_extruder) return;
|
if (target_extruder != active_extruder) return;
|
||||||
#endif
|
#endif
|
||||||
thermalManager.setTargetHotend(temp, e);
|
thermalManager.setTargetHotend(temp, target_extruder);
|
||||||
|
|
||||||
#if ENABLED(DUAL_X_CARRIAGE)
|
#if ENABLED(DUAL_X_CARRIAGE)
|
||||||
if (dxc_is_duplicating() && e == 0)
|
if (dxc_is_duplicating() && target_extruder == 0)
|
||||||
thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
|
thermalManager.setTargetHotend(temp ? temp + duplicate_extruder_temp_offset : 0, 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user