Skip to content

Commit d57207b

Browse files
committed
📅 Bring some up to date
1 parent b8ef003 commit d57207b

14 files changed

Lines changed: 105 additions & 83 deletions

File tree

‎config/examples/3DFabXYZ/Migbot/Configuration.h‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3079,6 +3079,9 @@
30793079
* - Download https://github.com/InsanityAutomation/Marlin/raw/CrealityDwin2.0_Bleeding/TM3D_Combined480272_Landscape_V7.7z
30803080
* - Copy the downloaded DWIN_SET folder to the SD card.
30813081
*
3082+
* CREALITY_TOUCH
3083+
* - CR-6 OEM touch screen. A DWIN display with touch.
3084+
*
30823085
* Flash display with DGUS Displays for Marlin:
30833086
* - Format the SD card to FAT32 with an allocation size of 4kb.
30843087
* - Download files as specified for your type of display.

‎config/examples/3DFabXYZ/Migbot/Configuration_adv.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2708,7 +2708,7 @@
27082708
//#define PARK_HEAD_ON_PAUSE // Park the nozzle during pause and filament change.
27092709
//#define HOME_BEFORE_FILAMENT_CHANGE // If needed, home before parking for filament change
27102710

2711-
#define FILAMENT_LOAD_UNLOAD_GCODES // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
2711+
#define FILAMENT_LOAD_UNLOAD_GCODES // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
27122712
//#define FILAMENT_UNLOAD_ALL_EXTRUDERS // Allow M702 to unload all extruders above a minimum target temp (as set by M302)
27132713
#endif
27142714

‎config/examples/Creality/CR-20/RepRapWorld Minitronics20/Configuration_adv.h‎

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,14 +1087,16 @@
10871087
//#define INPUT_SHAPING_Y
10881088
#if EITHER(INPUT_SHAPING_X, INPUT_SHAPING_Y)
10891089
#if ENABLED(INPUT_SHAPING_X)
1090-
#define SHAPING_FREQ_X 40 // (Hz) The default dominant resonant frequency on the X axis.
1091-
#define SHAPING_ZETA_X 0.15f // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
1090+
#define SHAPING_FREQ_X 40 // (Hz) The default dominant resonant frequency on the X axis.
1091+
#define SHAPING_ZETA_X 0.15f // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
10921092
#endif
10931093
#if ENABLED(INPUT_SHAPING_Y)
1094-
#define SHAPING_FREQ_Y 40 // (Hz) The default dominant resonant frequency on the Y axis.
1095-
#define SHAPING_ZETA_Y 0.15f // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
1094+
#define SHAPING_FREQ_Y 40 // (Hz) The default dominant resonant frequency on the Y axis.
1095+
#define SHAPING_ZETA_Y 0.15f // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
10961096
#endif
1097-
//#define SHAPING_MENU // Add a menu to the LCD to set shaping parameters.
1097+
//#define SHAPING_MIN_FREQ 20 // By default the minimum of the shaping frequencies. Override to affect SRAM usage.
1098+
//#define SHAPING_MAX_STEPRATE 10000 // By default the maximum total step rate of the shaped axes. Override to affect SRAM usage.
1099+
//#define SHAPING_MENU // Add a menu to the LCD to set shaping parameters.
10981100
#endif
10991101

11001102
#define AXIS_RELATIVE_MODES { false, false, false, false }

‎config/examples/Creality/CR-6 SE/Configuration.h‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3069,6 +3069,11 @@
30693069
//#define LCD_SCREEN_ROTATE 90 // Portrait Mode or 800x480 displays
30703070
#endif
30713071

3072+
//
3073+
// CR-6 OEM touch screen. A DWIN display with touch.
3074+
//
3075+
//#define DWIN_CREALITY_TOUCHLCD
3076+
30723077
//
30733078
// Touch-screen LCD for Malyan M200/M300 printers
30743079
//

‎config/examples/Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration.h‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1261,9 +1261,9 @@
12611261
* M204 I Angular Acceleration
12621262
* M204 J Angular Travel Acceleration
12631263
*/
1264-
#define DEFAULT_ACCELERATION 200 // X, Y, Z and E acceleration for printing moves
1265-
#define DEFAULT_RETRACT_ACCELERATION 1000 // E acceleration for retracts
1266-
#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration for travel (non printing) moves
1264+
#define DEFAULT_ACCELERATION 200 // X, Y, Z and E acceleration for printing moves
1265+
#define DEFAULT_RETRACT_ACCELERATION 1000 // E acceleration for retracts
1266+
#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration for travel (non printing) moves
12671267
#if ENABLED(AXIS4_ROTATES)
12681268
#define DEFAULT_ANGULAR_ACCELERATION 3000 // I, J, K acceleration for rotational-only printing moves
12691269
#define DEFAULT_ANGULAR_TRAVEL_ACCELERATION 3000 // I, J, K acceleration for rotational-only travel (non printing) moves

‎config/examples/Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration_adv.h‎

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,14 +1067,13 @@
10671067
*
10681068
* Zero Vibration (ZV) Input Shaping for X and/or Y movements.
10691069
*
1070-
* This option uses a lot of SRAM for the step buffer, which is related to the
1071-
* largest step rate possible for the shaped axes. If the build fails due to
1072-
* low SRAM the buffer size may be reduced by setting smaller values for
1073-
* DEFAULT_AXIS_STEPS_PER_UNIT and/or DEFAULT_MAX_FEEDRATE. Disabling
1074-
* ADAPTIVE_STEP_SMOOTHING and reducing the step rate for non-shaped axes may
1075-
* also reduce the buffer sizes. Runtime editing of max feedrate (M203) or
1076-
* resonant frequency (M593) may result in input shaping losing effectiveness
1077-
* during high speed movements to prevent buffer overruns.
1070+
* This option uses a lot of SRAM for the step buffer. The buffer size is
1071+
* calculated automatically from SHAPING_FREQ_[XY], DEFAULT_AXIS_STEPS_PER_UNIT,
1072+
* DEFAULT_MAX_FEEDRATE and ADAPTIVE_STEP_SMOOTHING. The default calculation can
1073+
* be overridden by setting SHAPING_MIN_FREQ and/or SHAPING_MAX_FEEDRATE.
1074+
* The higher the frequency and the lower the feedrate, the smaller the buffer.
1075+
* If the buffer is too small at runtime, input shaping will have reduced
1076+
* effectiveness during high speed movements.
10781077
*
10791078
* Tune with M593 D<factor> F<frequency>:
10801079
*
@@ -1088,14 +1087,16 @@
10881087
//#define INPUT_SHAPING_Y
10891088
#if EITHER(INPUT_SHAPING_X, INPUT_SHAPING_Y)
10901089
#if ENABLED(INPUT_SHAPING_X)
1091-
#define SHAPING_FREQ_X 40 // (Hz) The default dominant resonant frequency on the X axis.
1092-
#define SHAPING_ZETA_X 0.15f // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
1090+
#define SHAPING_FREQ_X 40 // (Hz) The default dominant resonant frequency on the X axis.
1091+
#define SHAPING_ZETA_X 0.15f // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
10931092
#endif
10941093
#if ENABLED(INPUT_SHAPING_Y)
1095-
#define SHAPING_FREQ_Y 40 // (Hz) The default dominant resonant frequency on the Y axis.
1096-
#define SHAPING_ZETA_Y 0.15f // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
1094+
#define SHAPING_FREQ_Y 40 // (Hz) The default dominant resonant frequency on the Y axis.
1095+
#define SHAPING_ZETA_Y 0.15f // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
10971096
#endif
1098-
//#define SHAPING_MENU // Add a menu to the LCD to set shaping parameters.
1097+
//#define SHAPING_MIN_FREQ 20 // By default the minimum of the shaping frequencies. Override to affect SRAM usage.
1098+
//#define SHAPING_MAX_STEPRATE 10000 // By default the maximum total step rate of the shaped axes. Override to affect SRAM usage.
1099+
//#define SHAPING_MENU // Add a menu to the LCD to set shaping parameters.
10991100
#endif
11001101

11011102
#define AXIS_RELATIVE_MODES { false, false, false, false }

‎config/examples/Elegoo/Neptune 2/Configuration.h‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2245,7 +2245,7 @@
22452245
* - Allows Z homing only when XY positions are known and trusted.
22462246
* - If stepper drivers sleep, XY homing may be required again before Z homing.
22472247
*/
2248-
#ifdef BLTOUCH
2248+
#if ENABLED(BLTOUCH)
22492249
#define Z_SAFE_HOMING
22502250
#endif
22512251

‎config/examples/Eryone/Thinker SE/Configuration.h‎

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,13 +1283,17 @@
12831283
* M204 J Angular Travel Acceleration
12841284
*/
12851285
#ifdef THINKERV2_Direct
1286-
#define DEFAULT_ACCELERATION 700 // X, Y, Z and E acceleration for printing moves
1287-
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1288-
#define DEFAULT_TRAVEL_ACCELERATION 750 // X, Y, Z acceleration for travel (non printing) moves
1286+
#define DEFAULT_ACCELERATION 700 // X, Y, Z and E acceleration for printing moves
1287+
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1288+
#define DEFAULT_TRAVEL_ACCELERATION 750 // X, Y, Z acceleration for travel (non printing) moves
12891289
#else
1290-
#define DEFAULT_ACCELERATION 1250 // X, Y, Z and E acceleration for printing moves
1291-
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1292-
#define DEFAULT_TRAVEL_ACCELERATION 1500 // X, Y, Z acceleration for travel (non printing) moves
1290+
#define DEFAULT_ACCELERATION 1250 // X, Y, Z and E acceleration for printing moves
1291+
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1292+
#define DEFAULT_TRAVEL_ACCELERATION 1500 // X, Y, Z acceleration for travel (non printing) moves
1293+
#endif
1294+
#if ENABLED(AXIS4_ROTATES)
1295+
#define DEFAULT_ANGULAR_ACCELERATION 3000 // I, J, K acceleration for rotational-only printing moves
1296+
#define DEFAULT_ANGULAR_TRAVEL_ACCELERATION 3000 // I, J, K acceleration for rotational-only travel (non printing) moves
12931297
#endif
12941298

12951299
/**
@@ -1677,13 +1681,13 @@
16771681
*/
16781682
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
16791683
#if ENABLED(PROBING_HEATERS_OFF)
1680-
#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
1684+
#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
16811685
//#define WAIT_FOR_HOTEND // Wait for hotend to heat back up between probes (to improve accuracy & prevent cold extrude)
16821686
#endif
1683-
#define PROBING_FANS_OFF // Turn fans off when probing
1687+
#define PROBING_FANS_OFF // Turn fans off when probing
16841688
//#define PROBING_ESTEPPERS_OFF // Turn all extruder steppers off when probing
16851689
//#define PROBING_STEPPERS_OFF // Turn all steppers off (unless needed to hold position) when probing (including extruders)
1686-
#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
1690+
#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
16871691

16881692
// Require minimum nozzle and/or bed temperature for probing
16891693
//#define PREHEAT_BEFORE_PROBING
@@ -1859,23 +1863,19 @@
18591863
* RAMPS-based boards use SERVO3_PIN for the first runout sensor.
18601864
* For other boards you may need to define FIL_RUNOUT_PIN, FIL_RUNOUT2_PIN, etc.
18611865
*/
1862-
18631866
#ifdef THINKERV2_FL
18641867
#define FILAMENT_RUNOUT_SENSOR
1865-
#else
1866-
//#define FILAMENT_RUNOUT_SENSOR
18671868
#endif
1868-
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
1869-
#define FIL_RUNOUT_ENABLED_DEFAULT true // Enable the sensor on startup. Override with M412 followed by M500.
1870-
#define NUM_RUNOUT_SENSORS 1 // Number of sensors, up to one per extruder. Define a FIL_RUNOUT#_PIN for each.
1869+
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
1870+
#define FIL_RUNOUT_ENABLED_DEFAULT true // Enable the sensor on startup. Override with M412 followed by M500.
1871+
#define NUM_RUNOUT_SENSORS 1 // Number of sensors, up to one per extruder. Define a FIL_RUNOUT#_PIN for each.
18711872

1872-
#define FIL_RUNOUT_STATE HIGH // Pin state indicating that filament is NOT present.
1873-
#define FIL_RUNOUT_PULLUP // Use internal pullup for filament runout pins.
1873+
#define FIL_RUNOUT_STATE HIGH // Pin state indicating that filament is NOT present.
1874+
#define FIL_RUNOUT_PULLUP // Use internal pullup for filament runout pins.
18741875
//#define FIL_RUNOUT_PULLDOWN // Use internal pulldown for filament runout pins.
18751876
//#define WATCH_ALL_RUNOUT_SENSORS // Execute runout script on any triggering sensor, not only for the active extruder.
18761877
// This is automatically enabled for MIXING_EXTRUDERs.
18771878

1878-
18791879
// Override individually if the runout sensors vary
18801880
//#define FIL_RUNOUT1_STATE LOW
18811881
//#define FIL_RUNOUT1_PULLUP
@@ -2217,7 +2217,6 @@
22172217
* - Allows Z homing only when XY positions are known and trusted.
22182218
* - If stepper drivers sleep, XY homing may be required again before Z homing.
22192219
*/
2220-
//
22212220
#if EITHER(BLTOUCH, FIX_MOUNTED_PROBE)
22222221
#define Z_SAFE_HOMING
22232222
#endif

‎config/examples/Eryone/Thinker SE/Configuration_adv.h‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2087,10 +2087,10 @@
20872087
//#define BABYSTEP_XY // Also enable X/Y Babystepping. Not supported on DELTA!
20882088
#define BABYSTEP_INVERT_Z false // Change if Z babysteps should go the other way
20892089
//#define BABYSTEP_MILLIMETER_UNITS // Specify BABYSTEP_MULTIPLICATOR_(XY|Z) in mm instead of micro-steps
2090-
#ifdef BLTOUCH
2091-
#define BABYSTEP_MULTIPLICATOR_Z 0.5 // (steps or mm) Steps or millimeter distance for each Z babystep
2090+
#if ENABLED(BLTOUCH)
2091+
#define BABYSTEP_MULTIPLICATOR_Z 0.5 // (steps or mm) Steps or millimeter distance for each Z babystep
20922092
#else
2093-
#define BABYSTEP_MULTIPLICATOR_Z 1 // (steps or mm) Steps or millimeter distance for each Z babystep
2093+
#define BABYSTEP_MULTIPLICATOR_Z 1 // (steps or mm) Steps or millimeter distance for each Z babystep
20942094
#endif
20952095
#define BABYSTEP_MULTIPLICATOR_XY 1 // (steps or mm) Steps or millimeter distance for each XY babystep
20962096

@@ -2106,9 +2106,9 @@
21062106

21072107
//#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28
21082108

2109-
#ifdef BLTOUCH
2110-
#define BABYSTEP_ZPROBE_OFFSET
2111-
#endif // Combine M851 Z and Babystepping
2109+
#if ENABLED(BLTOUCH)
2110+
#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
2111+
#endif
21122112
//#define BABYSTEP_GLOBAL_Z // Combine M424 Z and Babystepping
21132113

21142114
#if EITHER(BABYSTEP_ZPROBE_OFFSET, BABYSTEP_GLOBAL_Z)

‎config/examples/Eryone/Thinker V2/Configuration.h‎

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,12 @@
141141
//#define BLUETOOTH
142142

143143
// Name displayed in the LCD "Ready" message and Info menu
144-
#if ANY (THINKERV2_BL, THINKERV2_FL, THINKERV2_Direct)
145-
#define CUSTOM_MACHINE_NAME "THINKER V2 MOD"
144+
#if ANY(THINKERV2_BL, THINKERV2_FL, THINKERV2_Direct)
145+
#define CUSTOM_MACHINE_NAME "THINKER V2 MOD"
146146
#else
147147
#define CUSTOM_MACHINE_NAME "THINKER V2"
148148
#endif
149+
149150
// Printer's unique ID, used by some programs to differentiate between machines.
150151
// Choose your own or use a service like https://www.uuidgenerator.net/version4
151152
//#define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
@@ -1245,10 +1246,11 @@
12451246
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
12461247
*/
12471248
#ifdef THINKERV2_Direct
1248-
#define DEFAULT_MAX_FEEDRATE { 200, 200, 35, 100 }
1249+
#define DEFAULT_MAX_FEEDRATE { 200, 200, 35, 100 }
12491250
#else
1250-
#define DEFAULT_MAX_FEEDRATE { 300, 300, 35, 25 }
1251+
#define DEFAULT_MAX_FEEDRATE { 300, 300, 35, 25 }
12511252
#endif
1253+
12521254
//#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2
12531255
#if ENABLED(LIMITED_MAX_FR_EDITING)
12541256
#define MAX_FEEDRATE_EDIT_VALUES { 600, 600, 10, 50 } // ...or, set your own edit limits
@@ -1261,9 +1263,9 @@
12611263
* X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
12621264
*/
12631265
#ifdef THINKERV2_Direct
1264-
#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 150, 3000 }
1266+
#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 150, 3000 }
12651267
#else
1266-
#define DEFAULT_MAX_ACCELERATION { 1500, 1500, 150, 1500 }
1268+
#define DEFAULT_MAX_ACCELERATION { 1500, 1500, 150, 1500 }
12671269
#endif
12681270

12691271
//#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
@@ -1282,13 +1284,17 @@
12821284
* M204 J Angular Travel Acceleration
12831285
*/
12841286
#ifdef THINKERV2_Direct
1285-
#define DEFAULT_ACCELERATION 700 // X, Y, Z and E acceleration for printing moves
1286-
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1287-
#define DEFAULT_TRAVEL_ACCELERATION 750 // X, Y, Z acceleration for travel (non printing) moves
1287+
#define DEFAULT_ACCELERATION 700 // X, Y, Z and E acceleration for printing moves
1288+
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1289+
#define DEFAULT_TRAVEL_ACCELERATION 750 // X, Y, Z acceleration for travel (non printing) moves
12881290
#else
1289-
#define DEFAULT_ACCELERATION 1250 // X, Y, Z and E acceleration for printing moves
1290-
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1291-
#define DEFAULT_TRAVEL_ACCELERATION 1500 // X, Y, Z acceleration for travel (non printing) moves
1291+
#define DEFAULT_ACCELERATION 1250 // X, Y, Z and E acceleration for printing moves
1292+
#define DEFAULT_RETRACT_ACCELERATION 1250 // E acceleration for retracts
1293+
#define DEFAULT_TRAVEL_ACCELERATION 1500 // X, Y, Z acceleration for travel (non printing) moves
1294+
#endif
1295+
#if ENABLED(AXIS4_ROTATES)
1296+
#define DEFAULT_ANGULAR_ACCELERATION 3000 // I, J, K acceleration for rotational-only printing moves
1297+
#define DEFAULT_ANGULAR_TRAVEL_ACCELERATION 3000 // I, J, K acceleration for rotational-only travel (non printing) moves
12921298
#endif
12931299

12941300
/**
@@ -1675,13 +1681,13 @@
16751681
*/
16761682
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
16771683
#if ENABLED(PROBING_HEATERS_OFF)
1678-
#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
1684+
#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
16791685
//#define WAIT_FOR_HOTEND // Wait for hotend to heat back up between probes (to improve accuracy & prevent cold extrude)
16801686
#endif
1681-
#define PROBING_FANS_OFF // Turn fans off when probing
1687+
#define PROBING_FANS_OFF // Turn fans off when probing
16821688
//#define PROBING_ESTEPPERS_OFF // Turn all extruder steppers off when probing
16831689
//#define PROBING_STEPPERS_OFF // Turn all steppers off (unless needed to hold position) when probing (including extruders)
1684-
#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
1690+
#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors
16851691

16861692
// Require minimum nozzle and/or bed temperature for probing
16871693
//#define PREHEAT_BEFORE_PROBING
@@ -1857,11 +1863,8 @@
18571863
* RAMPS-based boards use SERVO3_PIN for the first runout sensor.
18581864
* For other boards you may need to define FIL_RUNOUT_PIN, FIL_RUNOUT2_PIN, etc.
18591865
*/
1860-
18611866
#ifdef THINKERV2_FL
18621867
#define FILAMENT_RUNOUT_SENSOR
1863-
#else
1864-
//#define FILAMENT_RUNOUT_SENSOR
18651868
#endif
18661869
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
18671870
#define FIL_RUNOUT_ENABLED_DEFAULT true // Enable the sensor on startup. Override with M412 followed by M500.

0 commit comments

Comments
 (0)