Repetier equivalent to Marlin M206?
I'm currently trying to run my RAMPS 1.4 with Repetier Firmware 1.0x.
I am currently using Marlin 1.1.1 and suddenly I'm getting com timeouts and sometimes the print suddenly pauses for 5 or so seconds and then continues causing ugly blobs/melts on the printing part.
I have P3Steel and my endstops are at the min positions.
The home position is outside of the print bed. They are offset from the print bed's 0x0x0 position by X-15 Y-24 Z-0.01.
In Marlin I used M206 X-15 Y-24 Z-0.01 (just once when configuring the firmware) to tell the printer where the endstops are.
The workflow was like this:
Turn on printer
G28 ; homing X,Y then raise Z by 5mm and home Z
If I now entered this:
G1 X0 Y0 Z0
the printer moves from home position to 0x0x0 position of the print bed
I tried to achieve this in Repetier firmware but M206 has a different function.
I found "ENDSTOP_(X|Y|Z)_BACK_ON_HOME" in repetier-firmware but I am not sure if this is the equivalent for Marlin's M206.
Because if I set these three values to X= 15 ; Y= 24 ; Z= 0.01 I get a compile error in the Arduino IDE 1.8.8.
"exit status 1
expected primary-expression before '>' token"
expected primary-expression before '>' token"
What I thought that this is doing is to home each axis and then move to printer's bed x0 y0 z0 position.
Comments