mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-20 00:22:29 +00:00
Fix Vellemann K8400 Configuration (#11258)
The maximum movement is 180mm for Velleman K8400. An offset of `Y_MIN_POS` violates an assertion in `SanityCheck.h`. Code tested on Vellemann K8400 with Dual Extruder.
This commit is contained in:
parent
1067c43107
commit
256f76d35e
2 changed files with 3 additions and 3 deletions
|
@ -846,7 +846,7 @@
|
|||
|
||||
// The size of the print bed
|
||||
#define X_BED_SIZE 200
|
||||
#define Y_BED_SIZE 200
|
||||
#define Y_BED_SIZE 180
|
||||
|
||||
// Travel limits (mm) after homing, corresponding to endstop positions.
|
||||
#define X_MIN_POS 0
|
||||
|
|
|
@ -846,11 +846,11 @@
|
|||
|
||||
// The size of the print bed
|
||||
#define X_BED_SIZE 200
|
||||
#define Y_BED_SIZE 200
|
||||
#define Y_BED_SIZE 180
|
||||
|
||||
// Travel limits (mm) after homing, corresponding to endstop positions.
|
||||
#define X_MIN_POS 0
|
||||
#define Y_MIN_POS 20
|
||||
#define Y_MIN_POS 0
|
||||
#define Z_MIN_POS 0
|
||||
#define X_MAX_POS X_BED_SIZE
|
||||
#define Y_MAX_POS Y_BED_SIZE
|
||||
|
|
Loading…
Reference in a new issue