wrong maximums (solved)
-
Tried printing a 200x210mm size print and the printer cut off corners
have my Tronxy X5s set to 300X x 300Y but when i ask it to go to 300 x 300 it only goes to X205 and Y200.. if i ask it to go further... it wont do it..
i tried looking in the files for 205 and 200 values but cant find anything.. and can find the max set to 300 x 300 x 400 like it should be...
anyone have a explanation and a solution?
-
Hi,
M208 is used to set the min and max values for one or more axes.
Have you searched in your config.g files to verify you have only one M208 and it is correct?
Do any other files change these settings?
Frederick
-
; Configuration file for Duet WiFi (firmware version 1.21)
; executed by the firmware on start-up
;
; generated by RepRapFirmware Configuration Tool v2 on Wed Aug 14 2019 02:42:33 GMT+0200 (Central European Summer Time); General preferences
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder movesM667 S1 ; Select CoreXY mode
; Network
M550 P"Tronxy X5S" ; Set machine name
secret
M586 P0 S1 ; Enable HTTP
M586 P1 S0 ; Disable FTP
M586 P2 S0 ; Disable Telnet; Drives
M569 P0 S1 ; Physical drive 0 goes forwards
M569 P1 S1 ; Physical drive 1 goes forwards
M569 P2 S0 ; Physical drive 2 goes backwards
M569 P3 S0 ; Physical drive 3 goes backwards
M569 P4 S0 ; Physical drive 4 goes backwards
M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation
M92 X80.00 Y80.00 Z400.00 E95 ; Set steps per mm
M566 X900.00 Y900.00 Z12.00 E120.00 ; Set maximum instantaneous speed changes (mm/min)
M203 X18000.00 Y18000.00 Z300.00 E1500.00 ; Set maximum speeds (mm/min)
M201 X3000.00 Y3000.00 Z100.00 E5000.00 ; Set accelerations (mm/s^2)
M906 X950.00 Y800.00 Z800.00 E800.00 I30 ; Set motor currents (mA) and motor idle factor in per cent
M84 S30 ; Set idle timeout; Axis Limits
M208 X0 Y0 Z0 S1 ; Set axis minima
M208 X300 Y300 Z400 S0 ; Set axis maxima; Endstops
M574 X1 Y1 S0 ; Set active low and disabled endstops; Z-Probe
M574 Z1 S2 ; Set endstops controlled by probe
M307 H3 A-1 C-1 D-1 ; Disable heater on PWM channel for BLTouch
M558 P9 H1 F120 T6000 ; Set Z probe type to bltouch and the dive height + speeds
M558 H30 ;*** Remove this line after delta calibration has been done and new delta parameters have been saved
G31 P500 X0 Y0 Z2.5 ; Set Z probe trigger value, offset and trigger height
M557 X15:300 Y15:300 S30 ; Define mesh grid; Heaters
M305 P0 T100000 B4138 R4700 ; Set thermistor + ADC parameters for heater 0
M143 H0 S120 ; Set temperature limit for heater 0 to 120C
M305 P1 T100000 B4138 R4700 ; Set thermistor + ADC parameters for heater 1
M143 H1 S280 ; Set temperature limit for heater 1 to 280C; Fans
M106 P0 S0 I0 F500 H T45 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned on
M106 P1 S1 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on; Tools
M563 P0 D0 H1 ; Define tool 0
G10 P0 X0 Y0 Z0 ; Set tool 0 axis offsets
G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C; Automatic saving after power loss is not enabled
M584 X0 Y1 Z2:4 ; two Z motors connected to driver outputs Z and E1
M671 X0:220 Y0:0 S0.5 ; leadscrews at left (connected to Z) and right (connected to E1) of X axis
M208 X0:205 Y0:200 ; X carriage moves from 0 to 300, Y bed goes from 0 to 300; Custom settings are not configured
-
Maybe your steps/mm are set wrong.
-
https://photos.app.goo.gl/8rR4fxQQ6CyBrsti6 vid showing the problem
-
Do you have a M208 in your config-overrride that could affect this?
-
@kamikaze_freak said in wrong maximums:
M208 X0:205 Y0:200 ; X carriage moves from 0 to 300, Y bed goes from 0 to 300
You've got a rogue M208 at the end of your config.g that over taking the ones earlier on.
-
there it is!
thank you!