Browse Source

Remove CREALITY_TOUCH

Scott Lahteine 3 years ago
parent
commit
d00c89946d

+ 0
- 5
Marlin/Configuration.h View File

@@ -897,11 +897,6 @@
897 897
 //#define BLTOUCH
898 898
 
899 899
 /**
900
- * Pressure sensor with a BLTouch-like interface
901
- */
902
-//#define CREALITY_TOUCH
903
-
904
-/**
905 900
  * Touch-MI Probe by hotends.fr
906 901
  *
907 902
  * This probe is deployed and activated by moving the X-axis to a magnet at the edge of the bed.

+ 3
- 10
Marlin/src/feature/bltouch.h View File

@@ -30,16 +30,9 @@
30 30
 // BLTouch commands are sent as servo angles
31 31
 typedef unsigned char BLTCommand;
32 32
 
33
-#if ENABLED(CREALITY_TOUCH)
34
-  #define STOW_ALARM         false
35
-  #define BLTOUCH_DEPLOY       170
36
-  #define BLTOUCH_STOW          20
37
-#else
38
-  #define STOW_ALARM          true
39
-  #define BLTOUCH_DEPLOY        10
40
-  #define BLTOUCH_STOW          90
41
-#endif
42
-
33
+#define STOW_ALARM            true
34
+#define BLTOUCH_DEPLOY          10
35
+#define BLTOUCH_STOW            90
43 36
 #define BLTOUCH_SW_MODE         60
44 37
 #define BLTOUCH_SELFTEST       120
45 38
 #define BLTOUCH_MODE_STORE     130

+ 0
- 5
Marlin/src/inc/Conditionals_LCD.h View File

@@ -653,11 +653,6 @@
653 653
   #define SERIAL_CATCHALL 0
654 654
 #endif
655 655
 
656
-// Pressure sensor with a BLTouch-like interface
657
-#if ENABLED(CREALITY_TOUCH)
658
-  #define BLTOUCH
659
-#endif
660
-
661 656
 /**
662 657
  * The BLTouch Probe emulates a servo probe
663 658
  * and uses "special" angles for its state.

+ 1
- 2
Marlin/src/inc/SanityCheck.h View File

@@ -1255,8 +1255,7 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
1255 1255
  */
1256 1256
 #if 1 < 0 \
1257 1257
   + (DISABLED(BLTOUCH) && HAS_Z_SERVO_PROBE) \
1258
-  + (ENABLED(BLTOUCH) && DISABLED(CREALITY_TOUCH)) \
1259
-  + COUNT_ENABLED(PROBE_MANUALLY, FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, CREALITY_TOUCH, TOUCH_MI_PROBE, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, RACK_AND_PINION_PROBE, SENSORLESS_PROBING)
1258
+  + COUNT_ENABLED(PROBE_MANUALLY, BLTOUCH, FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, TOUCH_MI_PROBE, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, RACK_AND_PINION_PROBE, SENSORLESS_PROBING)
1260 1259
   #error "Please enable only one probe option: PROBE_MANUALLY, SENSORLESS_PROBING, BLTOUCH, FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, TOUCH_MI_PROBE, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
1261 1260
 #endif
1262 1261
 

Loading…
Cancel
Save