Skip to content

Instantly share code, notes, and snippets.

@oliof
Created May 12, 2020 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oliof/a1fee3a550c7ad98620e8f21a6f8a898 to your computer and use it in GitHub Desktop.
Save oliof/a1fee3a550c7ad98620e8f21a6f8a898 to your computer and use it in GitHub Desktop.
Config.diff
diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h
index b8d55e1ec6..6bd7c44e4c 100644
--- a/Marlin/Configuration.h
+++ b/Marlin/Configuration.h
@@ -10,7 +10,7 @@
//#define MachineEnder4
//#define MachineCR20 //Buzzer doesnt work
//#define MachineCR20Pro
-//#define MachineCR10S
+#define MachineCR10S
//#define MachineCR10SV2
//#define MachineCR10SPro // Graphics LCD Requires soldering R64 and R66
//#define MachineCR10SProV2 // Second Gen 10S Pro with BLTouch wired to Z Max
@@ -44,7 +44,7 @@
E3D Mounting assumes Groovemount
Creality Mounting assumes bolt-on kit
*/
-//#define HotendStock
+#define HotendStock
//#define HotendE3D
//#define HotendMosquito
@@ -62,7 +62,7 @@
//#define EZRstruder
//#define Bondtech
- //#define E3DTitan
+#define E3DTitan
//#define E3DHemera
//#define CrealityTitan
@@ -74,7 +74,7 @@
ac bed, leave both disabled
*/
//#define BedAC
-//#define BedDC
+#define BedDC
//#define SolidBedMounts //Removed a few LCD options to save some memory since not needed with solid mounts
@@ -84,7 +84,7 @@
*/
//#define ABL_EZABL // TH3D EZABL or Any NO Sensor
//#define ABL_NCSW //Creality ABL or Any NC Sensor
-//#define ABL_BLTOUCH
+#define ABL_BLTOUCH
//#define ABL_TOUCH_MI // Uncomment ABL_TOUCH_MI to use Touch-MI sensor by hotends.fr
//#define CREALITY_ABL_MOUNT //Using creality ABL mount
@@ -97,7 +97,7 @@
*/
//#define OrigLCD // Upgraded mainboard with single cable Ender LCD
-//#define GraphicLCD //Full graphics LCD for Ender 4, CR-X or CR10SPro
+#define GraphicLCD //Full graphics LCD for Ender 4, CR-X or CR10SPro
//#define Big_UI // Lightweight status screen, saves CPU cycles
// Touchscreen options - only 32 bit boards have the open serial ports to use with graphics displays above
@@ -125,7 +125,7 @@
If a probe is enabled and nothing selected here, defaults to Bilinear
*/
//#define ABL_BI
-//#define ABL_UBL
+#define ABL_UBL
/*
For melzi boards these options allow you to cusomize what you want to do.
@@ -146,16 +146,16 @@
//#define SKR13 // 32 bit board - assumes 2208 drivers
//#define SKR14
-//#define SKR14Turbo
+#define SKR14Turbo
//#define SKRPRO11
//#define I2C_EEPROM // use I2C EEPROM on SRK PRO v1.1 e.g AT24C256
//#define SKR14_PowerLossKit // Bigtreetech power loss kit for SKR14
-//#define SKR_2209
-//#define SKR_UART // Configure SKR board with drivers in UART mode
+#define SKR_2209
+#define SKR_UART // Configure SKR board with drivers in UART mode
//#define SKR13_ReverseSteppers // Some users reported directions backwards than others on SKR with various drivers.
-//#define DualZ // Uses 5th driver on CRX or SKR boards as Z2
+#define DualZ // Uses 5th driver on CRX or SKR boards as Z2
/*
*
@@ -166,7 +166,7 @@
//#define Dual_CyclopsSingleNozzle
//#define Dual_ChimeraDualNozzle
-//#define POWER_LOSS_RECOVERY //Large and does not fit with any other features on Melzi, or UBL on Atmega
+#define POWER_LOSS_RECOVERY //Large and does not fit with any other features on Melzi, or UBL on Atmega
//Add filtering to endstops when long extensions are used. Makes homing more reliable but less accurate.
//#define CableExtensionNoiseFilter
@@ -178,7 +178,7 @@
Standard is recommended in most other scenarios.
*/
//#define MeshFast
-//#define MeshStd
+#define MeshStd
//#define MeshFine
//#define MeshExtreme
@@ -1168,7 +1168,7 @@
#define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Z_MIN_PROBE_ENDSTOP_INVERTING false // set to true to invert the logic of the probe.
#else
- #define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
+ #define Z_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
#define Z_MIN_PROBE_ENDSTOP_INVERTING true // set to true to invert the logic of the probe.
#endif
/**
@@ -1461,7 +1461,7 @@
*
* Enable this option for a probe connected to the Z Min endstop pin.
*/
-#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
+// #define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
/**
* Z_MIN_PROBE_PIN
@@ -1479,7 +1479,7 @@
* - normally-open switches to 5V and D32.
*
*/
-//#define Z_MIN_PROBE_PIN 32 // Pin 32 is the RAMPS default
+#define Z_MIN_PROBE_PIN P0_10 // Pin 32 is the RAMPS default
/**
* Probe Type
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment