Homeall Slams head to far corner
-
; homex.g ; called to home the X axis ; ; generated by RepRapFirmware Configuration Tool v3.1.3 on Sat Jun 13 2020 19:59:21 GMT-0700 (Pacific Daylight Time) G91 ; relative positioning G1 H2 Z5 F6000 ; lift Z relative to current position G1 H1 X-530 F1800 ; move quickly to X axis endstop and stop there (first pass) G1 X5 F6000 ; go back a few mm G1 H1 X-530 F360 ; move slowly to X axis endstop once more (second pass) G1 H2 Z-5 F6000 ; lower Z again G90 ; absolute positioning
; homey.g ; called to home the Y axis ; ; generated by RepRapFirmware Configuration Tool v3.1.3 on Sat Jun 13 2020 19:59:22 GMT-0700 (Pacific Daylight Time) G91 ; relative positioning G1 H2 Z5 F6000 ; lift Z relative to current position G1 H1 Y-530 F1800 ; move quickly to Y axis endstop and stop there (first pass) G1 Y5 F6000 ; go back a few mm G1 H1 Y-530 F360 ; move slowly to Y axis endstop once more (second pass) G1 H2 Z-5 F6000 ; lower Z again G90 ; absolute positioning
; homez.g ; called to home the Z axis ; generated by RepRapFirmware Configuration Tool v3.1.1 on Thu Jun 04 2020 11:20:25 GMT-0700 (Pacific Daylight Time) G91 ; relative positioning G1 H2 Z5 F6000 ; lift Z relative to current position G1 X222 Y201 F9000 ; go to first bed probe point and home Z G30 ; home z by probing the bed
-
@fcwilt said in Homeall Slams head to far corner:
Why is one of these inverted and not the other?
Did you verify that each is working by manually triggering them and running M119?
Frederick
-
I forgot to mention that issue with G32 having the same problem is bed.g issues G28 which runs homeall.g which is where the problem is.
Frederick
-
@fcwilt both work correctly. Different end stop switches.
-
@fcwilt so remove the G28 ?
-
@mrenz999 said in Homeall Slams head to far corner:
so remove the G28 ?
no fix the problem in homeall.g
-
@mrenz999 said in Homeall Slams head to far corner:
@fcwilt so remove the G28 ?
G1 H1 X-500 Y-500 F3000 ; move quickly to X and Y axis endstops and stop there (first pass) G1 H1 X-500 G1 H1 Y-500 G1 X5 Y5 F6000 ; go back a few mm
Why do you have lines 2 and 3?
Frederick
-
@fcwilt said in Homeall Slams head to far corner:
Why do you have lines 2 and 3?
that for corexy because they cant move independently.
execute each line of homeall separately and see where the problem is
-
@mrenz999 said in Homeall Slams head to far corner:
G1 X222 Y201 F9000 ; go to first bed probe point and home Z
G30 ; probe the bedIs that the line that makes your head crash?
Why probe at X222 Y201? -
@Veti said in Homeall Slams head to far corner:
execute each line of homeall separately and see where the problem is
This isn't my problem - @mrenz999 was the OP - I'm just trying to help him.
Frederick
-
@o_lampe To probe the center of the bed.
-
@Veti So this is what I did. One line at a time. Commented out the first line G92 and it works correctly now. Strange.
-
@mrenz999 said in Homeall Slams head to far corner:
@Veti So this is what I did. One line at a time. Commented out the first line G92 and it works correctly now. Strange.
I don't see a G92 in your homeall.g file.
Is that where it was?
Frederick