mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-09 07:56:27 -06:00
🔧 Bring configs up to date
This commit is contained in:
parent
5e8688aa98
commit
6f1ce9abf0
2 changed files with 64 additions and 9 deletions
|
@ -1339,8 +1339,8 @@
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
//#define NO_MOTION_BEFORE_HOMING // Inhibit movement until all axes have been homed
|
//#define NO_MOTION_BEFORE_HOMING // Inhibit movement until all axes have been homed. Also enable HOME_AFTER_DEACTIVATE for extra safety.
|
||||||
|
//#define HOME_AFTER_DEACTIVATE // Require rehoming after steppers are deactivated. Also enable NO_MOTION_BEFORE_HOMING for extra safety.
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set Z_IDLE_HEIGHT if the Z-Axis moves on its own when steppers are disabled.
|
* Set Z_IDLE_HEIGHT if the Z-Axis moves on its own when steppers are disabled.
|
||||||
|
@ -1442,6 +1442,39 @@
|
||||||
//#define WATCH_ALL_RUNOUT_SENSORS // Execute runout script on any triggering sensor, not only for the active extruder.
|
//#define WATCH_ALL_RUNOUT_SENSORS // Execute runout script on any triggering sensor, not only for the active extruder.
|
||||||
// This is automatically enabled for MIXING_EXTRUDERs.
|
// This is automatically enabled for MIXING_EXTRUDERs.
|
||||||
|
|
||||||
|
// Override individually if the runout sensors vary
|
||||||
|
//#define FIL_RUNOUT1_STATE LOW
|
||||||
|
//#define FIL_RUNOUT1_PULLUP
|
||||||
|
//#define FIL_RUNOUT1_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT2_STATE LOW
|
||||||
|
//#define FIL_RUNOUT2_PULLUP
|
||||||
|
//#define FIL_RUNOUT2_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT3_STATE LOW
|
||||||
|
//#define FIL_RUNOUT3_PULLUP
|
||||||
|
//#define FIL_RUNOUT3_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT4_STATE LOW
|
||||||
|
//#define FIL_RUNOUT4_PULLUP
|
||||||
|
//#define FIL_RUNOUT4_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT5_STATE LOW
|
||||||
|
//#define FIL_RUNOUT5_PULLUP
|
||||||
|
//#define FIL_RUNOUT5_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT6_STATE LOW
|
||||||
|
//#define FIL_RUNOUT6_PULLUP
|
||||||
|
//#define FIL_RUNOUT6_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT7_STATE LOW
|
||||||
|
//#define FIL_RUNOUT7_PULLUP
|
||||||
|
//#define FIL_RUNOUT7_PULLDOWN
|
||||||
|
|
||||||
|
//#define FIL_RUNOUT8_STATE LOW
|
||||||
|
//#define FIL_RUNOUT8_PULLUP
|
||||||
|
//#define FIL_RUNOUT8_PULLDOWN
|
||||||
|
|
||||||
// Commands to execute on filament runout.
|
// Commands to execute on filament runout.
|
||||||
// With multiple runout sensors use the %c placeholder for the current tool in commands (e.g., "M600 T%c")
|
// With multiple runout sensors use the %c placeholder for the current tool in commands (e.g., "M600 T%c")
|
||||||
// NOTE: After 'M412 H1' the host handles filament runout and this script does not apply.
|
// NOTE: After 'M412 H1' the host handles filament runout and this script does not apply.
|
||||||
|
@ -1538,6 +1571,9 @@
|
||||||
// at which point movement will be level to the machine's XY plane.
|
// at which point movement will be level to the machine's XY plane.
|
||||||
// The height can be set with M420 Z<height>
|
// The height can be set with M420 Z<height>
|
||||||
#define ENABLE_LEVELING_FADE_HEIGHT
|
#define ENABLE_LEVELING_FADE_HEIGHT
|
||||||
|
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
|
||||||
|
#define DEFAULT_LEVELING_FADE_HEIGHT 10.0 // (mm) Default fade height.
|
||||||
|
#endif
|
||||||
|
|
||||||
// For Cartesian machines, instead of dividing moves on mesh boundaries,
|
// For Cartesian machines, instead of dividing moves on mesh boundaries,
|
||||||
// split up moves into short segments like a Delta. This follows the
|
// split up moves into short segments like a Delta. This follows the
|
||||||
|
@ -1644,6 +1680,31 @@
|
||||||
#define LEVEL_CORNERS_HEIGHT 0.0 // (mm) Z height of nozzle at leveling points
|
#define LEVEL_CORNERS_HEIGHT 0.0 // (mm) Z height of nozzle at leveling points
|
||||||
#define LEVEL_CORNERS_Z_HOP 4.0 // (mm) Z height of nozzle between leveling points
|
#define LEVEL_CORNERS_Z_HOP 4.0 // (mm) Z height of nozzle between leveling points
|
||||||
//#define LEVEL_CENTER_TOO // Move to the center after the last corner
|
//#define LEVEL_CENTER_TOO // Move to the center after the last corner
|
||||||
|
//#define LEVEL_CORNERS_USE_PROBE
|
||||||
|
#if ENABLED(LEVEL_CORNERS_USE_PROBE)
|
||||||
|
#define LEVEL_CORNERS_PROBE_TOLERANCE 0.1
|
||||||
|
#define LEVEL_CORNERS_VERIFY_RAISED // After adjustment triggers the probe, re-probe to verify
|
||||||
|
//#define LEVEL_CORNERS_AUDIO_FEEDBACK
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Corner Leveling Order
|
||||||
|
*
|
||||||
|
* Set 2 or 4 points. When 2 points are given, the 3rd is the center of the opposite edge.
|
||||||
|
*
|
||||||
|
* LF Left-Front RF Right-Front
|
||||||
|
* LB Left-Back RB Right-Back
|
||||||
|
*
|
||||||
|
* Examples:
|
||||||
|
*
|
||||||
|
* Default {LF,RB,LB,RF} {LF,RF} {LB,LF}
|
||||||
|
* LB --------- RB LB --------- RB LB --------- RB LB --------- RB
|
||||||
|
* | 4 3 | | 3 2 | | <3> | | 1 |
|
||||||
|
* | | | | | | | <3>|
|
||||||
|
* | 1 2 | | 1 4 | | 1 2 | | 2 |
|
||||||
|
* LF --------- RF LF --------- RF LF --------- RF LF --------- RF
|
||||||
|
*/
|
||||||
|
#define LEVEL_CORNERS_LEVELING_ORDER { LF, RF, RB, LB }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2521,7 +2582,7 @@
|
||||||
//
|
//
|
||||||
// CR-6 OEM touch screen. A DWIN display with touch.
|
// CR-6 OEM touch screen. A DWIN display with touch.
|
||||||
//
|
//
|
||||||
//#define DGUS_LCD_UI_CREALITY_TOUCH
|
//#define DWIN_CREALITY_TOUCHLCD
|
||||||
|
|
||||||
//
|
//
|
||||||
// Touch-screen LCD for Malyan M200/M300 printers
|
// Touch-screen LCD for Malyan M200/M300 printers
|
||||||
|
|
|
@ -647,12 +647,6 @@
|
||||||
#define DEFAULT_bedKi .023
|
#define DEFAULT_bedKi .023
|
||||||
#define DEFAULT_bedKd 305.4
|
#define DEFAULT_bedKd 305.4
|
||||||
|
|
||||||
// 120V 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)
|
|
||||||
// from pidautotune
|
|
||||||
//#define DEFAULT_bedKp 97.1
|
|
||||||
//#define DEFAULT_bedKi 1.41
|
|
||||||
//#define DEFAULT_bedKd 1675.16
|
|
||||||
|
|
||||||
// FIND YOUR OWN: "M303 E-1 C8 S90" to run autotune on the bed at 90 degreesC for 8 cycles.
|
// FIND YOUR OWN: "M303 E-1 C8 S90" to run autotune on the bed at 90 degreesC for 8 cycles.
|
||||||
#endif // PIDTEMPBED
|
#endif // PIDTEMPBED
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue