Skip to content

Commit 50b7e10

Browse files
authored
Merge pull request MarlinFirmware#7 from MarlinFirmware/bugfix-2.0.x
Bugfix 2.0.x
2 parents db8cbc5 + 2b9842e commit 50b7e10

File tree

144 files changed

+7135
-1247
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+7135
-1247
lines changed

Marlin/Configuration.h

+10-5
Original file line numberDiff line numberDiff line change
@@ -1047,13 +1047,13 @@
10471047
#define PROBING_MARGIN 10
10481048

10491049
// X and Y axis travel speed (mm/min) between probes
1050-
#define XY_PROBE_SPEED (133*60)
1050+
#define XY_PROBE_FEEDRATE (133*60)
10511051

10521052
// Feedrate (mm/min) for the first approach when double-probing (MULTIPLE_PROBING == 2)
1053-
#define Z_PROBE_SPEED_FAST (4*60)
1053+
#define Z_PROBE_FEEDRATE_FAST (4*60)
10541054

10551055
// Feedrate (mm/min) for the "accurate" probe of each point
1056-
#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
1056+
#define Z_PROBE_FEEDRATE_SLOW (Z_PROBE_FEEDRATE_FAST / 2)
10571057

10581058
/**
10591059
* Probe Activation Switch
@@ -1278,6 +1278,8 @@
12781278
#define FIL_RUNOUT_STATE LOW // Pin state indicating that filament is NOT present.
12791279
#define FIL_RUNOUT_PULLUP // Use internal pullup for filament runout pins.
12801280
//#define FIL_RUNOUT_PULLDOWN // Use internal pulldown for filament runout pins.
1281+
//#define WATCH_ALL_RUNOUT_SENSORS // Execute runout script on any triggering sensor, not only for the active extruder.
1282+
// This is automatically enabled for MIXING_EXTRUDERs.
12811283

12821284
// Override individually if the runout sensors vary
12831285
//#define FIL_RUNOUT1_STATE LOW
@@ -1312,8 +1314,9 @@
13121314
//#define FIL_RUNOUT8_PULLUP
13131315
//#define FIL_RUNOUT8_PULLDOWN
13141316

1315-
// Set one or more commands to execute on filament runout.
1316-
// (After 'M412 H' Marlin will ask the host to handle the process.)
1317+
// Commands to execute on filament runout.
1318+
// With multiple runout sensors use the %c placeholder for the current tool in commands (e.g., "M600 T%c")
1319+
// NOTE: After 'M412 H1' the host handles filament runout and this script does not apply.
13171320
#define FILAMENT_RUNOUT_SCRIPT "M600"
13181321

13191322
// After a runout is detected, continue printing this length of filament
@@ -2349,6 +2352,7 @@
23492352
//#define DGUS_LCD_UI_ORIGIN
23502353
//#define DGUS_LCD_UI_FYSETC
23512354
//#define DGUS_LCD_UI_HIPRECY
2355+
//#define DGUS_LCD_UI_MKS
23522356

23532357
//
23542358
// Touch-screen LCD for Malyan M200/M300 printers
@@ -2650,6 +2654,7 @@
26502654
// Use a single NeoPixel LED for static (background) lighting
26512655
//#define NEOPIXEL_BKGD_LED_INDEX 0 // Index of the LED to use
26522656
//#define NEOPIXEL_BKGD_COLOR { 255, 255, 255, 0 } // R, G, B, W
2657+
//#define NEOPIXEL_BKGD_ALWAYS_ON // Keep the backlight on when other NeoPixels are off
26532658
#endif
26542659

26552660
/**

0 commit comments

Comments
 (0)