Starting Klippy... Args: ['/home/pi/klipper/klippy/klippy.py', '/home/pi/printer.cfg', '-l', '/tmp/klippy.log'] Git version: 'v0.10.0-184-gdd714fc7' CPU: 4 core ARMv7 Processor rev 3 (v7l) Python: '2.7.16 (default, Oct 10 2019, 22:02:15) \n[GCC 8.3.0]' Start printer at Fri May 20 14:17:07 2022 (1653045427.3 11.8) ===== Config file ===== [stepper_x] step_pin = PD6 dir_pin = !PD11 enable_pin = !PC6 microsteps = 16 rotation_distance = 40 endstop_pin = ^PC14 position_endstop = 0 position_max = 235 homing_speed = 50.0 homing_retract_dist = 5.0 [tmc2660 stepper_x] cs_pin = PD14 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 idle_current_percent = 20 [stepper_y] step_pin = PD7 dir_pin = !PD12 enable_pin = !PC6 microsteps = 16 rotation_distance = 40 endstop_pin = ^PA2 position_endstop = 0 position_max = 235 homing_speed = 25.0 homing_retract_dist = 5.0 [tmc2660 stepper_y] cs_pin = PC9 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 idle_current_percent = 20 [stepper_z] step_pin = PD8 dir_pin = PD13 enable_pin = !PC6 microsteps = 16 rotation_distance = 8 endstop_pin = PD29 position_max = 250 position_min = -2 position_endstop = 0.780 [tmc2660 stepper_z] cs_pin = PC10 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 [stepper_z1] step_pin = PD4 dir_pin = PD9 enable_pin = !PC6 microsteps = 16 rotation_distance = 8 endstop_pin = PD29 [tmc2660 stepper_z1] cs_pin = PC25 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 [bltouch] sensor_pin = ^PC1 control_pin = PC3 pin_move_time = 0.4 x_offset = 38.2 y_offset = 0 samples = 1 z_offset = 1.512 [bed_mesh] speed = 120 horizontal_move_z = 5 mesh_min = 39,15 mesh_max = 200, 215 probe_count = 5,5 fade_start = 1.0 mesh_pps = 2,2 [z_tilt] z_positions = -35,117 270,117 points = 0,117 185,117 speed = 50 horizontal_move_z = 10 [bed_screws] screw1 = 32,32 screw2 = 203,203 screw3 = 203,32 screw4 = 32,203 screw5 = 117,117 [screws_tilt_adjust] screw1 = 0,30 screw1_name = front left screw screw2 = 161.8,30 screw2_name = front right screw screw3 = 161.8,205 screw3_name = rear right screw screw4 = 0,205 screw4_name = rear left screw horizontal_move_z = 10. speed = 50. screw_thread = CW-M4 [endstop_phase] [extruder] step_pin = PD5 dir_pin = !PA1 enable_pin = !PC6 microsteps = 16 full_steps_per_rotation = 200 rotation_distance = 7.632 nozzle_diameter = 0.400 filament_diameter = 1.750 heater_pin = !PA20 sensor_type = ATC Semitec 104GT-2 sensor_pin = PC15 min_temp = 0 max_temp = 300 pressure_advance = 0.08035 control = pid pid_kp = 23.801 pid_ki = 1.037 pid_kd = 136.556 [tmc2660 extruder] cs_pin = PC17 spi_bus = usart1 interpolate = False run_current = 0.650 sense_resistor = 0.051 [fan] pin = PC23 [heater_fan nozzle_cooling_fan] pin = PC26 heater = extruder heater_temp = 45 fan_speed = 1.0 [temperature_sensor mcu] sensor_type = temperature_mcu min_temp = 20 max_temp = 70 [heater_bed] heater_pin = !PA19 sensor_type = EPCOS 100K B57560G104F sensor_pin = PC13 min_temp = 0 max_temp = 100 control = pid pid_kp = 74.952 pid_ki = 0.982 pid_kd = 1430.639 [mcu] serial = /dev/serial/by-id/usb-Klipper_sam4e8e_00323053354141543133303531303432-if00 [virtual_sdcard] path = ~/gcode_files [display_status] [printer] kinematics = cartesian max_velocity = 300 max_accel = 3500 max_accel_to_decel = 3500 max_z_velocity = 5 max_z_accel = 100 square_corner_velocity = 5.0 [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 G29] gcode = BED_MESH_CALIBRATE [gcode_macro ZUP] gcode = SET_GCODE_OFFSET Z_ADJUST=0.025 MOVE=1 [gcode_macro ZDOWN] gcode = SET_GCODE_OFFSET Z_ADJUST=-0.025 MOVE=1 [gcode_macro CANCEL_PRINT] gcode = description = Cancel the actual running print M220 S100 ; Reset Speed factor override percentage to default (100%) M221 S100 ; Reset Extrude factor override percentage to default (100%) G91 ; Set coordinates to relative {% if printer.extruder.temperature >= 170 %} G1 F1800 E-1 ; Retract filament 3 mm to prevent oozing {% endif %} ;if all axis are homed, lift the hotend to leave room for hot filament to ooze and to keep it clear of the bed. {% if printer.toolhead.homed_axes == "xyz" %} G1 F6000 Z10 ; Move Z Axis up 10 mm to allow filament ooze freely G90 ; Set coordinates to absolute G1 X0 Y221 F1000 ; Move Heat Bed to the front for easy print removal M84 ; Disable stepper motors {% endif %} ;set part fan speed to zero. M106 S0 ;bed and hotend are left at the print temps in case I want to restart. [gcode_macro PAUSE] gcode = {% set default_x = printer.toolhead.axis_minimum.x + 20 %} {% set default_y = printer.toolhead.axis_minimum.y + 20 %} {% if 'save_variables' in printer %} {% set svv = printer.save_variables.variables %} {% if 'park_x' in svv %} {% set default_x = svv.park_x %} {% endif %} {% if 'park_y' in svv %} {% set default_y = svv.park_y %} {% endif %} {% endif %} {% set x = params.X|default(default_x)|float %} {% set y = params.Y|default(default_y)|float %} {% set z = params.Z|default(20)|float %} {% set r = params.R|default(3)|float %} {% if printer.pause_resume.is_paused %} {action_respond_info("Already paused")} {% elif printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} PAUSE {% if r > 0.0 %} RETRACT D={r} {% endif %} G27 X{x} Y{y} Z{z} {% endif %} [gcode_macro RESUME] gcode = SET_IDLE_TIMEOUT TIMEOUT=600 RESUME RESPOND TYPE=command MSG=action:resumed [bed_mesh default] version = 1 points = -2.110000, -2.145000, -2.000000 -1.962500, -2.010000, -1.997500 -1.937500, -1.952500, -1.915000 tension = 0.2 min_x = 39.0 algo = lagrange y_count = 3 mesh_y_pps = 2 min_y = 15.0 x_count = 3 max_y = 215.0 mesh_x_pps = 2 max_x = 200.0 [input_shaper] shaper_type_y = zv shaper_freq_y = 36.2 shaper_type_x = zv shaper_freq_x = 38.6 [endstop_phase stepper_z] trigger_phase = 30/64 ======================= Extruder max_extrude_ratio=0.266081 mcu 'mcu': Starting serial connect Loaded MCU 'mcu' 94 commands (v0.10.0-184-gdd714fc7 / gcc: (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] binutils: (2.31.1-11+rpi1+11) 2.31.1) MCU 'mcu' config: BUS_PINS_twi1=PB5,PB4 BUS_PINS_twi0=PA4,PA3 BUS_PINS_spi=PA12,PA13,PA14 BUS_PINS_usart0=PB0,PB1,PB13 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_usart1=PA21,PA22,PA23 PWM_MAX=255 CLOCK_FREQ=120000000 RESERVE_PINS_USB=PB10,PB11 MCU=sam4e8e STATS_SUMSQ_BASE=256 mcu_temperature 'mcu' nominal base=-279.382979 slope=702.127660 Sending MCU 'mcu' printer configuration... Configured MCU 'mcu' (1024 moves) Enabling TMC virtual enable for 'stepper_x' Enabling TMC virtual enable for 'stepper_y' Enabling TMC virtual enable for 'stepper_z' Enabling TMC virtual enable for 'stepper_z1' Failed to verify BLTouch probe is raised; retrying. bed_mesh: generated points Index | Tool Adjusted | Probe 0 | (0.8, 15.0) | (39.0, 15.0) 1 | (41.0, 15.0) | (79.2, 15.0) 2 | (81.3, 15.0) | (119.5, 15.0) 3 | (121.5, 15.0) | (159.8, 15.0) 4 | (161.8, 15.0) | (200.0, 15.0) 5 | (161.8, 65.0) | (200.0, 65.0) 6 | (121.5, 65.0) | (159.8, 65.0) 7 | (81.3, 65.0) | (119.5, 65.0) 8 | (41.0, 65.0) | (79.2, 65.0) 9 | (0.8, 65.0) | (39.0, 65.0) 10 | (0.8, 115.0) | (39.0, 115.0) 11 | (41.0, 115.0) | (79.2, 115.0) 12 | (81.3, 115.0) | (119.5, 115.0) 13 | (121.5, 115.0) | (159.8, 115.0) 14 | (161.8, 115.0) | (200.0, 115.0) 15 | (161.8, 165.0) | (200.0, 165.0) 16 | (121.5, 165.0) | (159.8, 165.0) 17 | (81.3, 165.0) | (119.5, 165.0) 18 | (41.0, 165.0) | (79.2, 165.0) 19 | (0.8, 165.0) | (39.0, 165.0) 20 | (0.8, 215.0) | (39.0, 215.0) 21 | (41.0, 215.0) | (79.2, 215.0) 22 | (81.3, 215.0) | (119.5, 215.0) 23 | (121.5, 215.0) | (159.8, 215.0) 24 | (161.8, 215.0) | (200.0, 215.0) Enabling TMC virtual enable for 'extruder' Starting heater checks for heater_bed Starting heater checks for extruder Stats 15.2: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1887 bytes_read=4651 bytes_retransmit=9 bytes_invalid=0 send_seq=191 receive_seq=191 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119995213 mcu: temp=32.1 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.03 cputime=0.979 memavail=3724996 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 16.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000009 mcu_task_stddev=0.000012 bytes_write=1893 bytes_read=4817 bytes_retransmit=9 bytes_invalid=0 send_seq=192 receive_seq=192 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119995056 mcu: temp=32.4 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.03 cputime=0.985 memavail=3725000 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 17.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000009 mcu_task_stddev=0.000012 bytes_write=1899 bytes_read=5013 bytes_retransmit=9 bytes_invalid=0 send_seq=193 receive_seq=193 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119994517 mcu: temp=32.2 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.03 cputime=0.993 memavail=3723484 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 18.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000009 mcu_task_stddev=0.000012 bytes_write=1905 bytes_read=5164 bytes_retransmit=9 bytes_invalid=0 send_seq=194 receive_seq=194 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119994127 mcu: temp=32.5 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.03 cputime=0.997 memavail=3723768 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 19.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000009 mcu_task_stddev=0.000012 bytes_write=1911 bytes_read=5315 bytes_retransmit=9 bytes_invalid=0 send_seq=195 receive_seq=195 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993989 mcu: temp=32.3 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.03 cputime=1.003 memavail=3723768 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 20.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000009 mcu_task_stddev=0.000012 bytes_write=1917 bytes_read=5511 bytes_retransmit=9 bytes_invalid=0 send_seq=196 receive_seq=196 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993784 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.02 cputime=1.010 memavail=3717188 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 21.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1923 bytes_read=5676 bytes_retransmit=9 bytes_invalid=0 send_seq=197 receive_seq=197 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993749 mcu: temp=32.2 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.02 cputime=1.014 memavail=3707460 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 22.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1929 bytes_read=5842 bytes_retransmit=9 bytes_invalid=0 send_seq=198 receive_seq=198 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993717 mcu: temp=32.3 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.02 cputime=1.019 memavail=3699148 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.5 pwm=0.000 Stats 23.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1935 bytes_read=6023 bytes_retransmit=9 bytes_invalid=0 send_seq=199 receive_seq=199 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993707 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.02 cputime=1.025 memavail=3687364 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 24.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1941 bytes_read=6174 bytes_retransmit=9 bytes_invalid=0 send_seq=200 receive_seq=200 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993678 mcu: temp=32.4 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.02 cputime=1.029 memavail=3659824 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 25.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1947 bytes_read=6340 bytes_retransmit=9 bytes_invalid=0 send_seq=201 receive_seq=201 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993602 mcu: temp=32.6 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.10 cputime=1.034 memavail=3658656 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 26.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1953 bytes_read=6531 bytes_retransmit=9 bytes_invalid=0 send_seq=202 receive_seq=202 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993539 mcu: temp=32.7 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.10 cputime=1.040 memavail=3652748 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 27.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1959 bytes_read=6672 bytes_retransmit=9 bytes_invalid=0 send_seq=203 receive_seq=203 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993527 mcu: temp=32.5 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.10 cputime=1.045 memavail=3648836 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 28.2: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1965 bytes_read=6828 bytes_retransmit=9 bytes_invalid=0 send_seq=204 receive_seq=204 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993505 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.10 cputime=1.049 memavail=3632844 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Unknown command:"M851" virtual_sdcard get_file_list Traceback (most recent call last): File "/home/pi/klipper/klippy/extras/virtual_sdcard.py", line 73, in get_file_list filenames = os.listdir(self.sdcard_dirname) OSError: [Errno 2] No such file or directory: '/home/pi/gcode_files' Unable to get file list Stats 29.2: gcodein=55 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1971 bytes_read=7009 bytes_retransmit=9 bytes_invalid=0 send_seq=205 receive_seq=205 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993489 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.10 cputime=1.060 memavail=3621704 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 30.2: gcodein=55 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1977 bytes_read=7160 bytes_retransmit=9 bytes_invalid=0 send_seq=206 receive_seq=206 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993565 mcu: temp=32.5 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.09 cputime=1.065 memavail=3609408 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 31.2: gcodein=55 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1983 bytes_read=7340 bytes_retransmit=9 bytes_invalid=0 send_seq=207 receive_seq=207 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993526 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.09 cputime=1.070 memavail=3574032 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 32.2: gcodein=55 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1989 bytes_read=7521 bytes_retransmit=9 bytes_invalid=0 send_seq=208 receive_seq=208 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993535 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.09 cputime=1.076 memavail=3572108 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 33.2: gcodein=69 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=1995 bytes_read=7672 bytes_retransmit=9 bytes_invalid=0 send_seq=209 receive_seq=209 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993515 mcu: temp=33.0 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.09 cputime=1.082 memavail=3541936 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 34.2: gcodein=74 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2001 bytes_read=7838 bytes_retransmit=9 bytes_invalid=0 send_seq=210 receive_seq=210 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993496 mcu: temp=32.6 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.09 cputime=1.088 memavail=3526876 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 35.2: gcodein=74 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2007 bytes_read=8019 bytes_retransmit=9 bytes_invalid=0 send_seq=211 receive_seq=211 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993495 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.49 cputime=1.093 memavail=3521224 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 36.2: gcodein=74 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2013 bytes_read=8170 bytes_retransmit=9 bytes_invalid=0 send_seq=212 receive_seq=212 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993481 mcu: temp=32.9 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.49 cputime=1.098 memavail=3519464 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 37.2: gcodein=74 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2019 bytes_read=8365 bytes_retransmit=9 bytes_invalid=0 send_seq=213 receive_seq=213 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993467 mcu: temp=32.4 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.49 cputime=1.103 memavail=3514056 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 38.2: gcodein=74 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2025 bytes_read=8531 bytes_retransmit=9 bytes_invalid=0 send_seq=214 receive_seq=214 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993459 mcu: temp=32.7 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.49 cputime=1.107 memavail=3508416 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 39.2: gcodein=79 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2031 bytes_read=8682 bytes_retransmit=9 bytes_invalid=0 send_seq=215 receive_seq=215 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993473 mcu: temp=32.7 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.49 cputime=1.111 memavail=3510556 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 40.2: gcodein=84 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2037 bytes_read=8863 bytes_retransmit=9 bytes_invalid=0 send_seq=216 receive_seq=216 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993485 mcu: temp=32.7 heater_bed: target=0 temp=25.4 pwm=0.000 sysload=1.45 cputime=1.118 memavail=3414656 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 41.2: gcodein=84 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2043 bytes_read=9029 bytes_retransmit=9 bytes_invalid=0 send_seq=217 receive_seq=217 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993480 mcu: temp=32.6 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.45 cputime=1.122 memavail=3409116 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 42.2: gcodein=84 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2049 bytes_read=9194 bytes_retransmit=9 bytes_invalid=0 send_seq=218 receive_seq=218 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993468 mcu: temp=32.5 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.45 cputime=1.127 memavail=3478164 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 43.2: gcodein=84 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2055 bytes_read=9375 bytes_retransmit=9 bytes_invalid=0 send_seq=219 receive_seq=219 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993488 mcu: temp=32.7 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.45 cputime=1.131 memavail=3510720 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 44.2: gcodein=84 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2061 bytes_read=9541 bytes_retransmit=9 bytes_invalid=0 send_seq=220 receive_seq=220 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993482 mcu: temp=32.9 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.45 cputime=1.136 memavail=3511348 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 45.2: gcodein=89 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2067 bytes_read=9692 bytes_retransmit=9 bytes_invalid=0 send_seq=221 receive_seq=221 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993486 mcu: temp=33.0 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.41 cputime=1.141 memavail=3512360 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 46.2: gcodein=89 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2073 bytes_read=9873 bytes_retransmit=9 bytes_invalid=0 send_seq=222 receive_seq=222 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993476 mcu: temp=32.4 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.41 cputime=1.145 memavail=3512428 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 47.2: gcodein=89 mcu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000005 bytes_write=2079 bytes_read=10053 bytes_retransmit=9 bytes_invalid=0 send_seq=223 receive_seq=223 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993491 mcu: temp=32.8 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.41 cputime=1.150 memavail=3514620 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 48.2: gcodein=89 mcu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000005 bytes_write=2085 bytes_read=10204 bytes_retransmit=9 bytes_invalid=0 send_seq=224 receive_seq=224 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993485 mcu: temp=32.9 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.41 cputime=1.155 memavail=3516272 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.3 pwm=0.000 Stats 49.2: gcodein=89 mcu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000005 bytes_write=2091 bytes_read=10385 bytes_retransmit=9 bytes_invalid=0 send_seq=225 receive_seq=225 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993476 mcu: temp=32.5 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=1.41 cputime=1.160 memavail=3526636 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 50.2: gcodein=94 mcu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000005 bytes_write=2097 bytes_read=10551 bytes_retransmit=9 bytes_invalid=0 send_seq=226 receive_seq=226 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993470 mcu: temp=32.9 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=1.38 cputime=1.165 memavail=3525896 print_time=0.020 buffer_time=0.000 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Stats 143.3: gcodein=199 mcu: mcu_awake=0.001 mcu_task_avg=0.000005 mcu_task_stddev=0.000005 bytes_write=2684 bytes_read=26216 bytes_retransmit=9 bytes_invalid=0 send_seq=322 receive_seq=322 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=119993528 mcu: temp=33.0 heater_bed: target=0 temp=25.5 pwm=0.000 sysload=0.32 cputime=1.634 memavail=3525256 print_time=152.618 buffer_time=0.203 print_stall=0 extruder: target=0 temp=25.4 pwm=0.000 Restarting printer Start printer at Fri May 20 16:23:41 2022 (1653053021.8 144.6) ===== Config file ===== [stepper_x] step_pin = PD6 dir_pin = !PD11 enable_pin = !PC6 microsteps = 16 rotation_distance = 40 endstop_pin = ^PC14 position_endstop = 0 position_max = 235 homing_speed = 50.0 homing_retract_dist = 5.0 [tmc2660 stepper_x] cs_pin = PD14 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 idle_current_percent = 20 [stepper_y] step_pin = PD7 dir_pin = !PD12 enable_pin = !PC6 microsteps = 16 rotation_distance = 40 endstop_pin = ^PA2 position_endstop = 0 position_max = 235 homing_speed = 25.0 homing_retract_dist = 5.0 [tmc2660 stepper_y] cs_pin = PC9 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 idle_current_percent = 20 [stepper_z] step_pin = PD8 dir_pin = PD13 enable_pin = !PC6 microsteps = 16 rotation_distance = 8 endstop_pin = PD29 position_max = 250 position_min = -2 position_endstop = 0.780 [tmc2660 stepper_z] cs_pin = PC10 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 [stepper_z1] step_pin = PD4 dir_pin = PD9 enable_pin = !PC6 microsteps = 16 rotation_distance = 8 endstop_pin = PD29 [tmc2660 stepper_z1] cs_pin = PC25 spi_bus = usart1 interpolate = True run_current = 0.580 sense_resistor = 0.051 [bltouch] sensor_pin = ^PC1 control_pin = PC3 pin_move_time = 0.4 x_offset = 38.2 y_offset = 0 samples = 1 z_offset = 1.512 [bed_mesh] speed = 120 horizontal_move_z = 5 mesh_min = 39,15 mesh_max = 200, 215 probe_count = 5,5 fade_start = 1.0 mesh_pps = 2,2 [z_tilt] z_positions = -35,117 270,117 points = 0,117 185,117 speed = 50 horizontal_move_z = 10 [bed_screws] screw1 = 32,32 screw2 = 203,203 screw3 = 203,32 screw4 = 32,203 screw5 = 117,117 [screws_tilt_adjust] screw1 = 0,30 screw1_name = front left screw screw2 = 161.8,30 screw2_name = front right screw screw3 = 161.8,205 screw3_name = rear right screw screw4 = 0,205 screw4_name = rear left screw horizontal_move_z = 10. speed = 50. screw_thread = CW-M4 [endstop_phase] [extruder] step_pin = PD5 dir_pin = !PA1 enable_pin = !PC6 microsteps = 16 full_steps_per_rotation = 200 rotation_distance = 7.632 nozzle_diameter = 0.400 filament_diameter = 1.750 heater_pin = !PA20 sensor_type = ATC Semitec 104GT-2 sensor_pin = PC15 min_temp = 0 max_temp = 300 pressure_advance = 0.08035 control = pid pid_kp = 23.801 pid_ki = 1.037 pid_kd = 136.556 [tmc2660 extruder] cs_pin = PC17 spi_bus = usart1 interpolate = False run_current = 0.650 sense_resistor = 0.051 [fan] pin = PC23 [heater_fan nozzle_cooling_fan] pin = PC26 heater = extruder heater_temp = 45 fan_speed = 1.0 [temperature_sensor mcu] sensor_type = temperature_mcu min_temp = 20 max_temp = 70 [heater_bed] heater_pin = !PA19 sensor_type = EPCOS 100K B57560G104F sensor_pin = PC13 min_temp = 0 max_temp = 100 control = pid pid_kp = 74.952 pid_ki = 0.982 pid_kd = 1430.639 [mcu] serial = /dev/serial/by-id/usb-Klipper_sam4e8e_00323053354141543133303531303432-if00 [mcu rpi] serial = /tmp/klipper_host_mcu [adxl345] cs_pin = rpi:None [resonance_tester] accel_chip = adxl345 probe_points = 118,118,150 [virtual_sdcard] path = ~/gcode_files [display_status] [printer] kinematics = cartesian max_velocity = 300 max_accel = 3500 max_accel_to_decel = 3500 max_z_velocity = 5 max_z_accel = 100 square_corner_velocity = 5.0 [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 G29] gcode = BED_MESH_CALIBRATE [gcode_macro ZUP] gcode = SET_GCODE_OFFSET Z_ADJUST=0.025 MOVE=1 [gcode_macro ZDOWN] gcode = SET_GCODE_OFFSET Z_ADJUST=-0.025 MOVE=1 [gcode_macro CANCEL_PRINT] gcode = description = Cancel the actual running print M220 S100 ; Reset Speed factor override percentage to default (100%) M221 S100 ; Reset Extrude factor override percentage to default (100%) G91 ; Set coordinates to relative {% if printer.extruder.temperature >= 170 %} G1 F1800 E-1 ; Retract filament 3 mm to prevent oozing {% endif %} ;if all axis are homed, lift the hotend to leave room for hot filament to ooze and to keep it clear of the bed. {% if printer.toolhead.homed_axes == "xyz" %} G1 F6000 Z10 ; Move Z Axis up 10 mm to allow filament ooze freely G90 ; Set coordinates to absolute G1 X0 Y221 F1000 ; Move Heat Bed to the front for easy print removal M84 ; Disable stepper motors {% endif %} ;set part fan speed to zero. M106 S0 ;bed and hotend are left at the print temps in case I want to restart. [gcode_macro PAUSE] gcode = {% set default_x = printer.toolhead.axis_minimum.x + 20 %} {% set default_y = printer.toolhead.axis_minimum.y + 20 %} {% if 'save_variables' in printer %} {% set svv = printer.save_variables.variables %} {% if 'park_x' in svv %} {% set default_x = svv.park_x %} {% endif %} {% if 'park_y' in svv %} {% set default_y = svv.park_y %} {% endif %} {% endif %} {% set x = params.X|default(default_x)|float %} {% set y = params.Y|default(default_y)|float %} {% set z = params.Z|default(20)|float %} {% set r = params.R|default(3)|float %} {% if printer.pause_resume.is_paused %} {action_respond_info("Already paused")} {% elif printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} PAUSE {% if r > 0.0 %} RETRACT D={r} {% endif %} G27 X{x} Y{y} Z{z} {% endif %} [gcode_macro RESUME] gcode = SET_IDLE_TIMEOUT TIMEOUT=600 RESUME RESPOND TYPE=command MSG=action:resumed [bed_mesh default] version = 1 points = -2.110000, -2.145000, -2.000000 -1.962500, -2.010000, -1.997500 -1.937500, -1.952500, -1.915000 tension = 0.2 min_x = 39.0 algo = lagrange y_count = 3 mesh_y_pps = 2 min_y = 15.0 x_count = 3 max_y = 215.0 mesh_x_pps = 2 max_x = 200.0 [input_shaper] shaper_type_y = zv shaper_freq_y = 36.2 shaper_type_x = zv shaper_freq_x = 38.6 [endstop_phase stepper_z] trigger_phase = 30/64 ======================= Extruder max_extrude_ratio=0.266081 mcu 'mcu': Starting serial connect Printer is not ready The klippy host software is attempting to connect. Please retry in a few moments. Klipper state: Not ready mcu 'mcu': Timeout on connect mcu 'mcu': Wait for identify_response Traceback (most recent call last): File "/home/pi/klipper/klippy/serialhdl.py", line 69, in _get_identify_data params = self.send_with_response(msg, 'identify_response') File "/home/pi/klipper/klippy/serialhdl.py", line 258, in send_with_response return src.get_response([cmd], self.default_cmd_queue) File "/home/pi/klipper/klippy/serialhdl.py", line 316, in get_response cmd_queue) File "/home/pi/klipper/klippy/serialhdl.py", line 250, in raw_send_wait_ack self._error("Serial connection closed") File "/home/pi/klipper/klippy/serialhdl.py", line 62, in _error raise error(self.warn_prefix + (msg % params)) error: mcu 'mcu': Serial connection closed mcu 'mcu': got {'#receive_time': 150.27480241, u'next_clock': 1985330816, u'oid': 21, u'value': 14593, '#name': u'analog_in_state', '#sent_time': 150.247344595} mcu 'mcu': got {'#receive_time': 150.284774799, u'next_clock': 1986530816, u'oid': 22, u'value': 31254, '#name': u'analog_in_state', '#sent_time': 150.247344595} mcu 'mcu': got {'#receive_time': 150.314851521, u'next_clock': 1990130816, u'oid': 25, u'value': 31271, '#name': u'analog_in_state', '#sent_time': 150.298256503} Loaded MCU 'mcu' 94 commands (v0.10.0-184-gdd714fc7 / gcc: (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] binutils: (2.31.1-11+rpi1+11) 2.31.1) MCU 'mcu' config: BUS_PINS_twi1=PB5,PB4 BUS_PINS_twi0=PA4,PA3 BUS_PINS_spi=PA12,PA13,PA14 BUS_PINS_usart0=PB0,PB1,PB13 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_usart1=PA21,PA22,PA23 PWM_MAX=255 CLOCK_FREQ=120000000 RESERVE_PINS_USB=PB10,PB11 MCU=sam4e8e STATS_SUMSQ_BASE=256 mcu 'rpi': Starting connect mcu 'mcu': got {'#receive_time': 150.574882873, u'next_clock': 2021330816, u'oid': 21, u'value': 14580, '#name': u'analog_in_state', '#sent_time': 150.558212539} mcu 'mcu': got {'#receive_time': 150.584765928, u'next_clock': 2022530816, u'oid': 22, u'value': 31256, '#name': u'analog_in_state', '#sent_time': 150.558212539} mcu 'mcu': got {'#receive_time': 150.614829854, u'next_clock': 2026130816, u'oid': 25, u'value': 31267, '#name': u'analog_in_state', '#sent_time': 150.558212539} mcu 'mcu': got {'#receive_time': 150.874835817, u'next_clock': 2057330816, u'oid': 21, u'value': 14580, '#name': u'analog_in_state', '#sent_time': 150.558212539} mcu 'mcu': got {'#receive_time': 150.884751262, u'next_clock': 2058530816, u'oid': 22, u'value': 31251, '#name': u'analog_in_state', '#sent_time': 150.558212539} mcu 'mcu': got {'#receive_time': 150.914798687, u'next_clock': 2062130816, u'oid': 25, u'value': 31264, '#name': u'analog_in_state', '#sent_time': 150.558212539} Loaded MCU 'rpi' 101 commands (v0.10.0-184-gdd714fc7 / gcc: (Raspbian 8.3.0-6+rpi1) 8.3.0 binutils: (GNU Binutils for Raspbian) 2.31.1) MCU 'rpi' config: PCA9685_MAX=4096 ADC_MAX=4095 PWM_MAX=32768 CLOCK_FREQ=50000000 MCU=linux STATS_SUMSQ_BASE=256 mcu_temperature 'mcu' nominal base=-279.382979 slope=702.127660 Configured MCU 'mcu' (1024 moves) Sending MCU 'rpi' printer configuration... MCU 'rpi' shutdown: Unable to open spi device clocksync state: mcu_freq=50000000 last_clock=7005228948 clock_est=(150.746 6988226322 49951389.505) min_half_rtt=0.000051 min_rtt_time=150.983 time_avg=150.746(0.017) clock_avg=6988226322.164(850768.090) pred_variance=1844787181.840 clock_adj=(19.991 49952425.500) Dumping serial stats: bytes_write=781 bytes_read=4491 bytes_retransmit=0 bytes_invalid=0 send_seq=107 receive_seq=107 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 91 messages Sent 0 150.559284 150.559284 8: seq: 10, identify offset=0 count=40 Sent 1 150.561462 150.561462 8: seq: 11, identify offset=40 count=40 Sent 2 150.562366 150.562366 8: seq: 12, identify offset=80 count=40 Sent 3 150.563178 150.563178 9: seq: 13, identify offset=120 count=40 Sent 4 150.564796 150.564796 9: seq: 14, identify offset=160 count=40 Sent 5 150.566027 150.566027 9: seq: 15, identify offset=200 count=40 Sent 6 150.566863 150.566863 9: seq: 16, identify offset=240 count=40 Sent 7 150.567713 150.567713 9: seq: 17, identify offset=280 count=40 Sent 8 150.568499 150.568499 9: seq: 18, identify offset=320 count=40 Sent 9 150.569290 150.569290 9: seq: 19, identify offset=360 count=40 Sent 10 150.570064 150.570064 9: seq: 1a, identify offset=400 count=40 Sent 11 150.570867 150.570867 9: seq: 1b, identify offset=440 count=40 Sent 12 150.571695 150.571695 9: seq: 1c, identify offset=480 count=40 Sent 13 150.572539 150.572539 9: seq: 1d, identify offset=520 count=40 Sent 14 150.573321 150.573321 9: seq: 1e, identify offset=560 count=40 Sent 15 150.574085 150.574085 9: seq: 1f, identify offset=600 count=40 Sent 16 150.574963 150.574963 9: seq: 10, identify offset=640 count=40 Sent 17 150.576530 150.576530 9: seq: 11, identify offset=680 count=40 Sent 18 150.577346 150.577346 9: seq: 12, identify offset=720 count=40 Sent 19 150.578117 150.578117 9: seq: 13, identify offset=760 count=40 Sent 20 150.578880 150.578880 9: seq: 14, identify offset=800 count=40 Sent 21 150.579705 150.579705 9: seq: 15, identify offset=840 count=40 Sent 22 150.580463 150.580463 9: seq: 16, identify offset=880 count=40 Sent 23 150.581229 150.581229 9: seq: 17, identify offset=920 count=40 Sent 24 150.582063 150.582063 9: seq: 18, identify offset=960 count=40 Sent 25 150.582862 150.582862 9: seq: 19, identify offset=1000 count=40 Sent 26 150.583642 150.583642 9: seq: 1a, identify offset=1040 count=40 Sent 27 150.584231 150.584231 9: seq: 1b, identify offset=1080 count=40 Sent 28 150.584960 150.584960 9: seq: 1c, identify offset=1120 count=40 Sent 29 150.586144 150.586144 9: seq: 1d, identify offset=1160 count=40 Sent 30 150.586742 150.586742 9: seq: 1e, identify offset=1200 count=40 Sent 31 150.587318 150.587318 9: seq: 1f, identify offset=1240 count=40 Sent 32 150.587894 150.587894 9: seq: 10, identify offset=1280 count=40 Sent 33 150.588464 150.588464 9: seq: 11, identify offset=1320 count=40 Sent 34 150.589084 150.589084 9: seq: 12, identify offset=1360 count=40 Sent 35 150.589683 150.589683 9: seq: 13, identify offset=1400 count=40 Sent 36 150.590250 150.590250 9: seq: 14, identify offset=1440 count=40 Sent 37 150.590811 150.590811 9: seq: 15, identify offset=1480 count=40 Sent 38 150.591402 150.591402 9: seq: 16, identify offset=1520 count=40 Sent 39 150.592022 150.592022 9: seq: 17, identify offset=1560 count=40 Sent 40 150.592600 150.592600 9: seq: 18, identify offset=1600 count=40 Sent 41 150.593177 150.593177 9: seq: 19, identify offset=1640 count=40 Sent 42 150.593741 150.593741 9: seq: 1a, identify offset=1680 count=40 Sent 43 150.594305 150.594305 9: seq: 1b, identify offset=1720 count=40 Sent 44 150.594869 150.594869 9: seq: 1c, identify offset=1760 count=40 Sent 45 150.595437 150.595437 9: seq: 1d, identify offset=1800 count=40 Sent 46 150.596002 150.596002 9: seq: 1e, identify offset=1840 count=40 Sent 47 150.596568 150.596568 9: seq: 1f, identify offset=1880 count=40 Sent 48 150.597140 150.597140 9: seq: 10, identify offset=1920 count=40 Sent 49 150.597706 150.597706 9: seq: 11, identify offset=1960 count=40 Sent 50 150.598269 150.598269 9: seq: 12, identify offset=2000 count=40 Sent 51 150.598828 150.598828 9: seq: 13, identify offset=2040 count=40 Sent 52 150.599387 150.599387 9: seq: 14, identify offset=2080 count=40 Sent 53 150.599976 150.599976 9: seq: 15, identify offset=2120 count=40 Sent 54 150.600540 150.600540 9: seq: 16, identify offset=2160 count=40 Sent 55 150.601106 150.601106 9: seq: 17, identify offset=2200 count=40 Sent 56 150.601671 150.601671 9: seq: 18, identify offset=2240 count=40 Sent 57 150.602282 150.602282 9: seq: 19, identify offset=2280 count=40 Sent 58 150.602880 150.602880 9: seq: 1a, identify offset=2320 count=40 Sent 59 150.603463 150.603463 9: seq: 1b, identify offset=2360 count=40 Sent 60 150.604052 150.604052 9: seq: 1c, identify offset=2400 count=40 Sent 61 150.604628 150.604628 9: seq: 1d, identify offset=2440 count=40 Sent 62 150.605215 150.605215 9: seq: 1e, identify offset=2480 count=40 Sent 63 150.605795 150.605795 9: seq: 1f, identify offset=2520 count=40 Sent 64 150.606372 150.606372 9: seq: 10, identify offset=2560 count=40 Sent 65 150.606954 150.606954 9: seq: 11, identify offset=2600 count=40 Sent 66 150.607575 150.607575 9: seq: 12, identify offset=2640 count=40 Sent 67 150.608158 150.608158 9: seq: 13, identify offset=2680 count=40 Sent 68 150.608734 150.608734 9: seq: 14, identify offset=2720 count=40 Sent 69 150.609320 150.609320 9: seq: 15, identify offset=2760 count=40 Sent 70 150.609897 150.609897 9: seq: 16, identify offset=2800 count=40 Sent 71 150.610498 150.610498 9: seq: 17, identify offset=2840 count=40 Sent 72 150.611075 150.611075 9: seq: 18, identify offset=2880 count=40 Sent 73 150.611698 150.611698 9: seq: 19, identify offset=2910 count=40 Sent 74 150.677924 150.677924 6: seq: 1a, get_uptime Sent 75 150.729483 150.729483 6: seq: 1b, get_clock Sent 76 150.780340 150.780340 6: seq: 1c, get_clock Sent 77 150.831196 150.831196 6: seq: 1d, get_clock Sent 78 150.881890 150.881890 6: seq: 1e, get_clock Sent 79 150.932569 150.932569 6: seq: 1f, get_clock Sent 80 150.983315 150.983315 6: seq: 10, get_clock Sent 81 151.034070 151.034070 6: seq: 11, get_clock Sent 82 151.084860 151.084860 6: seq: 12, get_clock Sent 83 151.086637 151.086637 6: seq: 13, get_clock Sent 84 151.093521 151.093521 6: seq: 14, get_config Sent 85 151.094523 151.094523 7: seq: 15, allocate_oids count=2 Sent 86 151.094720 151.094720 7: seq: 16, config_spi_without_cs oid=0 Sent 87 151.094855 151.094855 8: seq: 17, config_adxl345 oid=1 spi_oid=0 Sent 88 151.095006 151.095006 13: seq: 18, spi_set_bus oid=0 spi_bus=spidev0.0 mode=3 rate=5000000 Sent 89 151.095107 151.095107 11: seq: 19, finalize_config crc=4031677248 Sent 90 151.095308 151.095308 6: seq: 1a, get_config Dumping receive queue 100 messages Receive: 0 150.557398 0.000000 12: seq: 10, stats count=51 sum=10216 sumsq=17665 Receive: 1 150.557400 0.000000 12: seq: 10, stats count=51 sum=11260 sumsq=15361 Receive: 2 150.557403 0.000000 11: seq: 10, stats count=50 sum=9562 sumsq=9412 Receive: 3 150.557405 0.000000 12: seq: 10, stats count=51 sum=10495 sumsq=19564 Receive: 4 150.557408 0.000000 11: seq: 10, stats count=50 sum=10986 sumsq=12266 Receive: 5 150.557410 0.000000 12: seq: 10, stats count=51 sum=9601 sumsq=14151 Receive: 6 150.557413 0.000000 11: seq: 10, stats count=50 sum=10879 sumsq=11791 Receive: 7 150.557415 0.000000 12: seq: 10, stats count=51 sum=8894 sumsq=12887 Receive: 8 150.557417 0.000000 11: seq: 10, stats count=50 sum=10582 sumsq=11013 Receive: 9 150.557441 0.000000 12: seq: 10, stats count=50 sum=9411 sumsq=15090 Receive: 10 150.557443 0.000000 12: seq: 10, stats count=51 sum=11149 sumsq=18079 Receive: 11 150.557446 0.000000 11: seq: 10, stats count=50 sum=10140 sumsq=11159 Receive: 12 150.557448 0.000000 12: seq: 10, stats count=51 sum=10594 sumsq=17832 Receive: 13 150.557450 0.000000 11: seq: 10, stats count=50 sum=10254 sumsq=10775 Receive: 14 150.559575 150.559284 48: seq: 11, identify_response offset=0 data='x\xda\xa5\x1ako\xdb\xc8\xf1\xafl\x05\x04\xb9\xb4\xb6N\x94HJ6\x90\x0f\x8e/w\x08Z7\xb9\xd8A\x0b\x14\x07\x82&W\xd2\xc2' Receive: 15 150.561692 150.561462 48: seq: 12, identify_response offset=40 data='|\x1dw\xe9G\x0f\xfe\xef\x9d\xd9\xd9\x17)\xc5I[\x7f\x11\xb93\xb3;;\xef\x19\xfa\x8f\xd9\xed \xaa2\xbb\xe7\xbd\x14m#g\xe7' Receive: 16 150.562591 150.562366 48: seq: 13, identify_response offset=80 data='\xb3]Q\x9c\xb3\x1f>\xe7\xb2\xbb\x15y\xc36\xf3\xd5|q\x9a\xfe\xa5\xefD\xf4\x86\xde\xd8\xadh\x06%*\tx\xbf\xfc\xfd\x0b{g' Receive: 17 150.563394 150.563178 49: seq: 14, identify_response offset=120 data="^\xd9\xb6\xed\x99%|\xc3\x96\xf3U4\x8ff'\xb3\xa2\xad\xeb\xbc)a\xf3?fyU\xb5E\xaex\xd6\x8aR\xb2\xa2\x1d\x1a\xf5\xf6" Receive: 18 150.565071 150.564796 49: seq: 15, identify_response offset=160 data="U1;_F'\xc0\x8aR\xc0C\x96\x17w\x0c\xc0\xb0\x1e \x9c\x05\xf0\xb2\xb4\xf0\xae\x95\xfaG4o_\r\xac\x1b\xaa*\x1b:\x8d" Receive: 19 150.566259 150.566027 49: seq: 16, identify_response offset=200 data='\xbf\x8a=\xc1\xef\x03\xef\x9f\xdc\x96\xc0\xc0\x1db\xf7\\\xaaL\x89\xe2N\xd2\x9b\xea\xf3F\xd6Be\xf6P&\x1a\x90\x8b\xe1o\t\xf7\xa8' Receive: 20 150.567075 150.566863 49: seq: 17, identify_response offset=240 data='x\xdegr?\xa8\xb2}hf\xe7)^\xad\xd9\x8a\x1dp\xf4X\xad\xe2\xc4\x1e!;\x91\xd1#\xf0\xb1\xf4XM^\xb5\xbbL4\x8e' Receive: 21 150.567925 150.567713 49: seq: 18, identify_response offset=280 data='{\xcd\xf6\xec= 170 %} G1 F1800 E-1 ; Retract filament 3 mm to prevent oozing {% endif %} ;if all axis are homed, lift the hotend to leave room for hot filament to ooze and to keep it clear of the bed. {% if printer.toolhead.homed_axes == "xyz" %} G1 F6000 Z10 ; Move Z Axis up 10 mm to allow filament ooze freely G90 ; Set coordinates to absolute G1 X0 Y221 F1000 ; Move Heat Bed to the front for easy print removal M84 ; Disable stepper motors {% endif %} ;set part fan speed to zero. M106 S0 ;bed and hotend are left at the print temps in case I want to restart. [gcode_macro PAUSE] gcode = {% set default_x = printer.toolhead.axis_minimum.x + 20 %} {% set default_y = printer.toolhead.axis_minimum.y + 20 %} {% if 'save_variables' in printer %} {% set svv = printer.save_variables.variables %} {% if 'park_x' in svv %} {% set default_x = svv.park_x %} {% endif %} {% if 'park_y' in svv %} {% set default_y = svv.park_y %} {% endif %} {% endif %} {% set x = params.X|default(default_x)|float %} {% set y = params.Y|default(default_y)|float %} {% set z = params.Z|default(20)|float %} {% set r = params.R|default(3)|float %} {% if printer.pause_resume.is_paused %} {action_respond_info("Already paused")} {% elif printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} PAUSE {% if r > 0.0 %} RETRACT D={r} {% endif %} G27 X{x} Y{y} Z{z} {% endif %} [gcode_macro RESUME] gcode = SET_IDLE_TIMEOUT TIMEOUT=600 RESUME RESPOND TYPE=command MSG=action:resumed [bed_mesh default] version = 1 points = -2.110000, -2.145000, -2.000000 -1.962500, -2.010000, -1.997500 -1.937500, -1.952500, -1.915000 tension = 0.2 min_x = 39.0 algo = lagrange y_count = 3 mesh_y_pps = 2 min_y = 15.0 x_count = 3 max_y = 215.0 mesh_x_pps = 2 max_x = 200.0 [input_shaper] shaper_type_y = zv shaper_freq_y = 36.2 shaper_type_x = zv shaper_freq_x = 38.6 [endstop_phase stepper_z] trigger_phase = 30/64 ======================= Extruder max_extrude_ratio=0.266081 mcu 'mcu': Starting serial connect Loaded MCU 'mcu' 94 commands (v0.10.0-184-gdd714fc7 / gcc: (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] binutils: (2.31.1-11+rpi1+11) 2.31.1) MCU 'mcu' config: BUS_PINS_twi1=PB5,PB4 BUS_PINS_twi0=PA4,PA3 BUS_PINS_spi=PA12,PA13,PA14 BUS_PINS_usart0=PB0,PB1,PB13 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_usart1=PA21,PA22,PA23 PWM_MAX=255 CLOCK_FREQ=120000000 RESERVE_PINS_USB=PB10,PB11 MCU=sam4e8e STATS_SUMSQ_BASE=256 mcu 'rpi': Starting connect Loaded MCU 'rpi' 101 commands (v0.10.0-184-gdd714fc7 / gcc: (Raspbian 8.3.0-6+rpi1) 8.3.0 binutils: (GNU Binutils for Raspbian) 2.31.1) MCU 'rpi' config: PCA9685_MAX=4096 ADC_MAX=4095 PWM_MAX=32768 CLOCK_FREQ=50000000 MCU=linux STATS_SUMSQ_BASE=256 mcu_temperature 'mcu' nominal base=-279.382979 slope=702.127660 Sending MCU 'mcu' printer configuration... Configured MCU 'mcu' (1024 moves) Sending MCU 'rpi' printer configuration... MCU 'rpi' shutdown: Unable to open spi device clocksync state: mcu_freq=50000000 last_clock=115698952 clock_est=(345.988 98758833 49993761.632) min_half_rtt=0.000052 min_rtt_time=346.325 time_avg=345.988(0.017) clock_avg=98758833.338(843974.213) pred_variance=1842871465.619 clock_adj=(0.061 49995582.500) Dumping serial stats: bytes_write=781 bytes_read=4168 bytes_retransmit=0 bytes_invalid=0 send_seq=107 receive_seq=107 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 91 messages Sent 0 345.816713 345.816713 8: seq: 10, identify offset=0 count=40 Sent 1 345.817689 345.817689 8: seq: 11, identify offset=40 count=40 Sent 2 345.818392 345.818392 8: seq: 12, identify offset=80 count=40 Sent 3 345.819072 345.819072 9: seq: 13, identify offset=120 count=40 Sent 4 345.819749 345.819749 9: seq: 14, identify offset=160 count=40 Sent 5 345.820426 345.820426 9: seq: 15, identify offset=200 count=40 Sent 6 345.821091 345.821091 9: seq: 16, identify offset=240 count=40 Sent 7 345.821759 345.821759 9: seq: 17, identify offset=280 count=40 Sent 8 345.822424 345.822424 9: seq: 18, identify offset=320 count=40 Sent 9 345.823155 345.823155 9: seq: 19, identify offset=360 count=40 Sent 10 345.823856 345.823856 9: seq: 1a, identify offset=400 count=40 Sent 11 345.824550 345.824550 9: seq: 1b, identify offset=440 count=40 Sent 12 345.825217 345.825217 9: seq: 1c, identify offset=480 count=40 Sent 13 345.826282 345.826282 9: seq: 1d, identify offset=520 count=40 Sent 14 345.826975 345.826975 9: seq: 1e, identify offset=560 count=40 Sent 15 345.827648 345.827648 9: seq: 1f, identify offset=600 count=40 Sent 16 345.828318 345.828318 9: seq: 10, identify offset=640 count=40 Sent 17 345.828982 345.828982 9: seq: 11, identify offset=680 count=40 Sent 18 345.829651 345.829651 9: seq: 12, identify offset=720 count=40 Sent 19 345.830309 345.830309 9: seq: 13, identify offset=760 count=40 Sent 20 345.830966 345.830966 9: seq: 14, identify offset=800 count=40 Sent 21 345.831623 345.831623 9: seq: 15, identify offset=840 count=40 Sent 22 345.832288 345.832288 9: seq: 16, identify offset=880 count=40 Sent 23 345.832945 345.832945 9: seq: 17, identify offset=920 count=40 Sent 24 345.833648 345.833648 9: seq: 18, identify offset=960 count=40 Sent 25 345.834354 345.834354 9: seq: 19, identify offset=1000 count=40 Sent 26 345.835016 345.835016 9: seq: 1a, identify offset=1040 count=40 Sent 27 345.835676 345.835676 9: seq: 1b, identify offset=1080 count=40 Sent 28 345.836334 345.836334 9: seq: 1c, identify offset=1120 count=40 Sent 29 345.836987 345.836987 9: seq: 1d, identify offset=1160 count=40 Sent 30 345.837646 345.837646 9: seq: 1e, identify offset=1200 count=40 Sent 31 345.838299 345.838299 9: seq: 1f, identify offset=1240 count=40 Sent 32 345.838955 345.838955 9: seq: 10, identify offset=1280 count=40 Sent 33 345.839609 345.839609 9: seq: 11, identify offset=1320 count=40 Sent 34 345.840265 345.840265 9: seq: 12, identify offset=1360 count=40 Sent 35 345.840921 345.840921 9: seq: 13, identify offset=1400 count=40 Sent 36 345.841580 345.841580 9: seq: 14, identify offset=1440 count=40 Sent 37 345.842231 345.842231 9: seq: 15, identify offset=1480 count=40 Sent 38 345.842886 345.842886 9: seq: 16, identify offset=1520 count=40 Sent 39 345.843602 345.843602 9: seq: 17, identify offset=1560 count=40 Sent 40 345.844317 345.844317 9: seq: 18, identify offset=1600 count=40 Sent 41 345.844977 345.844977 9: seq: 19, identify offset=1640 count=40 Sent 42 345.845640 345.845640 9: seq: 1a, identify offset=1680 count=40 Sent 43 345.846299 345.846299 9: seq: 1b, identify offset=1720 count=40 Sent 44 345.846957 345.846957 9: seq: 1c, identify offset=1760 count=40 Sent 45 345.847606 345.847606 9: seq: 1d, identify offset=1800 count=40 Sent 46 345.848260 345.848260 9: seq: 1e, identify offset=1840 count=40 Sent 47 345.848913 345.848913 9: seq: 1f, identify offset=1880 count=40 Sent 48 345.849566 345.849566 9: seq: 10, identify offset=1920 count=40 Sent 49 345.850221 345.850221 9: seq: 11, identify offset=1960 count=40 Sent 50 345.850878 345.850878 9: seq: 12, identify offset=2000 count=40 Sent 51 345.851532 345.851532 9: seq: 13, identify offset=2040 count=40 Sent 52 345.852188 345.852188 9: seq: 14, identify offset=2080 count=40 Sent 53 345.852839 345.852839 9: seq: 15, identify offset=2120 count=40 Sent 54 345.854056 345.854056 9: seq: 16, identify offset=2160 count=40 Sent 55 345.854760 345.854760 9: seq: 17, identify offset=2200 count=40 Sent 56 345.855426 345.855426 9: seq: 18, identify offset=2240 count=40 Sent 57 345.856094 345.856094 9: seq: 19, identify offset=2280 count=40 Sent 58 345.856760 345.856760 9: seq: 1a, identify offset=2320 count=40 Sent 59 345.857433 345.857433 9: seq: 1b, identify offset=2360 count=40 Sent 60 345.858106 345.858106 9: seq: 1c, identify offset=2400 count=40 Sent 61 345.858768 345.858768 9: seq: 1d, identify offset=2440 count=40 Sent 62 345.859429 345.859429 9: seq: 1e, identify offset=2480 count=40 Sent 63 345.860087 345.860087 9: seq: 1f, identify offset=2520 count=40 Sent 64 345.860752 345.860752 9: seq: 10, identify offset=2560 count=40 Sent 65 345.861428 345.861428 9: seq: 11, identify offset=2600 count=40 Sent 66 345.862101 345.862101 9: seq: 12, identify offset=2640 count=40 Sent 67 345.862764 345.862764 9: seq: 13, identify offset=2680 count=40 Sent 68 345.863509 345.863509 9: seq: 14, identify offset=2720 count=40 Sent 69 345.864189 345.864189 9: seq: 15, identify offset=2760 count=40 Sent 70 345.864878 345.864878 9: seq: 16, identify offset=2800 count=40 Sent 71 345.865565 345.865565 9: seq: 17, identify offset=2840 count=40 Sent 72 345.866239 345.866239 9: seq: 18, identify offset=2880 count=40 Sent 73 345.866907 345.866907 9: seq: 19, identify offset=2910 count=40 Sent 74 345.920126 345.920126 6: seq: 1a, get_uptime Sent 75 345.971127 345.971127 6: seq: 1b, get_clock Sent 76 346.021813 346.021813 6: seq: 1c, get_clock Sent 77 346.072393 346.072393 6: seq: 1d, get_clock Sent 78 346.122912 346.122912 6: seq: 1e, get_clock Sent 79 346.173568 346.173568 6: seq: 1f, get_clock Sent 80 346.224197 346.224197 6: seq: 10, get_clock Sent 81 346.274830 346.274830 6: seq: 11, get_clock Sent 82 346.325401 346.325401 6: seq: 12, get_clock Sent 83 346.326980 346.326980 6: seq: 13, get_clock Sent 84 346.335453 346.335453 6: seq: 14, get_config Sent 85 346.336403 346.336403 7: seq: 15, allocate_oids count=2 Sent 86 346.336580 346.336580 7: seq: 16, config_spi_without_cs oid=0 Sent 87 346.336683 346.336683 8: seq: 17, config_adxl345 oid=1 spi_oid=0 Sent 88 346.336796 346.336796 13: seq: 18, spi_set_bus oid=0 spi_bus=spidev0.0 mode=3 rate=5000000 Sent 89 346.336864 346.336864 11: seq: 19, finalize_config crc=4031677248 Sent 90 346.336972 346.336972 6: seq: 1a, get_config Dumping receive queue 87 messages Receive: 0 345.815695 0.000000 6: seq: 10, starting Receive: 1 345.817127 345.816713 48: seq: 11, identify_response offset=0 data='x\xda\xa5\x1ako\xdb\xc8\xf1\xafl\x05\x04\xb9\xb4\xb6N\x94HJ6\x90\x0f\x8e/w\x08Z7\xb9\xd8A\x0b\x14\x07\x82&W\xd2\xc2' Receive: 2 345.817883 345.817689 48: seq: 12, identify_response offset=40 data='|\x1dw\xe9G\x0f\xfe\xef\x9d\xd9\xd9\x17)\xc5I[\x7f\x11\xb93\xb3;;\xef\x19\xfa\x8f\xd9\xed \xaa2\xbb\xe7\xbd\x14m#g\xe7' Receive: 3 345.818581 345.818392 48: seq: 13, identify_response offset=80 data='\xb3]Q\x9c\xb3\x1f>\xe7\xb2\xbb\x15y\xc36\xf3\xd5|q\x9a\xfe\xa5\xefD\xf4\x86\xde\xd8\xadh\x06%*\tx\xbf\xfc\xfd\x0b{g' Receive: 4 345.819260 345.819072 49: seq: 14, identify_response offset=120 data="^\xd9\xb6\xed\x99%|\xc3\x96\xf3U4\x8ff'\xb3\xa2\xad\xeb\xbc)a\xf3?fyU\xb5E\xaex\xd6\x8aR\xb2\xa2\x1d\x1a\xf5\xf6" Receive: 5 345.819940 345.819749 49: seq: 15, identify_response offset=160 data="U1;_F'\xc0\x8aR\xc0C\x96\x17w\x0c\xc0\xb0\x1e \x9c\x05\xf0\xb2\xb4\xf0\xae\x95\xfaG4o_\r\xac\x1b\xaa*\x1b:\x8d" Receive: 6 345.820614 345.820426 49: seq: 16, identify_response offset=200 data='\xbf\x8a=\xc1\xef\x03\xef\x9f\xdc\x96\xc0\xc0\x1db\xf7\\\xaaL\x89\xe2N\xd2\x9b\xea\xf3F\xd6Be\xf6P&\x1a\x90\x8b\xe1o\t\xf7\xa8' Receive: 7 345.821281 345.821091 49: seq: 17, identify_response offset=240 data='x\xdegr?\xa8\xb2}hf\xe7)^\xad\xd9\x8a\x1dp\xf4X\xad\xe2\xc4\x1e!;\x91\xd1#\xf0\xb1\xf4XM^\xb5\xbbL4\x8e' Receive: 8 345.821946 345.821759 49: seq: 18, identify_response offset=280 data='{\xcd\xf6\xec= 170 %} G1 F1800 E-1 ; Retract filament 3 mm to prevent oozing {% endif %} ;if all axis are homed, lift the hotend to leave room for hot filament to ooze and to keep it clear of the bed. {% if printer.toolhead.homed_axes == "xyz" %} G1 F6000 Z10 ; Move Z Axis up 10 mm to allow filament ooze freely G90 ; Set coordinates to absolute G1 X0 Y221 F1000 ; Move Heat Bed to the front for easy print removal M84 ; Disable stepper motors {% endif %} ;set part fan speed to zero. M106 S0 ;bed and hotend are left at the print temps in case I want to restart. [gcode_macro PAUSE] gcode = {% set default_x = printer.toolhead.axis_minimum.x + 20 %} {% set default_y = printer.toolhead.axis_minimum.y + 20 %} {% if 'save_variables' in printer %} {% set svv = printer.save_variables.variables %} {% if 'park_x' in svv %} {% set default_x = svv.park_x %} {% endif %} {% if 'park_y' in svv %} {% set default_y = svv.park_y %} {% endif %} {% endif %} {% set x = params.X|default(default_x)|float %} {% set y = params.Y|default(default_y)|float %} {% set z = params.Z|default(20)|float %} {% set r = params.R|default(3)|float %} {% if printer.pause_resume.is_paused %} {action_respond_info("Already paused")} {% elif printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} PAUSE {% if r > 0.0 %} RETRACT D={r} {% endif %} G27 X{x} Y{y} Z{z} {% endif %} [gcode_macro RESUME] gcode = SET_IDLE_TIMEOUT TIMEOUT=600 RESUME RESPOND TYPE=command MSG=action:resumed [bed_mesh default] version = 1 points = -2.110000, -2.145000, -2.000000 -1.962500, -2.010000, -1.997500 -1.937500, -1.952500, -1.915000 tension = 0.2 min_x = 39.0 algo = lagrange y_count = 3 mesh_y_pps = 2 min_y = 15.0 x_count = 3 max_y = 215.0 mesh_x_pps = 2 max_x = 200.0 [input_shaper] shaper_type_y = zv shaper_freq_y = 36.2 shaper_type_x = zv shaper_freq_x = 38.6 [endstop_phase stepper_z] trigger_phase = 30/64 ======================= Extruder max_extrude_ratio=0.266081 mcu 'mcu': Starting serial connect Loaded MCU 'mcu' 94 commands (v0.10.0-184-gdd714fc7 / gcc: (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] binutils: (2.31.1-11+rpi1+11) 2.31.1) MCU 'mcu' config: BUS_PINS_twi1=PB5,PB4 BUS_PINS_twi0=PA4,PA3 BUS_PINS_spi=PA12,PA13,PA14 BUS_PINS_usart0=PB0,PB1,PB13 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_usart1=PA21,PA22,PA23 PWM_MAX=255 CLOCK_FREQ=120000000 RESERVE_PINS_USB=PB10,PB11 MCU=sam4e8e STATS_SUMSQ_BASE=256 mcu 'rpi': Starting connect Loaded MCU 'rpi' 101 commands (v0.10.0-184-gdd714fc7 / gcc: (Raspbian 8.3.0-6+rpi1) 8.3.0 binutils: (GNU Binutils for Raspbian) 2.31.1) MCU 'rpi' config: PCA9685_MAX=4096 ADC_MAX=4095 PWM_MAX=32768 CLOCK_FREQ=50000000 MCU=linux STATS_SUMSQ_BASE=256 mcu_temperature 'mcu' nominal base=-279.382979 slope=702.127660 Sending MCU 'mcu' printer configuration... Configured MCU 'mcu' (1024 moves) Sending MCU 'rpi' printer configuration... MCU 'rpi' shutdown: Unable to open spi device clocksync state: mcu_freq=50000000 last_clock=100951371 clock_est=(370.694 83976469 49992590.105) min_half_rtt=0.000053 min_rtt_time=370.930 time_avg=370.694(0.017) clock_avg=83976469.018(847359.266) pred_variance=1842850728.704 clock_adj=(0.309 49994558.500) Dumping serial stats: bytes_write=776 bytes_read=4141 bytes_retransmit=0 bytes_invalid=0 send_seq=106 receive_seq=105 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 89 messages Sent 0 370.534774 370.534774 8: seq: 10, identify offset=0 count=40 Sent 1 370.535522 370.535522 8: seq: 11, identify offset=40 count=40 Sent 2 370.536147 370.536147 8: seq: 12, identify offset=80 count=40 Sent 3 370.536759 370.536759 9: seq: 13, identify offset=120 count=40 Sent 4 370.537366 370.537366 9: seq: 14, identify offset=160 count=40 Sent 5 370.537966 370.537966 9: seq: 15, identify offset=200 count=40 Sent 6 370.538564 370.538564 9: seq: 16, identify offset=240 count=40 Sent 7 370.539165 370.539165 9: seq: 17, identify offset=280 count=40 Sent 8 370.539765 370.539765 9: seq: 18, identify offset=320 count=40 Sent 9 370.540361 370.540361 9: seq: 19, identify offset=360 count=40 Sent 10 370.540959 370.540959 9: seq: 1a, identify offset=400 count=40 Sent 11 370.541552 370.541552 9: seq: 1b, identify offset=440 count=40 Sent 12 370.542149 370.542149 9: seq: 1c, identify offset=480 count=40 Sent 13 370.542746 370.542746 9: seq: 1d, identify offset=520 count=40 Sent 14 370.543333 370.543333 9: seq: 1e, identify offset=560 count=40 Sent 15 370.543922 370.543922 9: seq: 1f, identify offset=600 count=40 Sent 16 370.544560 370.544560 9: seq: 10, identify offset=640 count=40 Sent 17 370.545165 370.545165 9: seq: 11, identify offset=680 count=40 Sent 18 370.545762 370.545762 9: seq: 12, identify offset=720 count=40 Sent 19 370.546352 370.546352 9: seq: 13, identify offset=760 count=40 Sent 20 370.546943 370.546943 9: seq: 14, identify offset=800 count=40 Sent 21 370.547529 370.547529 9: seq: 15, identify offset=840 count=40 Sent 22 370.548114 370.548114 9: seq: 16, identify offset=880 count=40 Sent 23 370.548694 370.548694 9: seq: 17, identify offset=920 count=40 Sent 24 370.549296 370.549296 9: seq: 18, identify offset=960 count=40 Sent 25 370.549886 370.549886 9: seq: 19, identify offset=1000 count=40 Sent 26 370.550469 370.550469 9: seq: 1a, identify offset=1040 count=40 Sent 27 370.551057 370.551057 9: seq: 1b, identify offset=1080 count=40 Sent 28 370.551642 370.551642 9: seq: 1c, identify offset=1120 count=40 Sent 29 370.552270 370.552270 9: seq: 1d, identify offset=1160 count=40 Sent 30 370.552868 370.552868 9: seq: 1e, identify offset=1200 count=40 Sent 31 370.553466 370.553466 9: seq: 1f, identify offset=1240 count=40 Sent 32 370.554057 370.554057 9: seq: 10, identify offset=1280 count=40 Sent 33 370.554778 370.554778 9: seq: 11, identify offset=1320 count=40 Sent 34 370.555384 370.555384 9: seq: 12, identify offset=1360 count=40 Sent 35 370.555987 370.555987 9: seq: 13, identify offset=1400 count=40 Sent 36 370.556578 370.556578 9: seq: 14, identify offset=1440 count=40 Sent 37 370.557190 370.557190 9: seq: 15, identify offset=1480 count=40 Sent 38 370.557790 370.557790 9: seq: 16, identify offset=1520 count=40 Sent 39 370.558380 370.558380 9: seq: 17, identify offset=1560 count=40 Sent 40 370.558972 370.558972 9: seq: 18, identify offset=1600 count=40 Sent 41 370.559559 370.559559 9: seq: 19, identify offset=1640 count=40 Sent 42 370.560149 370.560149 9: seq: 1a, identify offset=1680 count=40 Sent 43 370.560730 370.560730 9: seq: 1b, identify offset=1720 count=40 Sent 44 370.561331 370.561331 9: seq: 1c, identify offset=1760 count=40 Sent 45 370.561916 370.561916 9: seq: 1d, identify offset=1800 count=40 Sent 46 370.562504 370.562504 9: seq: 1e, identify offset=1840 count=40 Sent 47 370.563089 370.563089 9: seq: 1f, identify offset=1880 count=40 Sent 48 370.563670 370.563670 9: seq: 10, identify offset=1920 count=40 Sent 49 370.564277 370.564277 9: seq: 11, identify offset=1960 count=40 Sent 50 370.564879 370.564879 9: seq: 12, identify offset=2000 count=40 Sent 51 370.565481 370.565481 9: seq: 13, identify offset=2040 count=40 Sent 52 370.566066 370.566066 9: seq: 14, identify offset=2080 count=40 Sent 53 370.566650 370.566650 9: seq: 15, identify offset=2120 count=40 Sent 54 370.567234 370.567234 9: seq: 16, identify offset=2160 count=40 Sent 55 370.567821 370.567821 9: seq: 17, identify offset=2200 count=40 Sent 56 370.568417 370.568417 9: seq: 18, identify offset=2240 count=40 Sent 57 370.569013 370.569013 9: seq: 19, identify offset=2280 count=40 Sent 58 370.569604 370.569604 9: seq: 1a, identify offset=2320 count=40 Sent 59 370.570183 370.570183 9: seq: 1b, identify offset=2360 count=40 Sent 60 370.570769 370.570769 9: seq: 1c, identify offset=2400 count=40 Sent 61 370.571352 370.571352 9: seq: 1d, identify offset=2440 count=40 Sent 62 370.571937 370.571937 9: seq: 1e, identify offset=2480 count=40 Sent 63 370.572551 370.572551 9: seq: 1f, identify offset=2520 count=40 Sent 64 370.573150 370.573150 9: seq: 10, identify offset=2560 count=40 Sent 65 370.573739 370.573739 9: seq: 11, identify offset=2600 count=40 Sent 66 370.574355 370.574355 9: seq: 12, identify offset=2640 count=40 Sent 67 370.574949 370.574949 9: seq: 13, identify offset=2680 count=40 Sent 68 370.575532 370.575532 9: seq: 14, identify offset=2720 count=40 Sent 69 370.576112 370.576112 9: seq: 15, identify offset=2760 count=40 Sent 70 370.576695 370.576695 9: seq: 16, identify offset=2800 count=40 Sent 71 370.577977 370.577977 9: seq: 17, identify offset=2840 count=40 Sent 72 370.578601 370.578601 9: seq: 18, identify offset=2880 count=40 Sent 73 370.579193 370.579193 9: seq: 19, identify offset=2910 count=40 Sent 74 370.625545 370.625545 6: seq: 1a, get_uptime Sent 75 370.676599 370.676599 6: seq: 1b, get_clock Sent 76 370.727312 370.727312 6: seq: 1c, get_clock Sent 77 370.777981 370.777981 6: seq: 1d, get_clock Sent 78 370.828707 370.828707 6: seq: 1e, get_clock Sent 79 370.879729 370.879729 6: seq: 1f, get_clock Sent 80 370.930289 370.930289 6: seq: 10, get_clock Sent 81 370.980899 370.980899 6: seq: 11, get_clock Sent 82 371.031556 371.031556 6: seq: 12, get_clock Sent 83 371.033243 371.033243 6: seq: 13, get_clock Sent 84 371.041412 371.041412 6: seq: 14, get_config Sent 85 371.042433 371.042433 7: seq: 15, allocate_oids count=2 Sent 86 371.042533 371.042533 7: seq: 16, config_spi_without_cs oid=0 Sent 87 371.042605 371.042605 8: seq: 17, config_adxl345 oid=1 spi_oid=0 Sent 88 371.042721 371.042721 13: seq: 18, spi_set_bus oid=0 spi_bus=spidev0.0 mode=3 rate=5000000 Dumping receive queue 87 messages Receive: 0 370.533828 0.000000 6: seq: 10, starting Receive: 1 370.535002 370.534774 48: seq: 11, identify_response offset=0 data='x\xda\xa5\x1ako\xdb\xc8\xf1\xafl\x05\x04\xb9\xb4\xb6N\x94HJ6\x90\x0f\x8e/w\x08Z7\xb9\xd8A\x0b\x14\x07\x82&W\xd2\xc2' Receive: 2 370.535699 370.535522 48: seq: 12, identify_response offset=40 data='|\x1dw\xe9G\x0f\xfe\xef\x9d\xd9\xd9\x17)\xc5I[\x7f\x11\xb93\xb3;;\xef\x19\xfa\x8f\xd9\xed \xaa2\xbb\xe7\xbd\x14m#g\xe7' Receive: 3 370.536317 370.536147 48: seq: 13, identify_response offset=80 data='\xb3]Q\x9c\xb3\x1f>\xe7\xb2\xbb\x15y\xc36\xf3\xd5|q\x9a\xfe\xa5\xefD\xf4\x86\xde\xd8\xadh\x06%*\tx\xbf\xfc\xfd\x0b{g' Receive: 4 370.536927 370.536759 49: seq: 14, identify_response offset=120 data="^\xd9\xb6\xed\x99%|\xc3\x96\xf3U4\x8ff'\xb3\xa2\xad\xeb\xbc)a\xf3?fyU\xb5E\xaex\xd6\x8aR\xb2\xa2\x1d\x1a\xf5\xf6" Receive: 5 370.537534 370.537366 49: seq: 15, identify_response offset=160 data="U1;_F'\xc0\x8aR\xc0C\x96\x17w\x0c\xc0\xb0\x1e \x9c\x05\xf0\xb2\xb4\xf0\xae\x95\xfaG4o_\r\xac\x1b\xaa*\x1b:\x8d" Receive: 6 370.538134 370.537966 49: seq: 16, identify_response offset=200 data='\xbf\x8a=\xc1\xef\x03\xef\x9f\xdc\x96\xc0\xc0\x1db\xf7\\\xaaL\x89\xe2N\xd2\x9b\xea\xf3F\xd6Be\xf6P&\x1a\x90\x8b\xe1o\t\xf7\xa8' Receive: 7 370.538736 370.538564 49: seq: 17, identify_response offset=240 data='x\xdegr?\xa8\xb2}hf\xe7)^\xad\xd9\x8a\x1dp\xf4X\xad\xe2\xc4\x1e!;\x91\xd1#\xf0\xb1\xf4XM^\xb5\xbbL4\x8e' Receive: 8 370.539337 370.539165 49: seq: 18, identify_response offset=280 data='{\xcd\xf6\xec= 170 %} G1 F1800 E-1 ; Retract filament 3 mm to prevent oozing {% endif %} ;if all axis are homed, lift the hotend to leave room for hot filament to ooze and to keep it clear of the bed. {% if printer.toolhead.homed_axes == "xyz" %} G1 F6000 Z10 ; Move Z Axis up 10 mm to allow filament ooze freely G90 ; Set coordinates to absolute G1 X0 Y221 F1000 ; Move Heat Bed to the front for easy print removal M84 ; Disable stepper motors {% endif %} ;set part fan speed to zero. M106 S0 ;bed and hotend are left at the print temps in case I want to restart. [gcode_macro PAUSE] gcode = {% set default_x = printer.toolhead.axis_minimum.x + 20 %} {% set default_y = printer.toolhead.axis_minimum.y + 20 %} {% if 'save_variables' in printer %} {% set svv = printer.save_variables.variables %} {% if 'park_x' in svv %} {% set default_x = svv.park_x %} {% endif %} {% if 'park_y' in svv %} {% set default_y = svv.park_y %} {% endif %} {% endif %} {% set x = params.X|default(default_x)|float %} {% set y = params.Y|default(default_y)|float %} {% set z = params.Z|default(20)|float %} {% set r = params.R|default(3)|float %} {% if printer.pause_resume.is_paused %} {action_respond_info("Already paused")} {% elif printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} PAUSE {% if r > 0.0 %} RETRACT D={r} {% endif %} G27 X{x} Y{y} Z{z} {% endif %} [gcode_macro RESUME] gcode = SET_IDLE_TIMEOUT TIMEOUT=600 RESUME RESPOND TYPE=command MSG=action:resumed [bed_mesh default] version = 1 points = -2.110000, -2.145000, -2.000000 -1.962500, -2.010000, -1.997500 -1.937500, -1.952500, -1.915000 tension = 0.2 min_x = 39.0 algo = lagrange y_count = 3 mesh_y_pps = 2 min_y = 15.0 x_count = 3 max_y = 215.0 mesh_x_pps = 2 max_x = 200.0 [input_shaper] shaper_type_y = zv shaper_freq_y = 36.2 shaper_type_x = zv shaper_freq_x = 38.6 [endstop_phase stepper_z] trigger_phase = 30/64 ======================= Extruder max_extrude_ratio=0.266081 mcu 'mcu': Starting serial connect Loaded MCU 'mcu' 94 commands (v0.10.0-184-gdd714fc7 / gcc: (15:7-2018-q2-6) 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] binutils: (2.31.1-11+rpi1+11) 2.31.1) MCU 'mcu' config: BUS_PINS_twi1=PB5,PB4 BUS_PINS_twi0=PA4,PA3 BUS_PINS_spi=PA12,PA13,PA14 BUS_PINS_usart0=PB0,PB1,PB13 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_usart1=PA21,PA22,PA23 PWM_MAX=255 CLOCK_FREQ=120000000 RESERVE_PINS_USB=PB10,PB11 MCU=sam4e8e STATS_SUMSQ_BASE=256 mcu 'rpi': Starting connect Loaded MCU 'rpi' 101 commands (v0.10.0-184-gdd714fc7 / gcc: (Raspbian 8.3.0-6+rpi1) 8.3.0 binutils: (GNU Binutils for Raspbian) 2.31.1) MCU 'rpi' config: PCA9685_MAX=4096 ADC_MAX=4095 PWM_MAX=32768 CLOCK_FREQ=50000000 MCU=linux STATS_SUMSQ_BASE=256 mcu_temperature 'mcu' nominal base=-279.382979 slope=702.127660 Sending MCU 'mcu' printer configuration... Configured MCU 'mcu' (1024 moves) Sending MCU 'rpi' printer configuration... MCU 'rpi' shutdown: Unable to open spi device clocksync state: mcu_freq=50000000 last_clock=112653597 clock_est=(438.933 95694090 49989060.742) min_half_rtt=0.000049 min_rtt_time=439.272 time_avg=438.933(0.017) clock_avg=95694090.418(845503.127) pred_variance=1843231934.535 clock_adj=(0.062 49991646.750) Dumping serial stats: bytes_write=781 bytes_read=4168 bytes_retransmit=0 bytes_invalid=0 send_seq=107 receive_seq=107 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 91 messages Sent 0 438.756052 438.756052 8: seq: 10, identify offset=0 count=40 Sent 1 438.757030 438.757030 8: seq: 11, identify offset=40 count=40 Sent 2 438.757748 438.757748 8: seq: 12, identify offset=80 count=40 Sent 3 438.758440 438.758440 9: seq: 13, identify offset=120 count=40 Sent 4 438.759142 438.759142 9: seq: 14, identify offset=160 count=40 Sent 5 438.759837 438.759837 9: seq: 15, identify offset=200 count=40 Sent 6 438.760522 438.760522 9: seq: 16, identify offset=240 count=40 Sent 7 438.761204 438.761204 9: seq: 17, identify offset=280 count=40 Sent 8 438.761881 438.761881 9: seq: 18, identify offset=320 count=40 Sent 9 438.762560 438.762560 9: seq: 19, identify offset=360 count=40 Sent 10 438.763248 438.763248 9: seq: 1a, identify offset=400 count=40 Sent 11 438.765593 438.765593 9: seq: 1b, identify offset=440 count=40 Sent 12 438.766468 438.766468 9: seq: 1c, identify offset=480 count=40 Sent 13 438.767312 438.767312 9: seq: 1d, identify offset=520 count=40 Sent 14 438.768122 438.768122 9: seq: 1e, identify offset=560 count=40 Sent 15 438.768918 438.768918 9: seq: 1f, identify offset=600 count=40 Sent 16 438.769755 438.769755 9: seq: 10, identify offset=640 count=40 Sent 17 438.770546 438.770546 9: seq: 11, identify offset=680 count=40 Sent 18 438.771353 438.771353 9: seq: 12, identify offset=720 count=40 Sent 19 438.772173 438.772173 9: seq: 13, identify offset=760 count=40 Sent 20 438.772987 438.772987 9: seq: 14, identify offset=800 count=40 Sent 21 438.773765 438.773765 9: seq: 15, identify offset=840 count=40 Sent 22 438.774535 438.774535 9: seq: 16, identify offset=880 count=40 Sent 23 438.775540 438.775540 9: seq: 17, identify offset=920 count=40 Sent 24 438.776288 438.776288 9: seq: 18, identify offset=960 count=40 Sent 25 438.777029 438.777029 9: seq: 19, identify offset=1000 count=40 Sent 26 438.777788 438.777788 9: seq: 1a, identify offset=1040 count=40 Sent 27 438.778526 438.778526 9: seq: 1b, identify offset=1080 count=40 Sent 28 438.779534 438.779534 9: seq: 1c, identify offset=1120 count=40 Sent 29 438.780304 438.780304 9: seq: 1d, identify offset=1160 count=40 Sent 30 438.781052 438.781052 9: seq: 1e, identify offset=1200 count=40 Sent 31 438.781804 438.781804 9: seq: 1f, identify offset=1240 count=40 Sent 32 438.782537 438.782537 9: seq: 10, identify offset=1280 count=40 Sent 33 438.783460 438.783460 9: seq: 11, identify offset=1320 count=40 Sent 34 438.784206 438.784206 9: seq: 12, identify offset=1360 count=40 Sent 35 438.784946 438.784946 9: seq: 13, identify offset=1400 count=40 Sent 36 438.785687 438.785687 9: seq: 14, identify offset=1440 count=40 Sent 37 438.786424 438.786424 9: seq: 15, identify offset=1480 count=40 Sent 38 438.787314 438.787314 9: seq: 16, identify offset=1520 count=40 Sent 39 438.788064 438.788064 9: seq: 17, identify offset=1560 count=40 Sent 40 438.788806 438.788806 9: seq: 18, identify offset=1600 count=40 Sent 41 438.789682 438.789682 9: seq: 19, identify offset=1640 count=40 Sent 42 438.790434 438.790434 9: seq: 1a, identify offset=1680 count=40 Sent 43 438.791281 438.791281 9: seq: 1b, identify offset=1720 count=40 Sent 44 438.792028 438.792028 9: seq: 1c, identify offset=1760 count=40 Sent 45 438.792772 438.792772 9: seq: 1d, identify offset=1800 count=40 Sent 46 438.793586 438.793586 9: seq: 1e, identify offset=1840 count=40 Sent 47 438.794331 438.794331 9: seq: 1f, identify offset=1880 count=40 Sent 48 438.795290 438.795290 9: seq: 10, identify offset=1920 count=40 Sent 49 438.796062 438.796062 9: seq: 11, identify offset=1960 count=40 Sent 50 438.796809 438.796809 9: seq: 12, identify offset=2000 count=40 Sent 51 438.797608 438.797608 9: seq: 13, identify offset=2040 count=40 Sent 52 438.798396 438.798396 9: seq: 14, identify offset=2080 count=40 Sent 53 438.799265 438.799265 9: seq: 15, identify offset=2120 count=40 Sent 54 438.800053 438.800053 9: seq: 16, identify offset=2160 count=40 Sent 55 438.800798 438.800798 9: seq: 17, identify offset=2200 count=40 Sent 56 438.801538 438.801538 9: seq: 18, identify offset=2240 count=40 Sent 57 438.802285 438.802285 9: seq: 19, identify offset=2280 count=40 Sent 58 438.803985 438.803985 9: seq: 1a, identify offset=2320 count=40 Sent 59 438.804784 438.804784 9: seq: 1b, identify offset=2360 count=40 Sent 60 438.805615 438.805615 9: seq: 1c, identify offset=2400 count=40 Sent 61 438.806384 438.806384 9: seq: 1d, identify offset=2440 count=40 Sent 62 438.807204 438.807204 9: seq: 1e, identify offset=2480 count=40 Sent 63 438.807999 438.807999 9: seq: 1f, identify offset=2520 count=40 Sent 64 438.808793 438.808793 9: seq: 10, identify offset=2560 count=40 Sent 65 438.809661 438.809661 9: seq: 11, identify offset=2600 count=40 Sent 66 438.810459 438.810459 9: seq: 12, identify offset=2640 count=40 Sent 67 438.811277 438.811277 9: seq: 13, identify offset=2680 count=40 Sent 68 438.812056 438.812056 9: seq: 14, identify offset=2720 count=40 Sent 69 438.812851 438.812851 9: seq: 15, identify offset=2760 count=40 Sent 70 438.813676 438.813676 9: seq: 16, identify offset=2800 count=40 Sent 71 438.814444 438.814444 9: seq: 17, identify offset=2840 count=40 Sent 72 438.815294 438.815294 9: seq: 18, identify offset=2880 count=40 Sent 73 438.816126 438.816126 9: seq: 19, identify offset=2910 count=40 Sent 74 438.864826 438.864826 6: seq: 1a, get_uptime Sent 75 438.915822 438.915822 6: seq: 1b, get_clock Sent 76 438.966500 438.966500 6: seq: 1c, get_clock Sent 77 439.017175 439.017175 6: seq: 1d, get_clock Sent 78 439.067884 439.067884 6: seq: 1e, get_clock Sent 79 439.118547 439.118547 6: seq: 1f, get_clock Sent 80 439.169158 439.169158 6: seq: 10, get_clock Sent 81 439.219794 439.219794 6: seq: 11, get_clock Sent 82 439.270436 439.270436 6: seq: 12, get_clock Sent 83 439.272166 439.272166 6: seq: 13, get_clock Sent 84 439.282135 439.282135 6: seq: 14, get_config Sent 85 439.283264 439.283264 7: seq: 15, allocate_oids count=2 Sent 86 439.283359 439.283359 7: seq: 16, config_spi_without_cs oid=0 Sent 87 439.283433 439.283433 8: seq: 17, config_adxl345 oid=1 spi_oid=0 Sent 88 439.283503 439.283503 13: seq: 18, spi_set_bus oid=0 spi_bus=spidev0.0 mode=3 rate=5000000 Sent 89 439.283568 439.283568 11: seq: 19, finalize_config crc=4031677248 Sent 90 439.283679 439.283679 6: seq: 1a, get_config Dumping receive queue 87 messages Receive: 0 438.755032 0.000000 6: seq: 10, starting Receive: 1 438.756280 438.756052 48: seq: 11, identify_response offset=0 data='x\xda\xa5\x1ako\xdb\xc8\xf1\xafl\x05\x04\xb9\xb4\xb6N\x94HJ6\x90\x0f\x8e/w\x08Z7\xb9\xd8A\x0b\x14\x07\x82&W\xd2\xc2' Receive: 2 438.757237 438.757030 48: seq: 12, identify_response offset=40 data='|\x1dw\xe9G\x0f\xfe\xef\x9d\xd9\xd9\x17)\xc5I[\x7f\x11\xb93\xb3;;\xef\x19\xfa\x8f\xd9\xed \xaa2\xbb\xe7\xbd\x14m#g\xe7' Receive: 3 438.757945 438.757748 48: seq: 13, identify_response offset=80 data='\xb3]Q\x9c\xb3\x1f>\xe7\xb2\xbb\x15y\xc36\xf3\xd5|q\x9a\xfe\xa5\xefD\xf4\x86\xde\xd8\xadh\x06%*\tx\xbf\xfc\xfd\x0b{g' Receive: 4 438.758639 438.758440 49: seq: 14, identify_response offset=120 data="^\xd9\xb6\xed\x99%|\xc3\x96\xf3U4\x8ff'\xb3\xa2\xad\xeb\xbc)a\xf3?fyU\xb5E\xaex\xd6\x8aR\xb2\xa2\x1d\x1a\xf5\xf6" Receive: 5 438.759338 438.759142 49: seq: 15, identify_response offset=160 data="U1;_F'\xc0\x8aR\xc0C\x96\x17w\x0c\xc0\xb0\x1e \x9c\x05\xf0\xb2\xb4\xf0\xae\x95\xfaG4o_\r\xac\x1b\xaa*\x1b:\x8d" Receive: 6 438.760032 438.759837 49: seq: 16, identify_response offset=200 data='\xbf\x8a=\xc1\xef\x03\xef\x9f\xdc\x96\xc0\xc0\x1db\xf7\\\xaaL\x89\xe2N\xd2\x9b\xea\xf3F\xd6Be\xf6P&\x1a\x90\x8b\xe1o\t\xf7\xa8' Receive: 7 438.760717 438.760522 49: seq: 17, identify_response offset=240 data='x\xdegr?\xa8\xb2}hf\xe7)^\xad\xd9\x8a\x1dp\xf4X\xad\xe2\xc4\x1e!;\x91\xd1#\xf0\xb1\xf4XM^\xb5\xbbL4\x8e' Receive: 8 438.761397 438.761204 49: seq: 18, identify_response offset=280 data='{\xcd\xf6\xec