While I'm pretty knowledgeable with ramps and marlin / repetier this is my first experience with reprap firmware, so I'm hoping someone could help me out setting up my firmware.
I'm trying to set up my duet wifi for use with a 300mm x 300mm x 325mm coreXY machine. Here's my config.g
[c]
; Communication and general
M111 S0 ; Debug off
M550 PCoreXY ; Machine name and Netbios name (can be anything you like)
M551 none ; Machine password (used for FTP)
;*** If you have more than one Duet on your network, they must all have different MAC addresses, so change the last digits
M540 –mac address is here-- ; MAC Address
;*** Wifi Networking
M552 S1 ; Enable WiFi
M555 P2 ; Set output to look like Marlin
M575 P1 B57600 S1 ; Comms parameters for PanelDue
;set axis/drive directions
M569 P0 S1 ;x axis +'ve
M569 P1 S1 ;y axis +'ve
M569 P2 S1 ;z axis +'ve
M569 P3 S1 ;E0 drive +'ve
M569 P4 S1 ;E1 drive +'ve
M574 X1 Y1 Z1 S1 ; set endstop configuration (all endstops at low end, active high)
M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them
M350 X16 Y16 E16 I1 ; Set 16x microstepping with interpolation
M92 X100 Y100 Z400 ; Set axis steps/mm
M906 X1000 Y1000 Z1000 E800 I60 ; Set motor currents (mA) and increase idle current to 60%
M201 X8000 Y8000 Z100 E4000 ; Accelerations (mm/s^2)
M203 X4200 Y4200 Z600 E3600 ; Maximum speeds (mm/min)
M566 X1200 Y1200 Z40 E1200 ; Maximum instant speed changes mm/minute
M208 X300 Y300 Z325 ; set axis maxima and high homing switch positions (adjust to suit your machine)
;M208 X-8 Y0 Z-0.5 S1 ; set axis minima and low homing switch positions (adjust to make X=0 and Y=0 the edges of the bed)
G21 ; Work in millimetres
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder moves
; Axis and motor configuration
M667 S1 Y-1.0 ; switch to CoreXY mode
; Thermistors
M305 P0 T100000 B3950 R4700 H30 L0 ; Put your own H and/or L values here to set the bed thermistor ADC correction
M305 P1 T100000 B3974 R4700 H30 L0 ; Put your own H and/or L values here to set the first nozzle thermistor ADC correction
M305 P2 T100000 B3974 R4700 H30 L0 ; Put your own H and/or L values here to set the second nozzle thermistor ADC correction
M570 S180 ; Hot end may be a little slow to heat up so allow it 180 seconds
; Fans
M106 P1 H-1 ; disable thermostatic mode for fan 1
; Tool definitions
M563 P0 D0 H1 ; Define tool 0
G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures
;*** If you have a single-nozzle build, comment the next 2 lines
M563 P1 D1 H2 ; Define tool 1
G10 P1 S0 R0 ; Set tool 1 operating and standby temperatures
M92 E663:663 ; Set extruder steps per mm
; Z probe and compensation definition
;*** If you have a switch instead of an IR probe, change P1 to P4 in the following M558 command
M558 P1 X0 Y0 Z0 ; Z probe is an IR probe and is not used for homing any axes
G31 X0 Y0 Z4.80 P500 ; Set the zprobe height and threshold (put your own values here)
;*** If you are using axis compensation, put the figures in the following command
M556 S78 X0 Y0 Z0 ; Axis compensation here
M208 S1 Z-0.2 ; set minimum Z
;
T0 ; select first hot end
[/c]
My SD card came preloaded with a delta configuration so i deleted the homedelta.g, per documentation coreXY machines need a homeall.g file, so i created one and uploaded it with this code that was given as a sample:
[c]
; Home all axes
G91 ; relative mode
G1 S1 X-350 Y-350 F3000 ; course home X or Y
G1 S1 X-350 ; course home X
G1 S1 Y-350 ; course home Y
G1 X4 Y4 F600 ; move away from the endstops
G1 S1 X-10 ; fine home X
G1 S1 Y-10 ; fine home Y
; Z homing section follows
[/c]
I'm not sure how to home Z, but it won't home X or Y either.. it just moves X in the positive direction about 5mm if i try to home all.
Any help would be greatly appreciated, thanks!