Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Commit

Permalink
fixed invalid X_MAX_POS/Y_MAX_POS
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Plamann committed Feb 26, 2020
1 parent 65992f3 commit 158709b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -1100,12 +1100,12 @@
#define Y_BED_SIZE 205

// Travel limits (mm) after homing, corresponding to endstop positions.
#define X_MIN_POS -8.5
#define X_MIN_POS -8
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS 272
#define Y_MAX_POS 215
#define Z_MAX_POS 210
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
#define Z_MAX_POS 205

/**
* Software Endstops
Expand Down

0 comments on commit 158709b

Please sign in to comment.