mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-12-29 19:00:37 -07:00
refine config
This commit is contained in:
parent
990b2d14f1
commit
8cbc38f61d
1 changed files with 7 additions and 6 deletions
|
|
@ -4290,15 +4290,16 @@
|
|||
|
||||
/**
|
||||
* Freeze / unfreeze functionality
|
||||
* Potentially useful for rapid stop that allows being resumed. Halts stepper movement after decelerating to FREEZE_JERK.
|
||||
* Note this controls laser PWM but does NOT pause spindles, fans, heaters or any other auxiliary devices.
|
||||
* @section interface
|
||||
* Potentially useful for rapid stop that allows being resumed.
|
||||
* Rapidly decelerates and halts movement at FREEZE_JERK.
|
||||
* NOTE: Controls Laser PWM but does NOT pause Spindle, Fans, Heaters or other devices.
|
||||
* @section freeze
|
||||
*/
|
||||
//#define FREEZE_FEATURE
|
||||
#if ENABLED(FREEZE_FEATURE)
|
||||
#define FREEZE_PIN 5 // Override the default (KILL) pin here
|
||||
#define FREEZE_JERK 2 // Completely halt when motion has decelerated below this value
|
||||
#define FREEZE_STATE LOW // State of pin indicating freeze
|
||||
//#define FREEZE_PIN -1 // Override the default (KILL) pin here
|
||||
#define FREEZE_JERK 2 // (mm/s) Completely halt when motion has decelerated below this value
|
||||
#define FREEZE_STATE LOW // State of pin indicating freeze
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue