Skip to content

Commit

Permalink
Fixes for temp kinematics
Browse files Browse the repository at this point in the history
  • Loading branch information
smiksky committed Feb 5, 2024
1 parent 6bda457 commit 3f864d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -1819,16 +1819,16 @@
// @section geometry

// The size of the printable area
#define X_BED_SIZE 235
#define X_BED_SIZE 220
#define Y_BED_SIZE 235

// Travel limits (linear=mm, rotational=°) after homing, corresponding to endstop positions.
#define X_MIN_POS 12.5
#define Y_MIN_POS 2.5
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE+50
#define Y_MAX_POS Y_BED_SIZE+50
#define Z_MAX_POS 250+100
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
#define Z_MAX_POS 250
//#define I_MIN_POS 0
//#define I_MAX_POS 50
//#define J_MIN_POS 0
Expand Down

0 comments on commit 3f864d7

Please sign in to comment.