mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 15:39:31 +00:00
Fix bed size and max z pos for Ender-2 (#10603)
This commit is contained in:
parent
12b9bbaa50
commit
50ff4cf157
1 changed files with 3 additions and 3 deletions
|
@ -818,8 +818,8 @@
|
|||
// @section machine
|
||||
|
||||
// The size of the print bed
|
||||
#define X_BED_SIZE 320
|
||||
#define Y_BED_SIZE 320
|
||||
#define X_BED_SIZE 150
|
||||
#define Y_BED_SIZE 150
|
||||
|
||||
// Travel limits (mm) after homing, corresponding to endstop positions.
|
||||
#define X_MIN_POS 0
|
||||
|
@ -827,7 +827,7 @@
|
|||
#define Z_MIN_POS 0
|
||||
#define X_MAX_POS X_BED_SIZE
|
||||
#define Y_MAX_POS Y_BED_SIZE
|
||||
#define Z_MAX_POS 420
|
||||
#define Z_MAX_POS 200
|
||||
|
||||
/**
|
||||
* Software Endstops
|
||||
|
|
Loading…
Reference in a new issue