Endstops not working correctly
-
Using RRF3 latest stable.
M574 X1 S1 P"xstop"
M574 Y1 S1 P"ystop"
This gives me a reading of x an y at min when queried with M119 on the console page. When I trigger the endstops, it says x and y not stopped.
If I change the lines to
M574 X1 S0 P"xstop"
M574 Y1 S0 P"ystop"
Then M119 reports there are no endstops.
Changing the X1 and Y1 to X0 and Y0 in those lines give the endstop at max.
What should those lines be if I want M119 to read the endstops are not stopped? -
I think M574 X2 S1 P"xstop" gave the endstop at max message. The X0 gave the same message as X1.
-
@vhoward said in Endstops not working correctly:
Using RRF3 latest stable.
M574 X1 S1 P"xstop"
M574 Y1 S1 P"ystop"
This gives me a reading of x an y at min when queried with M119 on the console page. When I trigger the endstops, it says x and y not stopped.In the M574 P parameters change xstop to !xstop and ystop to !ystop.
See if that solves your problem.
Frederick
-
@fcwilt Thanks. That worked. The last time I set up a machine from scratch, it was with RRF2. Still not familiar with the new commands.