reprappro / RepRapFirmware

OO C++ RepRap Firmware
Other
143 stars 120 forks source link

Added home direction logic #7

Closed T3P3 closed 10 years ago

T3P3 commented 10 years ago

The direction which an axis homes in is either "-1" for min or "1" for max

The Mendel90 homes max on all axis, hence:

define HOME_DIRECTION {1,1,1,1}

for the original logic use:

define HOME_DIRECTION {-1,-1,-1,-1}

T3P3 commented 10 years ago

Drat, github merges commits into a single pull request. The second commit is to allow for the Z probe to be used selectively

jmgiacalone commented 10 years ago

I think this would be better with an M code to toggle use of the Z probe. This would allow for a machine which had a physical microswitch as well as a proximity sensor.

T3P3 commented 10 years ago

Can do M31 seems like a good candidate

T3P3 commented 10 years ago

Closed due to significant upstream changes