Skip to content

Commit 9530df4

Browse files
committed
📝 Update Toolchange FS comments
1 parent 8f8427e commit 9530df4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Marlin/Configuration_adv.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -2417,7 +2417,7 @@
24172417
#if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
24182418
// Load / Unload
24192419
#define TOOLCHANGE_FS_LENGTH 12 // (mm) Load / Unload length
2420-
#define TOOLCHANGE_FS_EXTRA_RESUME_LENGTH 0 // (mm) Extra length for better restart, fine tune by LCD/Gcode)
2420+
#define TOOLCHANGE_FS_EXTRA_RESUME_LENGTH 0 // (mm) Extra length for better restart. Adjust with LCD or M217 B.
24212421
#define TOOLCHANGE_FS_RETRACT_SPEED (50*60) // (mm/min) (Unloading)
24222422
#define TOOLCHANGE_FS_UNRETRACT_SPEED (25*60) // (mm/min) (On SINGLENOZZLE or Bowden loading must be slowed down)
24232423

@@ -2431,12 +2431,12 @@
24312431
#define TOOLCHANGE_FS_FAN_SPEED 255 // 0-255
24322432
#define TOOLCHANGE_FS_FAN_TIME 10 // (seconds)
24332433

2434-
// Swap uninitialized extruder with TOOLCHANGE_FS_PRIME_SPEED for all lengths (recover + prime)
2434+
// Swap uninitialized extruder (using TOOLCHANGE_FS_PRIME_SPEED feedrate)
24352435
// (May break filament if not retracted beforehand.)
24362436
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
24372437

2438-
// Prime on the first T0 (If other, TOOLCHANGE_FS_INIT_BEFORE_SWAP applied)
2439-
// Enable it (M217 V[0/1]) before printing, to avoid unwanted priming on host connect
2438+
// Prime on the first T0 (For other tools use TOOLCHANGE_FS_INIT_BEFORE_SWAP)
2439+
// Enable with M217 V1 before printing to avoid unwanted priming on host connect
24402440
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
24412441

24422442
/**

Marlin/src/libs/nozzle.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Nozzle nozzle;
263263
case 2: do_blocking_move_to_y(park.y, fr_xy); break;
264264
case 3: do_blocking_move_to_x(park.x, fr_xy);
265265
do_blocking_move_to_y(park.y, fr_xy); break;
266-
case 4: do_blocking_move_to_y(park.y, fr_xy);
266+
case 4: do_blocking_move_to_y(park.y, fr_xy);
267267
do_blocking_move_to_x(park.x, fr_xy); break;
268268
}
269269

0 commit comments

Comments
 (0)