Skip to content

Commit 0643276

Browse files
authored
✨ Ender-3 Max Neo with BTT SKR MINI E3 v3.0 (#1165)
1 parent 928d735 commit 0643276

File tree

7 files changed

+8643
-3
lines changed

7 files changed

+8643
-3
lines changed

config/default/Configuration_adv.h

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2345,8 +2345,12 @@
23452345
//#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28
23462346

23472347
//#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
2348-
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
2349-
//#define BABYSTEP_HOTEND_Z_OFFSET // For multiple hotends, babystep relative Z offsets
2348+
//#define BABYSTEP_GLOBAL_Z // Combine M424 Z and Babystepping
2349+
2350+
#if ANY(BABYSTEP_ZPROBE_OFFSET, BABYSTEP_GLOBAL_Z)
2351+
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
2352+
//#define BABYSTEP_HOTEND_Z_OFFSET // For multiple hotends, babystep relative Z offsets
2353+
#endif
23502354
//#define BABYSTEP_GFX_OVERLAY // Enable graphical overlay on Z-offset editor
23512355
#endif
23522356
#endif
@@ -3942,6 +3946,14 @@
39423946
*/
39433947
//#define CNC_COORDINATE_SYSTEMS
39443948

3949+
/**
3950+
* CNC Drilling Cycle - UNDER DEVELOPMENT
3951+
*
3952+
* Enables G81 to perform a drilling cycle.
3953+
* Currently only supports a single cycle, no G-code chaining.
3954+
*/
3955+
//#define CNC_DRILLING_CYCLE
3956+
39453957
// @section security
39463958

39473959
/**
@@ -4038,6 +4050,15 @@
40384050
//#define GCODE_QUOTED_STRINGS // Support for quoted string parameters
40394051
#endif
40404052

4053+
/**
4054+
* Variables
4055+
*
4056+
* Define a variable from 100-115 with G-code like '#101=19.6'.
4057+
* A variable can then be used in a G-code expression like 'G0 X[#101+3]'.
4058+
* See https://gcodetutor.com/cnc-macro-programming/cnc-variables.html
4059+
*/
4060+
//#define GCODE_VARIABLES
4061+
40414062
/**
40424063
* Support for MeatPack G-code compression (https://github.com/scottmudge/OctoPrint-MeatPack)
40434064
*/
@@ -4197,7 +4218,7 @@
41974218
#define BUTTON1_WHEN_PRINTING false // Button allowed to trigger during printing?
41984219
#define BUTTON1_GCODE "G28"
41994220
#define BUTTON1_DESC "Homing" // Optional string to set the LCD status
4200-
//#define BUTTON1_IMMEDIATE // Skip the queue and run the G-code immediately. Rarely needed.
4221+
//#define BUTTON1_IMMEDIATE // Skip the queue and execute immediately. Rarely needed.
42014222
#endif
42024223

42034224
//#define BUTTON2_PIN -1

0 commit comments

Comments
 (0)