Skip to content

Commit d2aea39

Browse files
committed
Updated config files
1 parent e35c892 commit d2aea39

File tree

2 files changed

+178
-64
lines changed

2 files changed

+178
-64
lines changed

Marlin/Configuration.h

+21-10
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@
412412
#define TEMP_SENSOR_4 0
413413
#define TEMP_SENSOR_5 0
414414
#define TEMP_SENSOR_BED 11 // I'm using SSR. For Standard heater set to 1
415+
#define TEMP_SENSOR_PROBE 0
415416
#define TEMP_SENSOR_CHAMBER 0
416417

417418
// Dummy thermistor constant temperature readings, for use with 998 and 999
@@ -668,12 +669,13 @@
668669
*
669670
* A4988 is assumed for unspecified drivers.
670671
*
671-
* Options: A4988, A5984, DRV8825, LV8729, L6470, TB6560, TB6600, TMC2100,
672+
* Options: A4988, A5984, DRV8825, LV8729, L6470, L6474, POWERSTEP01,
673+
* TB6560, TB6600, TMC2100,
672674
* TMC2130, TMC2130_STANDALONE, TMC2160, TMC2160_STANDALONE,
673675
* TMC2208, TMC2208_STANDALONE, TMC2209, TMC2209_STANDALONE,
674676
* TMC26X, TMC26X_STANDALONE, TMC2660, TMC2660_STANDALONE,
675677
* TMC5130, TMC5130_STANDALONE, TMC5160, TMC5160_STANDALONE
676-
* :['A4988', 'A5984', 'DRV8825', 'LV8729', 'L6470', 'TB6560', 'TB6600', 'TMC2100', 'TMC2130', 'TMC2130_STANDALONE', 'TMC2160', 'TMC2160_STANDALONE', 'TMC2208', 'TMC2208_STANDALONE', 'TMC2209', 'TMC2209_STANDALONE', 'TMC26X', 'TMC26X_STANDALONE', 'TMC2660', 'TMC2660_STANDALONE', 'TMC5130', 'TMC5130_STANDALONE', 'TMC5160', 'TMC5160_STANDALONE']
678+
* :['A4988', 'A5984', 'DRV8825', 'LV8729', 'L6470', 'L6474', 'POWERSTEP01', 'TB6560', 'TB6600', 'TMC2100', 'TMC2130', 'TMC2130_STANDALONE', 'TMC2160', 'TMC2160_STANDALONE', 'TMC2208', 'TMC2208_STANDALONE', 'TMC2209', 'TMC2209_STANDALONE', 'TMC26X', 'TMC26X_STANDALONE', 'TMC2660', 'TMC2660_STANDALONE', 'TMC5130', 'TMC5130_STANDALONE', 'TMC5160', 'TMC5160_STANDALONE']
677679
*/
678680
#define X_DRIVER_TYPE TMC2209_STANDALONE
679681
#define Y_DRIVER_TYPE TMC2209_STANDALONE
@@ -943,7 +945,8 @@
943945
*/
944946
#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
945947

946-
// Certain types of probes need to stay away from edges
948+
// Most probes should stay away from the edges of the bed, but
949+
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
947950
#define MIN_PROBE_EDGE 10
948951

949952
// X and Y axis travel speed (mm/m) between probes
@@ -1060,7 +1063,7 @@
10601063

10611064
//#define UNKNOWN_Z_NO_RAISE // Don't raise Z (lower the bed) if Z is "unknown." For beds that fall when Z is powered off.
10621065

1063-
#define Z_HOMING_HEIGHT 4 // (mm) Minimal Z height before homing (G28) for Z clearance above the bed, clamps, ...
1066+
//#define Z_HOMING_HEIGHT 4 // (mm) Minimal Z height before homing (G28) for Z clearance above the bed, clamps, ...
10641067
// Be sure you have this distance over your Z_MAX_POS in case.
10651068

10661069
// Direction of endstops when homing; 1=MAX, -1=MIN
@@ -1957,10 +1960,11 @@
19571960
// FYSETC variant of the MINI12864 graphic controller with SD support
19581961
// https://wiki.fysetc.com/Mini12864_Panel/
19591962
//
1960-
//#define FYSETC_MINI_12864_X_X // Type C/D/E/F. No tunable RGB Backlight by default
1961-
//#define FYSETC_MINI_12864_1_2 // Type C/D/E/F. Simple RGB Backlight (always on)
1962-
//#define FYSETC_MINI_12864_2_0 // Type A/B. Discreet RGB Backlight
1963-
//#define FYSETC_MINI_12864_2_1 // Type A/B. Neopixel RGB Backlight
1963+
//#define FYSETC_MINI_12864_X_X // Type C/D/E/F. No tunable RGB Backlight by default
1964+
//#define FYSETC_MINI_12864_1_2 // Type C/D/E/F. Simple RGB Backlight (always on)
1965+
//#define FYSETC_MINI_12864_2_0 // Type A/B. Discreet RGB Backlight
1966+
//#define FYSETC_MINI_12864_2_1 // Type A/B. Neopixel RGB Backlight
1967+
//#define FYSETC_GENERIC_12864_1_1 // Larger display with basic ON/OFF backlight.
19641968

19651969
//
19661970
// Factory display for Creality CR-10
@@ -1971,6 +1975,11 @@
19711975
//
19721976
//#define CR10_STOCKDISPLAY
19731977

1978+
//
1979+
// Ender-2 OEM display, a variant of the MKS_MINI_12864
1980+
//
1981+
//#define ENDER2_STOCKDISPLAY
1982+
19741983
//
19751984
// ANET and Tronxy Graphical Controller
19761985
//
@@ -2039,9 +2048,11 @@
20392048
//=============================================================================
20402049

20412050
//
2042-
// DGUS Touch Display with DWIN OS
2051+
// DGUS Touch Display with DWIN OS. (Choose one.)
20432052
//
2044-
//#define DGUS_LCD
2053+
//#define DGUS_LCD_UI_ORIGIN
2054+
//#define DGUS_LCD_UI_FYSETC
2055+
//#define DGUS_LCD_UI_HIPRECY
20452056

20462057
//
20472058
// Touch-screen LCD for Malyan M200 printers

0 commit comments

Comments
 (0)