according to your defined printer limits , this print will not fit inside your printer

Hi
since update to 0.93.1. i get the error "according to your defined printer limits , this print will not fit inside your printer" on everything i upload new, for gcode that was on the server before upload it doesn't appear.
I already used the support form but as i couldn't upload anything i thought i add the screenshots and files here.
Printer Limits:

summary:

I did this with a 1mm cube in order to not have MB of code to parse thru.
in below code you can see that no moves happen outside of the defined limits, the onlything i could find is a negativ move from Z0.8 (squish line) to 0.3 (1st object layer).
gcode:
;Generated with Cura_SteamEngine 15.01
; Default start code
G28 ; Home extruder
M190 S60
G29
G1 Z15 F1000
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode

; Activate all used extruder
M104 T0 S205
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
M109 T0 S205

;G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
;G1 X10 Y20 Z0.3 F5000.0 ; Move to start position
;G1 X10 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
;G1 X10.5 Y200.0 Z0.3 F5000.0 ; Move to side a little
;G1 X10.5 Y20 Z0.3 F1500.0 E30 ; Draw the second line

G0 X10 Y10 F6000
G1 Z0.8
G1 F300 X200 E40
G1 F1200 Z2

G92 E0 ; Reset Extruder
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
; End of custom start GCode
;Layer count: 5
;LAYER:0
M107
G0 F6000 X115.403 Y98.403 Z0.300
;TYPE:SKIRT
G1 F1800 X134.597 Y98.403 E1.05096
G1 X134.597 Y117.597 E2.10192
G1 X115.403 Y117.597 E3.15287
G1 X115.403 Y98.403 E4.20383
G0 F6000 X115.842 Y98.842
G1 F1800 X134.158 Y98.842 E5.20671
G1 X134.158 Y117.158 E6.20960
G1 X115.842 Y117.158 E7.21248
G1 X115.842 Y98.842 E8.21536
G0 F6000 X116.281 Y99.281
G1 F1800 X133.719 Y99.281 E9.17017
G1 X133.719 Y116.719 E10.12498
G1 X116.281 Y116.719 E11.07979
G1 X116.281 Y99.281 E12.03460
G1 F2400 E8.03460
G0 F6000 X124.719 Y107.719
;TYPE:WALL-OUTER
G1 F2400 E12.03460
G1 F1800 X125.281 Y107.719 E12.06537
G1 X125.281 Y108.281 E12.09614
G1 X124.719 Y108.281 E12.12692
G1 X124.719 Y107.719 E12.15769
;LAYER:1
M106 S17
G0 F6000 X124.699 Y107.699 Z0.500
;TYPE:WALL-OUTER
G1 F540 X125.301 Y107.699 E12.17766
G1 X125.301 Y108.301 E12.19763
G1 X124.699 Y108.301 E12.21761
G1 X124.699 Y107.699 E12.23758
;LAYER:2
M106 S35
G0 F6000 X124.699 Y107.699 Z0.700
;TYPE:WALL-OUTER
G1 F540 X125.301 Y107.699 E12.25755
G1 X125.301 Y108.301 E12.27752
G1 X124.699 Y108.301 E12.29750
G1 X124.699 Y107.699 E12.31747
;LAYER:3
M106 S53
G0 F6000 X124.699 Y107.699 Z0.900
;TYPE:WALL-OUTER
G1 F600 X125.301 Y107.699 E12.33744
G1 X125.301 Y108.301 E12.35741
G1 X124.699 Y108.301 E12.37739
G1 X124.699 Y107.699 E12.39736
;LAYER:4
M106 S71
G0 F6000 X124.699 Y107.699 Z1.100
;TYPE:WALL-OUTER
G1 F540 X125.301 Y107.699 E12.41733
G1 X125.301 Y108.301 E12.43730
G1 X124.699 Y108.301 E12.45728
G1 X124.699 Y107.699 E12.47725
M107
G1 F2400 E8.47725
G0 F6000 X124.699 Y107.699 Z6.000
; Default end code
;G1 X0 Y0 Z130 ; Get extruder out of way. Uncomment to use!
M107 ; Turn off fan
; Disable all extruder
G91 ; Relative positioning
T0
G1 E-2 ; Reduce filament pressure more
G28 X0 ; Home X
M104 T0 S0
G90 ; Absolute positioning
G92 E0 ; Reset extruder position
M140 S0 ; Disable heated bed
M84 ; Turn steppers off

Comments

  • one more schreenshots showing this happens only for new uploads:

  • Your x home position is -8 while x min allowed is 0. So that is outside printable area. Set x min to -8 and it should work. What you define in the manual control is where you can move - this can also be outside bed. In bed you define where extrusions may appear. 
  • i set x-min to -8 saved, deleted the test code and uploaded it again, no change.
    Do i need to stop current print or restart it or anything?
  • No restart required. Also no reupload. Maybe you need also to increase bed size to -8.
    If you check the folder where server stores gcodes there is a .gin file for every gcode. There you can see what server thinks in which area you are moving and extruding. That area must be covered. It is in <storageDir>/printer/<slugname>/models
  • Yes it was the bed, thanks.

Sign In or Register to comment.