mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 08:08:25 +00:00
Anycubic Kossel Z probe invert fix (#12101)
This commit is contained in:
parent
1a5f2fa2c9
commit
3dbe53283f
1 changed files with 7 additions and 6 deletions
|
@ -21,13 +21,15 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* Choose your version:
|
||||
* Choose your version:
|
||||
*/
|
||||
// normal size or plus?
|
||||
//#define ANYCUBIC_KOSSEL_PLUS
|
||||
//#define ANYCUBIC_KOSSEL_PLUS
|
||||
|
||||
// Anycubic Probe version 1 or 2 see README.md; 0 for no probe
|
||||
#define ANYCUBIC_PROBE_VERSION 0
|
||||
// Heated Bed:
|
||||
|
||||
// Heated Bed:
|
||||
// 0 ... no heated bed
|
||||
// 1 ... aluminium heated bed with "BuildTak-like" sticker
|
||||
// 2 ... ultrabase heated bed
|
||||
|
@ -573,7 +575,6 @@
|
|||
#define PROBE_MANUALLY_STEP 0.05 // mm
|
||||
#endif
|
||||
|
||||
|
||||
#if ENABLED(ANYCUBIC_KOSSEL_PLUS)
|
||||
// Print surface diameter/2 minus unreachable space (avoid collisions with vertical towers).
|
||||
#define DELTA_PRINTABLE_RADIUS 116.0 // mm
|
||||
|
@ -646,11 +647,11 @@
|
|||
// Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
|
||||
#define X_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
|
||||
#define Y_MIN_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
|
||||
#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
|
||||
#define Z_MIN_ENDSTOP_INVERTING (ANYCUBIC_PROBE_VERSION + 0 == 1) // V1 is NO, V2 is NC
|
||||
#define X_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
|
||||
#define Y_MAX_ENDSTOP_INVERTING false // set to true to invert the logic of the endstop.
|
||||
#define Z_MAX_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.
|
||||
#define Z_MIN_PROBE_ENDSTOP_INVERTING Z_MIN_ENDSTOP_INVERTING
|
||||
|
||||
/**
|
||||
* Stepper Drivers
|
||||
|
|
Loading…
Reference in a new issue