|
1047 | 1047 | #define PROBING_MARGIN 10
|
1048 | 1048 |
|
1049 | 1049 | // X and Y axis travel speed (mm/min) between probes
|
1050 |
| -#define XY_PROBE_SPEED (133*60) |
| 1050 | +#define XY_PROBE_FEEDRATE (133*60) |
1051 | 1051 |
|
1052 | 1052 | // 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) |
1054 | 1054 |
|
1055 | 1055 | // 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) |
1057 | 1057 |
|
1058 | 1058 | /**
|
1059 | 1059 | * Probe Activation Switch
|
|
1278 | 1278 | #define FIL_RUNOUT_STATE LOW // Pin state indicating that filament is NOT present.
|
1279 | 1279 | #define FIL_RUNOUT_PULLUP // Use internal pullup for filament runout pins.
|
1280 | 1280 | //#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. |
1281 | 1283 |
|
1282 | 1284 | // Override individually if the runout sensors vary
|
1283 | 1285 | //#define FIL_RUNOUT1_STATE LOW
|
|
1312 | 1314 | //#define FIL_RUNOUT8_PULLUP
|
1313 | 1315 | //#define FIL_RUNOUT8_PULLDOWN
|
1314 | 1316 |
|
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. |
1317 | 1320 | #define FILAMENT_RUNOUT_SCRIPT "M600"
|
1318 | 1321 |
|
1319 | 1322 | // After a runout is detected, continue printing this length of filament
|
|
2349 | 2352 | //#define DGUS_LCD_UI_ORIGIN
|
2350 | 2353 | //#define DGUS_LCD_UI_FYSETC
|
2351 | 2354 | //#define DGUS_LCD_UI_HIPRECY
|
| 2355 | +//#define DGUS_LCD_UI_MKS |
2352 | 2356 |
|
2353 | 2357 | //
|
2354 | 2358 | // Touch-screen LCD for Malyan M200/M300 printers
|
|
2650 | 2654 | // Use a single NeoPixel LED for static (background) lighting
|
2651 | 2655 | //#define NEOPIXEL_BKGD_LED_INDEX 0 // Index of the LED to use
|
2652 | 2656 | //#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 |
2653 | 2658 | #endif
|
2654 | 2659 |
|
2655 | 2660 | /**
|
|
0 commit comments