Printer Model: Ender 3 v3 SE
MCU / Printerboard: BTT Pad 7
Host / SBC- Mainsail
klippy.log-
klippy (1).log (6.7 MB)
Describe your issue:
Basic Information: Here is what I believe is the error giving me the issue. The print goes through all the checks and such, heat the hotend and bed, then goes to home, and stops, and disconnects.
Should mention this is a brand printer, stock, and a new build on the BTT Pad with very little/none customization.
Starting heater checks for extruder
Write g-code response
Traceback (most recent call last):
File “/home/biqu/klipper/klippy/gcode.py”, line 459, in _respond_raw
os.write(self.fd, (msg+“\n”).encode())
BlockingIOError: [Errno 11] Resource temporarily unavailable
Start gcode
M220 S100 ;Reset Feedrate
M221 S100 ;Reset Flowrate
G28 ;Home
G92 E0 ;Reset Extruder
G1 Z2.0 F3000 ;Move Z Axis up
G1 X-3 Y20 Z0.28 F5000.0 ;Move to start position
M190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait
M109 S{material_print_temperature_layer_0} ; Set hotend temperature and wait
G1 X-3 Y100.0 Z0.28 F1500.0 E15 ;Draw the first line
G1 X-2 Y100.0 Z0.28 F5000.0 ;Move to side a little
G1 X-2 Y20 Z0.28 F1500.0 E30 ;Draw the second line
G92 E0 ;Reset Extruder
G1 E-1.0000 F1800 ;Retract a bit
G1 Z2.0 F3000 ;Move Z Axis up
G1 E0.0000 F1800
End gcode
G91 ;Relative positioning
G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out
G1 Z10 ;Raise Z more
G90 ;Absolute positioning
G1 X0 Y{machine_depth} ;Present print
M106 S0 ;Turn-off fan
M104 S0 ;Turn-off hotend
M140 S0 ;Turn-off bed
M84 X Y E ;Disable all steppers but Z
…