Commit 9530df4 1 parent 8f8427e commit 9530df4 Copy full SHA for 9530df4
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2417
2417
#if ENABLED (TOOLCHANGE_FILAMENT_SWAP )
2418
2418
// Load / Unload
2419
2419
#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.
2421
2421
#define TOOLCHANGE_FS_RETRACT_SPEED (50*60) // (mm/min) (Unloading)
2422
2422
#define TOOLCHANGE_FS_UNRETRACT_SPEED (25*60) // (mm/min) (On SINGLENOZZLE or Bowden loading must be slowed down)
2423
2423
2431
2431
#define TOOLCHANGE_FS_FAN_SPEED 255 // 0-255
2432
2432
#define TOOLCHANGE_FS_FAN_TIME 10 // (seconds)
2433
2433
2434
- // Swap uninitialized extruder with TOOLCHANGE_FS_PRIME_SPEED for all lengths (recover + prime )
2434
+ // Swap uninitialized extruder (using TOOLCHANGE_FS_PRIME_SPEED feedrate )
2435
2435
// (May break filament if not retracted beforehand.)
2436
2436
//#define TOOLCHANGE_FS_INIT_BEFORE_SWAP
2437
2437
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
2440
2440
//#define TOOLCHANGE_FS_PRIME_FIRST_USED
2441
2441
2442
2442
/**
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ Nozzle nozzle;
263
263
case 2 : do_blocking_move_to_y (park.y , fr_xy); break ;
264
264
case 3 : do_blocking_move_to_x (park.x , fr_xy);
265
265
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);
267
267
do_blocking_move_to_x (park.x , fr_xy); break ;
268
268
}
269
269
You can’t perform that action at this time.
0 commit comments