File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ Usage notes:
20
20
* Laser mode: ON ($32)
21
21
* Minimum S value: 0.0 ($31)
22
22
* Maximum S value: 1.0 ($30)
23
- * Homing not tested
24
23
* Hard limits not yet ported
25
24
* Control inputs not yet ported (e.g. Cycle Start and Safety Door switches)
26
25
Original file line number Diff line number Diff line change 660
660
661
661
// Define homing/hard limit switch input pins and limit interrupt vectors.
662
662
// NOTE: All limit bit pins must be on the same port, but not on a port with other input pins (CONTROL).
663
- #define LIMIT_DDR LPC_GPIO0 ->FIODIR
664
- #define LIMIT_PIN LPC_GPIO0 ->FIOPIN
665
- #define LIMIT_PORT LPC_GPIO0 ->FIOPIN
663
+ #define LIMIT_DDR LPC_GPIO1 ->FIODIR
664
+ #define LIMIT_PIN LPC_GPIO1 ->FIOPIN
665
+ #define LIMIT_PORT LPC_GPIO1 ->FIOPIN
666
666
#define X_LIMIT_BIT 25 // X-MIN=24, X-MAX=25
667
667
#define Y_LIMIT_BIT 27 // Y-MIN=26, Y-MAX=27
668
668
#define Z_LIMIT_BIT 29 // Z-MIN=28, Z-MAX=29
You can’t perform that action at this time.
0 commit comments