Start printer at Mon Jan 9 13:43:53 2023 (1673268233.5 7617.9) ===== Config file ===== [virtual_sdcard] path = /home/sam/printer_data/gcodes [pause_resume] [display_status] [gcode_macro CANCEL_PRINT] description = Cancel the actual running print rename_existing = CANCEL_PRINT_BASE gcode = M220 S100 M221 S100 G91 {% if printer.extruder.temperature >= 170 %} G1 F1800 E-1 {% endif %} {% if printer.toolhead.homed_axes == "xyz" %} G1 F6000 Z10 G90 G1 X0 Y150 F1000 {% endif %} M106 S0 CANCEL_PRINT_BASE [gcode_macro PAUSE] description = Pause the actual running print rename_existing = PAUSE_BASE variable_extrude = 1.0 gcode = {% set E = printer["gcode_macro PAUSE"].extrude|float %} {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %} {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %} {% set max_z = printer.toolhead.axis_maximum.z|float %} {% set act_z = printer.toolhead.position.z|float %} {% if act_z < (max_z - 2.0) %} {% set z_safe = 2.0 %} {% else %} {% set z_safe = max_z - act_z %} {% endif %} {%set min_extrude_temp = printer.configfile.settings["extruder"]["min_extrude_temp"]|int %} {%set act_extrude_temp = printer.extruder.temperature|int %} PAUSE_BASE G91 {% if act_extrude_temp > min_extrude_temp %} G1 E-{E} F2100 {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} {% if "xyz" in printer.toolhead.homed_axes %} G1 Z{z_safe} F900 G90 G1 X{x_park} Y{y_park} F6000 {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro RESUME] description = Resume the actual running print rename_existing = RESUME_BASE gcode = {% set E = printer["gcode_macro PAUSE"].extrude|float %} {%set min_extrude_temp = printer.configfile.settings["extruder"]["min_extrude_temp"]|int %} {%set act_extrude_temp = printer.extruder.temperature|int %} {% if 'VELOCITY' in params|upper %} {% set get_params = ('VELOCITY=' + params.VELOCITY) %} {%else %} {% set get_params = "" %} {% endif %} {% if act_extrude_temp > min_extrude_temp %} G91 G1 E{E} F2100 {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} RESUME_BASE {get_params} [gcode_macro START_PRINT] description = All what needs to be done at print start gcode = {% set extruder = params.EXTRUDER|default(0) %} {% set bed = params.BED|default(0) %} G28 M83 M104 S140 M190 S{bed} G1 X0 Y0 F2200 M109 S{extruder} G92 E0.0 G90 PRIME_LINE [gcode_macro PRIME_LINE] gcode = G90 G92 E0 G1 Z2.0 F3000 G1 X10 Y20 Z0.28 F3000.0 G1 X10 Y50.0 Z0.28 F1500.0 E15 G1 X12 Y50.0 Z0.28 F3000.0 G1 X12 Y20 Z0.28 F1500.0 E15 G92 E0 G1 Z2.0 F3000 [gcode_macro M600] gcode = {% set X = params.X|default(50)|float %} {% set Y = params.Y|default(0)|float %} {% set Z = params.Z|default(10)|float %} SAVE_GCODE_STATE NAME=M600_state PAUSE G91 G1 E-.8 F2700 G1 Z{Z} G90 G1 X{X} Y{Y} F3000 G91 G1 E-50 F1000 RESTORE_GCODE_STATE NAME=M600_state [gcode_macro END_PRINT] description = All what needs to be done at print end gcode = TURN_OFF_HEATERS G91 G1 E-1 F3000 G1 X-0.5 Y-0.5 Z5 E-5 G90 G1 X0 Y200 F2200 M107 M84 G90 M117 Print done M300 S932 P428 M300 S0 P214 M300 S1244 P214 M300 S1396 P214 M300 S1661 P214 M300 S932 P214 M300 S0 P428 M300 S2217 P214 M300 S2093 P214 M300 S1661 P214 M300 S932 P428 M300 S0 P428 M300 S2217 P214 M300 S2093 P214 M300 S1661 P214 M300 S932 P428 M300 S0 P214 M300 S1661 P214 M300 S2093 P214 M300 S1396 P428 M300 S1244 P428 M300 S1108 P214 M300 S1244 P214 M300 S1046 P214 M300 S1661 P214 M300 S932 P21 [gcode_macro PA_Calibration] description = Adjust Velocity and PA parameters for bowden extruder gcode = SET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=1 ACCEL=500 TUNING_TOWER COMMAND=SET_PRESSURE_ADVANCE PARAMETER=ADVANCE START=0 FACTOR=.020 [gcode_macro PID_BED] gcode = PID_CALIBRATE HEATER=heater_bed TARGET=60 [gcode_macro PID_Extruder] gcode = PID_CALIBRATE HEATER=extruder TARGET=200 [gcode_macro Motor_aus] gcode = M18 [gcode_macro M300] gcode = {% set S = params.S|default(1000)|int %} {% set P = params.P|default(100)|int %} SET_PIN PIN=beeper_pin VALUE=0.85 CYCLE_TIME={ 1.0/S if S > 0 else 1 } G4 P{P} SET_PIN PIN=beeper_pin VALUE=0 [gcode_macro Wartungsposition] gcode = G28 G90 G1 X110 Y120 Z105 F1000 G91 M140 S0 M104 S0 M106 S0 [gcode_macro THE_LEGEND_OF_ZELDA_SECRET_DISCOVERY] gcode = M300 P166 S784 M300 P7 S740 M300 P159 S784 M300 P7 S622 M300 P159 S740 M300 P7 S440 M300 P159 S622 M300 P7 S415 M300 P159 S440 M300 P7 S659 M300 P159 S415 M300 P7 S831 M300 P159 S659 M300 P7 S1047 M300 P166 S831 M300 P662 S1047 [gcode_macro THE_LEGEND_OF_ZELDA_MAGIC_RECORDER] gcode = M300 P400 S587 M300 P400 S659 M300 P600 S1175 M300 P200 S1109 M300 P200 S1047 M300 P1373 S988 [gcode_macro THE_LEGEND_OF_ZELDA_ITEM] gcode = M300 P188 S440 M300 P188 S466 M300 P188 S494 M300 P938 S523 [gcode_macro THE_LEGEND_OF_ZELDA_ITEM_SAVE_CONTINUE_RETRY_SCREEN] gcode = M300 P331 S784 M300 P331 S392 M300 P331 S523 M300 P331 S659 M300 P331 S622 M300 P331 S392 M300 P331 S988 M300 P331 S494 M300 P331 S880 M300 P331 S523 M300 P331 S659 M300 P331 S880 M300 P331 S784 [stepper_x] step_pin = PC2 dir_pin = PB9 enable_pin = !PC3 microsteps = 16 rotation_distance = 40 endstop_pin = !PA7 position_min = -3 position_endstop = -3 position_max = 245 homing_speed = 30.0 [stepper_y] step_pin = PB8 dir_pin = PB7 enable_pin = !PC13 microsteps = 16 rotation_distance = 32 endstop_pin = !PC5 position_min = -10 position_endstop = -10 position_max = 245 homing_speed = 30.0 [stepper_z] step_pin = PB6 dir_pin = !PB5 enable_pin = !PC14 microsteps = 16 rotation_distance = 8 endstop_pin = PB2 position_endstop = 0.0 position_max = 250 position_min = -5 homing_speed = 5.0 [stepper_z1] step_pin = PC0 dir_pin = !PC1 enable_pin = !PC15 microsteps = 16 rotation_distance = 8 endstop_pin = PC6 [extruder] step_pin = PB4 dir_pin = !PB3 enable_pin = !PA15 microsteps = 16 rotation_distance = 22.6789511 gear_ratio = 50:17 full_steps_per_rotation = 200 nozzle_diameter = 0.400 filament_diameter = 1.750 heater_pin = PA1 sensor_type = ATC Semitec 104GT-2 sensor_pin = PC4 control = pid pid_kp = 28.937 pid_ki = 1.295 pid_kd = 161.688 min_temp = 0 max_temp = 260 max_extrude_cross_section = 50.0 [heater_fan extruder_fan] pin = PB1 [fan] pin = PA0 [temperature_fan Mainboard] pin = mcu:PA14 sensor_type = temperature_mcu max_power = 1.0 shutdown_speed = 1.0 hardware_pwm = false kick_start_time = 0.5 off_below = 0.4 max_temp = 100 min_temp = 20 target_temp = 50 max_speed = 1.0 min_speed = 0.3 control = pid pid_kp = 1 pid_ki = 1 pid_kd = 1 [heater_bed] heater_pin = PA4 sensor_type = EPCOS 100K B57560G104F sensor_pin = PB0 control = pid pid_kp = 67.648 pid_ki = 1.044 pid_kd = 1095.893 min_temp = 0 max_temp = 110 [probe] pin = !PB12 z_offset = 0 speed = 0.5 samples = 1 activate_gcode = probe_reset [output_pin probe_reset_pin] pin = PB13 [bed_mesh] mesh_min = 15,15 mesh_max = 230, 230 probe_count = 6,6 mesh_pps = 2,3 algorithm = bicubic speed = 50 horizontal_move_z = 5 [safe_z_home] home_xy_position = -3,-7 z_hop = 10 [gcode_macro probe_reset] gcode = SET_PIN PIN=probe_reset_pin VALUE=0 G4 P300 SET_PIN PIN=probe_reset_pin VALUE=1 G4 P100 [output_pin LED] pin = mcu:PA13 pwm = False value = 0 [filament_switch_sensor runout] pause_on_runout = True switch_pin = PA5 [output_pin beeper_pin] pin = PB15 pwm = True value = 0 shutdown_value = 0 cycle_time = 0.001 [temperature_sensor Raspi] sensor_type = temperature_host min_temp = 0 max_temp = 100 [mcu] serial = /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0 restart_method = command [printer] kinematics = cartesian max_velocity = 150 max_accel = 1500 max_accel_to_decel = 1500 max_z_velocity = 5 max_z_accel = 100 [bed_mesh default] version = 1 points = -2.995000, -2.725000, -2.560000, -2.417500, -2.335000, -2.465000 -2.852500, -2.630000, -2.447500, -2.432500, -2.222500, -2.327500 -2.772500, -2.537500, -2.412500, -2.322500, -2.165000, -2.260000 -2.662500, -2.462500, -2.357500, -2.205000, -2.090000, -2.140000 -2.520000, -2.357500, -2.197500, -2.082500, -2.017500, -2.095000 -2.350000, -2.140000, -2.037500, -1.902500, -1.812500, -1.992500 x_count = 6 y_count = 6 mesh_x_pps = 2 mesh_y_pps = 3 algo = bicubic tension = 0.2 min_x = 15.0 max_x = 230.0 min_y = 15.0 max_y = 230.0 ======================= Extruder max_extrude_ratio=20.787584 mcu 'mcu': Starting serial connect webhooks client 139651290499728: New connection webhooks client 139651290499728: Client info {'program': 'Moonraker', 'version': 'v0.7.1-794-g225ec58'} Loaded MCU 'mcu' 105 commands (v0.11.0-57-gcbc17a7c / gcc: (15:10.3-2021.07-4) 10.3.1 20210621 (release) binutils: (2.38-3ubuntu1+15build1) 2.38) MCU 'mcu' config: ADC_MAX=4095 BUS_PINS_i2c1=PB6,PB7 BUS_PINS_i2c1a=PB8,PB9 BUS_PINS_i2c2=PB10,PB11 BUS_PINS_spi1=PA6,PA7,PA5 BUS_PINS_spi1a=PB4,PB5,PB3 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi3=PB4,PB5,PB3 CLOCK_FREQ=72000000 MCU=stm32f103xe PWM_MAX=255 RECEIVE_WINDOW=192 RESERVE_PINS_serial=PA10,PA9 SERIAL_BAUD=250000 STATS_SUMSQ_BASE=256 STEPPER_BOTH_EDGE=1 mcu_temperature 'mcu' nominal base=357.558140 slope=-767.441860 Sending MCU 'mcu' printer configuration... Configured MCU 'mcu' (1024 moves) Starting heater checks for heater_bed bed_mesh: generated points Index | Tool Adjusted | Probe 0 | (15.0, 15.0) | (15.0, 15.0) 1 | (58.0, 15.0) | (58.0, 15.0) 2 | (101.0, 15.0) | (101.0, 15.0) 3 | (144.0, 15.0) | (144.0, 15.0) 4 | (187.0, 15.0) | (187.0, 15.0) 5 | (230.0, 15.0) | (230.0, 15.0) 6 | (230.0, 58.0) | (230.0, 58.0) 7 | (187.0, 58.0) | (187.0, 58.0) 8 | (144.0, 58.0) | (144.0, 58.0) 9 | (101.0, 58.0) | (101.0, 58.0) 10 | (58.0, 58.0) | (58.0, 58.0) 11 | (15.0, 58.0) | (15.0, 58.0) 12 | (15.0, 101.0) | (15.0, 101.0) 13 | (58.0, 101.0) | (58.0, 101.0) 14 | (101.0, 101.0) | (101.0, 101.0) 15 | (144.0, 101.0) | (144.0, 101.0) 16 | (187.0, 101.0) | (187.0, 101.0) 17 | (230.0, 101.0) | (230.0, 101.0) 18 | (230.0, 144.0) | (230.0, 144.0) 19 | (187.0, 144.0) | (187.0, 144.0) 20 | (144.0, 144.0) | (144.0, 144.0) 21 | (101.0, 144.0) | (101.0, 144.0) 22 | (58.0, 144.0) | (58.0, 144.0) 23 | (15.0, 144.0) | (15.0, 144.0) 24 | (15.0, 187.0) | (15.0, 187.0) 25 | (58.0, 187.0) | (58.0, 187.0) 26 | (101.0, 187.0) | (101.0, 187.0) 27 | (144.0, 187.0) | (144.0, 187.0) 28 | (187.0, 187.0) | (187.0, 187.0) 29 | (230.0, 187.0) | (230.0, 187.0) 30 | (230.0, 230.0) | (230.0, 230.0) 31 | (187.0, 230.0) | (187.0, 230.0) 32 | (144.0, 230.0) | (144.0, 230.0) 33 | (101.0, 230.0) | (101.0, 230.0) 34 | (58.0, 230.0) | (58.0, 230.0) 35 | (15.0, 230.0) | (15.0, 230.0) Starting heater checks for extruder Write g-code response Traceback (most recent call last): File "/home/sam/klipper/klippy/gcode.py", line 446, in _respond_raw os.write(self.fd, (msg+"\n").encode()) BlockingIOError: [Errno 11] Resource temporarily unavailable Stats 7619.0: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1134 bytes_read=4028 bytes_retransmit=0 bytes_invalid=0 send_seq=116 receive_seq=116 retransmit_seq=0 srtt=0.003 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72003008 heater_bed: target=0 temp=0.0 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.544 memavail=4657088 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=0.0 pwm=0.000 webhooks: registering remote method 'shutdown_machine' for connection id: 139651290499728 webhooks: registering remote method 'reboot_machine' for connection id: 139651290499728 webhooks: registering remote method 'pause_job_queue' for connection id: 139651290499728 webhooks: registering remote method 'start_job_queue' for connection id: 139651290499728 Stats 7620.0: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1140 bytes_read=4044 bytes_retransmit=0 bytes_invalid=0 send_seq=117 receive_seq=117 retransmit_seq=0 srtt=0.003 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72001482 heater_bed: target=0 temp=0.0 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.554 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=0.0 pwm=0.000 Stats 7621.0: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1179 bytes_read=4242 bytes_retransmit=0 bytes_invalid=0 send_seq=120 receive_seq=120 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000973 heater_bed: target=0 temp=49.7 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.565 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=172.7 pwm=0.000 Stats 7622.0: gcodein=0 mcu: mcu_awake=0.004 mcu_task_avg=0.000020 mcu_task_stddev=0.000044 bytes_write=1200 bytes_read=4424 bytes_retransmit=0 bytes_invalid=0 send_seq=122 receive_seq=122 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000804 heater_bed: target=0 temp=49.6 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.574 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=171.9 pwm=0.000 Stats 7623.0: gcodein=0 mcu: mcu_awake=0.004 mcu_task_avg=0.000020 mcu_task_stddev=0.000044 bytes_write=1206 bytes_read=4572 bytes_retransmit=0 bytes_invalid=0 send_seq=123 receive_seq=123 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000730 heater_bed: target=0 temp=49.6 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.581 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=171.4 pwm=0.000 Stats 7624.0: gcodein=0 mcu: mcu_awake=0.004 mcu_task_avg=0.000020 mcu_task_stddev=0.000044 bytes_write=1227 bytes_read=4755 bytes_retransmit=0 bytes_invalid=0 send_seq=125 receive_seq=125 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000680 heater_bed: target=0 temp=49.6 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.589 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=170.9 pwm=0.000 Stats 7625.0: gcodein=0 mcu: mcu_awake=0.004 mcu_task_avg=0.000020 mcu_task_stddev=0.000044 bytes_write=1233 bytes_read=4917 bytes_retransmit=0 bytes_invalid=0 send_seq=126 receive_seq=126 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000652 heater_bed: target=0 temp=49.5 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.597 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=169.9 pwm=0.000 Stats 7626.0: gcodein=0 mcu: mcu_awake=0.004 mcu_task_avg=0.000020 mcu_task_stddev=0.000044 bytes_write=1239 bytes_read=5065 bytes_retransmit=0 bytes_invalid=0 send_seq=127 receive_seq=127 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000605 heater_bed: target=0 temp=49.4 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.605 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=169.2 pwm=0.000 Stats 7627.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1245 bytes_read=5257 bytes_retransmit=0 bytes_invalid=0 send_seq=128 receive_seq=128 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000560 heater_bed: target=0 temp=49.4 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.613 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=168.2 pwm=0.000 Stats 7628.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1266 bytes_read=5424 bytes_retransmit=0 bytes_invalid=0 send_seq=130 receive_seq=130 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000493 heater_bed: target=0 temp=49.4 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.621 memavail=4656856 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=167.2 pwm=0.000 Stats 7629.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1272 bytes_read=5572 bytes_retransmit=0 bytes_invalid=0 send_seq=131 receive_seq=131 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000500 heater_bed: target=0 temp=49.3 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.628 memavail=4657088 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=166.4 pwm=0.000 Stats 7630.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1278 bytes_read=5750 bytes_retransmit=0 bytes_invalid=0 send_seq=132 receive_seq=132 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000497 heater_bed: target=0 temp=49.3 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.636 memavail=4657144 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=165.6 pwm=0.000 Stats 7631.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1284 bytes_read=5912 bytes_retransmit=0 bytes_invalid=0 send_seq=133 receive_seq=133 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000491 heater_bed: target=0 temp=49.2 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.643 memavail=4657144 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=164.6 pwm=0.000 Stats 7632.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1300 bytes_read=6074 bytes_retransmit=0 bytes_invalid=0 send_seq=134 receive_seq=134 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000500 heater_bed: target=0 temp=49.2 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.651 memavail=4656640 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=163.6 pwm=0.000 Stats 7633.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1306 bytes_read=6252 bytes_retransmit=0 bytes_invalid=0 send_seq=135 receive_seq=135 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000489 heater_bed: target=0 temp=49.1 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.659 memavail=4656640 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=162.8 pwm=0.000 Stats 7634.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1312 bytes_read=6414 bytes_retransmit=0 bytes_invalid=0 send_seq=136 receive_seq=136 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000482 heater_bed: target=0 temp=49.1 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.666 memavail=4656640 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=161.7 pwm=0.000 Stats 7635.0: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1318 bytes_read=6562 bytes_retransmit=0 bytes_invalid=0 send_seq=137 receive_seq=137 retransmit_seq=0 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=72000473 heater_bed: target=0 temp=49.0 pwm=0.000 Raspi: temp=39.0 sysload=0.00 cputime=77.674 memavail=4656640 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=161.0 pwm=0.000