Comments
Thanks! The limit code is experimental as I have no limit switches to test I’m sorry for the radio silence. We suddenly found our dream home and On Mon, Mar 28, 2011 at 10:02 PM, byenilmez <
|
Hi,
|
Hi, regards |
Switch branches to the “edge” branch. Checkout that branch.. Hope that helps…. |
“edge” was it….. Michael |
I’ll be closing this issue as this is not really a bug, and is worked on by the Lasersaur people. I will backport their solution when it is solid. |
Hi,
I was just testing the code but had troubles using homing function. I think there is a typo error in: https://github.com/simen/grbl/blob/edge/limits.c.
In line 59,63 and 67 “LIMIT_PIN” should be replaced with “limit_bits”. Or it will never execute the switch release code.
i.e.
if (x_axis && !(LIMIT_PIN & (1<<X_LIMIT_BIT))) {
should be changed to:
if (x_axis && !(limit_bits & (1<<X_LIMIT_BIT))) {
.
Anyway thanks for the great project, take care.
Bekir