DIFFERENTIAL_EXTRUDER

MarlinFirmware/Marlin#28023
This commit is contained in:
Scott Lahteine 2025-11-16 09:45:24 -06:00
parent af07d2fb5c
commit 6c177a8e48
404 changed files with 4848 additions and 0 deletions

View file

@ -314,6 +314,18 @@
#endif
/**
* Differential Extruder
*
* The X and E steppers work together to create a differential drive system.
* Simple : E steps = X + E ; X steps = X (E drives a loop, X stays the same)
* Balanced: E steps = X + E/2 ; X steps = X - E/2 (Dual loop system)
*/
//#define DIFFERENTIAL_EXTRUDER
#if ENABLED(DIFFERENTIAL_EXTRUDER)
//#define BALANCED_DIFFERENTIAL_EXTRUDER
#endif
/**
* Switching Toolhead
*