Starting Klippy... Args: ['/home/pi/klipper/klippy/klippy.py', '/home/pi/printer_data/config/printer.cfg', '-l', '/home/pi/printer_data/logs/klippy.log', '-I', '/home/pi/printer_data/comms/klippy.serial', '-a', '/home/pi/printer_data/comms/klippy.sock'] Git version: 'v0.12.0-229-gaa507c897-dirty' Untracked files: klippy/extras/beacon.py Branch: work-ldcscan-20240601 Remote: origin Tracked URL: https://github.com/Klipper3d/klipper CPU: 4 core ? Python: '3.11.2 (main, Mar 13 2023, 12:18:29) [GCC 12.2.0]' Start printer at Sun Jun 9 11:07:43 2024 (1717945663.2 175990.2) ===== Config file ===== [gcode_macro M420] gcode = {% set default_mesh = "mesh1"|string %} {% if params.S == "1" or 'L' in params %} {% if 'L' in params %} BED_MESH_PROFILE LOAD=mesh{params.L} {action_respond_info("M420 L%s loaded mesh%s" % (params.L, params.L))} {% else %} BED_MESH_PROFILE LOAD={default_mesh} {action_respond_info("M420 S%s loaded %s" % (params.S, default_mesh))} {% endif %} {% elif 'S' in params %} BED_MESH_CLEAR {action_respond_info("M420 S%s disabled mesh" % (params.S))} {% endif %} [gcode_macro M900] description = "Convert Marlin linear advance (M900) commands to Klipper (SET_PRESSURE_ADVANCE) commands. For use with Marlin's linear advance calibration: https://marlinfw.org/tools/lin_advance/k-factor.html" gcode = {% if 'K' in params and 'E' in params %} SET_PRESSURE_ADVANCE EXTRUDER={params.E} ADVANCE={params.K} {% elif 'K' in params %} SET_PRESSURE_ADVANCE ADVANCE={params.K} {% else %} {action_respond_info("K not specified")} {% endif %} [gcode_macro G27] 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 %} {% if printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} SAVE_GCODE_STATE NAME=G27_state G91 G1 Z{z} G90 G1 X{x} Y{y} F3000 RESTORE_GCODE_STATE NAME=G27_state MOVE=0 {% endif %} [gcode_macro G29] gcode = {% set t = params.T|default(0)|float %} {% if printer.idle_timeout.state == "Printing" %} {action_respond_info("This command cannot be used while printing")} {% elif printer.toolhead.homed_axes != "xyz" %} {action_respond_info("Please home XYZ first")} {% else %} SAVE_GCODE_STATE NAME=G29_state G90 G1 Z10 F240 {% if t > 30.0 %} M190 S{t} {% endif %} BED_MESH_CALIBRATE {% if 'S' in params %} M140 S{params.S} {% endif %} G90 G1 Z10 F240 G1 X150 Y155 F6000 RESTORE_GCODE_STATE NAME=G29_state MOVE=0 {% endif %} [gcode_macro PRINT_START] gcode = M420 S {% set BED_TEMP = params.BED_TEMP|default(60)|float %} {% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(210)|float %} {action_respond_info("Heating Bed...")} M140 S{BED_TEMP} G90 SET_GCODE_OFFSET Z=0.0 G28 Z_TILT_ADJUST M190 S{BED_TEMP} BED_MESH_CALIBRATE METHOD=scan ADAPTIVE=1 WIPE_NOZZLE WLED_ON strip=overhead preset=2 M109 S{EXTRUDER_TEMP} LINE_PURGE [gcode_macro PRINT_END] gcode = M140 S0 M104 S0 M106 S0 M117 Print Done WLED_ON strip=overhead preset=1 REMOVE_PRINT [gcode_macro REMOVE_PRINT] gcode = {% 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 = 100.0 %} {% else %} {% set z_safe = max_z - act_z %} {% endif %} {% set initial_z = printer.toolhead.position.z %} {% if "xyz" in printer.toolhead.homed_axes %} G91 G1 Z+10 F900 G90 G1 X0 Y{y_park} F8000 {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro PAUSE] description = Pauses the current 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 - 5.0) %} {% set z_safe = 5.0 %} {% else %} {% set z_safe = max_z - act_z %} {% endif %} PAUSE_BASE G91 {% if printer.extruder.can_extrude|lower == 'true' %} 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 = Resumes the currently paused print. rename_existing = RESUME_BASE gcode = {% set E = printer["gcode_macro PAUSE"].extrude|float %} {% if 'VELOCITY' in params|upper %} {% set get_params = ('VELOCITY=' + params.VELOCITY) %} {%else %} {% set get_params = "" %} {% endif %} {% if printer.extruder.can_extrude|lower == 'true' %} G91 G1 E{E} F2100 {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} RESUME_BASE {get_params} [gcode_macro CANCEL_PRINT] description = Cancels the current print. Usage: CANCEL_PRINT rename_existing = CANCEL_PRINT_BASE gcode = TURN_OFF_HEATERS M220 S100 M221 S100 SAFE_RETRACT SMART_PARK M106 S0 CANCEL_PRINT_BASE REMOVE_PRINT [gcode_macro COLOR_CHANGE] description = Pauses the current print. Usage: COLOR_CHANGE gcode = {% set Z = params.Z|default(10)|float %} SAVE_GCODE_STATE NAME=M600_state PAUSE G91 G1 E-.8 F2700 G1 Z{Z} G91 G1 E-5 F1000 RESTORE_GCODE_STATE NAME=M600_state [gcode_macro M600] description = Pauses the current print. Usage: M600 [X] [Y] [Z] gcode = {% set X = params.X|default(25)|float %} {% set Y = params.Y|default(25)|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-15 F1000 RESTORE_GCODE_STATE NAME=M600_state [gcode_macro M601] description = Pauses the current print. Usage: M601 gcode = PAUSE [gcode_macro M602] description = Resumes the currently paused print. Usage: M602 gcode = RESUME [gcode_macro M24] rename_existing = M24.6245197 gcode = {% if printer.pause_resume.is_paused %} RESUME {% else %} M24.6245197 {% endif %} [gcode_macro M25] rename_existing = M25.6245197 gcode = PAUSE [gcode_macro SAFE_RETRACT] description = Retract gcode = SAVE_GCODE_STATE NAME=safe_retract {% if printer.extruder.can_extrude|lower == 'true' %} M83 G91 {% if printer.firmware_retraction is defined %} {% set RETRACT = G10 | string %} {% set UNRETRACT = G11 | string %} {% else %} {% set RETRACT = 'G1 E-.5 F2100' | string %} {% set UNRETRACT = 'G1 E.5 F2100' | string %} {% endif %} {RETRACT} G1 Z0.2 F2400 G1 E-2 F300 {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} RESTORE_GCODE_STATE NAME=safe_retract [gcode_macro WLED_ON] description = Turn WLED strip on using optional preset and resets led colors gcode = {% set strip = params.STRIP|default('overhead')|string %} {% set preset = params.PRESET|default(-1)|int %} {action_call_remote_method("set_wled_state", strip=strip, state=True, preset=preset)} [gcode_macro WLED_CALIBRATE] description = Turn WLED strip on using optional preset and resets led colors gcode = WLED_ON STRIP=overhead PRESET=3 [gcode_macro WLED_CONTROL] description = Control effect values and brightness gcode = {% set strip = params.STRIP|default('overhead')|string %} {% set brightness = params.BRIGHTNESS|default(-1)|int %} {% set intensity = params.INTENSITY|default(-1)|int %} {% set speed = params.SPEED|default(-1)|int %} {action_call_remote_method("set_wled_state", strip=strip, brightness=brightness, intensity=intensity, speed=speed)} [gcode_macro WLED_OFF] description = Turn WLED strip off gcode = {% set strip = params.STRIP|default('overhead')|string %} {action_call_remote_method("set_wled_state", strip=strip, state=False)} [gcode_macro SET_WLED] description = SET_LED like functionality for WLED, applies to all active segments gcode = {% set strip = params.STRIP|string %} {% set red = params.RED|default(0)|float %} {% set green = params.GREEN|default(0)|float %} {% set blue = params.BLUE|default(0)|float %} {% set white = params.WHITE|default(0)|float %} {% set index = params.INDEX|default(-1)|int %} {% set transmit = params.TRANSMIT|default(1)|int %} {action_call_remote_method("set_wled", strip=strip, red=red, green=green, blue=blue, white=white, index=index, transmit=transmit)} [gcode_macro POWER_ON_PRINTER] description = Power on printer gcode = {action_call_remote_method( "set_device_power", device="Shelly1PM", state="on")} WLED_ON [gcode_macro POWER_OFF_PRINTER] gcode = {% set center_x = printer.toolhead.axis_maximum.x / 2 | float %} {% set center_y = printer.toolhead.axis_maximum.y / 2 | float %} WLED_OFF LIGHT_SWITCH {action_call_remote_method( "set_device_power", device="Shelly1PM", state="off")} [delayed_gcode delayed_printer_off] initial_duration = 0. gcode = SMART_PARK {% set strip = params.STRIP|default('overhead')|string %} {% if printer.idle_timeout.state == "Idle" %} POWER_OFF_PRINTER {% endif %} [idle_timeout] gcode = TURN_OFF_HEATERS M84 timeout = 1800 [gcode_macro GREASE_WHEELS] description = move the print head around to grease wheels gcode = {% set speed = params.SPEED|default(150)|int %} {% set iterations = params.ITERATIONS|default(1)|int %} {% set accel = params.ACCEL|default(printer.configfile.settings.printer.max_accel)|int %} TEST_SPEED SPEED={speed} ACCEL={accel} ITERATIONS={iterations} [gcode_macro UP_AND_DOWN] description = move the print head around to grease wheels gcode = G90 G0 Z5 G0 Z105 G0 Z55 G0 Z155 G0 Z105 G0 Z205 G0 Z155 G0 Z205 G0 Z105 G0 Z155 G0 Z55 G0 Z105 G0 Z5 [gcode_macro TEST_SPEED] gcode = {% set speed = params.SPEED|default(printer.configfile.settings.printer.max_velocity)|int %} {% set iterations = params.ITERATIONS|default(5)|int %} {% set accel = params.ACCEL|default(printer.configfile.settings.printer.max_accel)|int %} {% set bound = params.BOUND|default(20)|int %} {% set smallpatternsize = SMALLPATTERNSIZE|default(20)|int %} {% set x_min = printer.toolhead.axis_minimum.x + bound %} {% set x_max = printer.toolhead.axis_maximum.x - bound %} {% set y_min = printer.toolhead.axis_minimum.y + bound %} {% set y_max = printer.toolhead.axis_maximum.y - bound %} {% set x_center = (printer.toolhead.axis_minimum.x|float + printer.toolhead.axis_maximum.x|float ) / 2 %} {% set y_center = (printer.toolhead.axis_minimum.y|float + printer.toolhead.axis_maximum.y|float ) / 2 %} {% set x_center_min = x_center - (smallpatternsize/2) %} {% set x_center_max = x_center + (smallpatternsize/2) %} {% set y_center_min = y_center - (smallpatternsize/2) %} {% set y_center_max = y_center + (smallpatternsize/2) %} SAVE_GCODE_STATE NAME=test_speed { action_respond_info("TEST_SPEED: starting %d iterations at speed %d, accel %d" % (iterations, speed, accel)) } G28 {% if printer.configfile.settings.quad_gantry_level %} {% if printer.quad_gantry_level.applied == False %} QUAD_GANTRY_LEVEL G28 Z {% endif %} {% endif %} G90 G1 X{printer.toolhead.axis_maximum.x-50} Y{printer.toolhead.axis_maximum.y-50} F{30*60} G28 X Y G0 X{printer.toolhead.axis_maximum.x-1} Y{printer.toolhead.axis_maximum.y-1} F{30*60} G4 P1000 GET_POSITION G0 X{x_min} Y{y_min} Z{bound + 10} F{speed*60} SET_VELOCITY_LIMIT VELOCITY={speed} ACCEL={accel} {% for i in range(iterations) %} G0 X{x_min} Y{y_min} F{speed*60} G0 X{x_max} Y{y_max} F{speed*60} G0 X{x_min} Y{y_min} F{speed*60} G0 X{x_max} Y{y_min} F{speed*60} G0 X{x_min} Y{y_max} F{speed*60} G0 X{x_max} Y{y_min} F{speed*60} G0 X{x_min} Y{y_min} F{speed*60} G0 X{x_min} Y{y_max} F{speed*60} G0 X{x_max} Y{y_max} F{speed*60} G0 X{x_max} Y{y_min} F{speed*60} G0 X{x_center_min} Y{y_center_min} F{speed*60} G0 X{x_center_max} Y{y_center_max} F{speed*60} G0 X{x_center_min} Y{y_center_min} F{speed*60} G0 X{x_center_max} Y{y_center_min} F{speed*60} G0 X{x_center_min} Y{y_center_max} F{speed*60} G0 X{x_center_max} Y{y_center_min} F{speed*60} G0 X{x_center_min} Y{y_center_min} F{speed*60} G0 X{x_center_min} Y{y_center_max} F{speed*60} G0 X{x_center_max} Y{y_center_max} F{speed*60} G0 X{x_center_max} Y{y_center_min} F{speed*60} {% endfor %} SET_VELOCITY_LIMIT VELOCITY={printer.configfile.settings.printer.max_velocity} ACCEL={printer.configfile.settings.printer.max_accel} G28 G90 G0 X{printer.toolhead.axis_maximum.x-1} Y{printer.toolhead.axis_maximum.y-1} F{30*60} G4 P1000 GET_POSITION RESTORE_GCODE_STATE NAME=test_speed [gcode_macro CG28] variable_output = 118 gcode = {% if "x" in rawparams|string|lower %} {% set X = True %} {% endif %} {% if "y" in rawparams|string|lower %} {% set Y = True %} {% endif %} {% if "z" in rawparams|string|lower %} {% set Z = True %} {% endif %} {% if rawparams|string|lower == "" %} {% set ALL = True %} {% set X = True %} {% set Y = True %} {% set Z = True %} {% endif %} {% if printer.toolhead.homed_axes != "xyz" %} {% if "x" not in printer.toolhead.homed_axes %} {% set home_x = True %} {% endif %} {% if "y" not in printer.toolhead.homed_axes %} {% set home_y = True %} {% endif %} {% if "z" not in printer.toolhead.homed_axes %} {% set home_z = True %} {% endif %} {% if home_x == True and home_y == True and home_z == True %} {% if ALL == True %} M{output} Homing all axes G28 {% else %} {% if X == True %} M{output} Homing X axis G28 X {% endif %} {% if Y == True %} M{output} Homing Y axis G28 Y {% endif %} {% if Z == True %} M{output} Homing Z axis G28 Z {% endif %} {% endif %} {% else %} {% if home_x == True %} {% if X == True %} M{output} Homing X axis G28 X {% endif %} {% endif %} {% if home_y == True %} {% if Y == True %} M{output} Homing Y axis G28 Y {% endif %} {% endif %} {% if home_z == True %} {% if Z == True %} M{output} Homing Z axis G28 Z {% endif %} {% endif %} {% endif %} {% else %} M{output} All axes are homed {% endif %} [gcode_macro CQGL] gcode = {% set output = printer['CG28'].output %} {% if printer.quad_gantry_level.applied == False %} CG28 M{output} Leveling gantry QUAD_GANTRY_LEVEL G28 Z {% endif %} [gcode_macro CZ_TILT_ADJUST] gcode = {% set output = printer['CG28'].output %} {% if printer.z_tilt.applied == False %} CG28 M{output} Leveling gantry Z_TILT_ADJUST {% endif %} [gcode_macro HOME_IF_NEEDED] gcode = CG28 { rawparams } [gcode_macro LAZY_HOME] gcode = CG28 { rawparams } [gcode_macro CHECK_HOME] gcode = CG28 { rawparams } [respond] [display_status] [gcode_macro M116] description = Silent status feedback gcode = [gcode_macro M1187] description = Dual status feedback gcode = M117 {rawparams} M118 {rawparams} [gcode_macro M1178] gcode = M1187 {rawparams} [gcode_macro WIPE_NOZZLE] description = clean_nozzle gcode = {% set initial_z = printer.toolhead.position.z %} CLEAN_NOZZLE G1 Z{initial_z} F1000 [gcode_macro CLEAN_NOZZLE] description = wipe nozzle clean of extruded debris USAGE: CLEAN_NOZZLE variable_start_x = 55 variable_start_y = -12 variable_start_z = 0 variable_wipe_axis = 'x' variable_wipe_dist = 50 variable_wipe_qty = 10 variable_wipe_spd = 100 variable_raise_distance = 25 variable_extruder_name = 'extruder' variable_extruder_temp = 190 variable_output = 118 variable_pre_hot = False variable_led_status = False variable_status_heat = 'STATUS_HEATING' variable_status_clean = 'STATUS_CLEANING' variable_ready_status = 'STATUS_READY' gcode = HOME_IF_NEEDED {% set nozzle_targ = params.TARGET|default(0)|float %} {% set is_hot = params.HOT|default(pre_hot|string) %} {% if is_hot|lower == "false" %} {% if led_status == True %} {status_heat} {% endif %} M{output} Heating extruder.. {% if nozzle_targ > 0 %} SET_HEATER_TEMPERATURE HEATER={extruder_name} TARGET={nozzle_targ} TEMPERATURE_WAIT SENSOR={extruder_name} MINIMUM={nozzle_targ} {% elif extruder_temp > 0 %} SET_HEATER_TEMPERATURE HEATER={extruder_name} TARGET={extruder_temp} TEMPERATURE_WAIT SENSOR={extruder_name} MINIMUM={extruder_temp} {% endif %} {% endif %} G90 G1 X{start_x} Y{start_y} F6000 G1 Z{start_z} F1500 {% if led_status == True %} {status_clean} {% endif %} M{output} Wiping nozzle.. {% for wipes in range(1, (wipe_qty + 1)) %} {% if wipe_axis|lower == 'x' %} G1 X{start_x + wipe_dist} F{wipe_spd * 60} G1 X{start_x} F{wipe_spd * 60} {% elif wipe_axis|lower == 'y' %} G1 Y{start_y + wipe_dist} F{wipe_spd * 60} G1 Y{start_y} F{wipe_spd * 60} {% else %} M{output} INVALID WIPE AXIS CONFIGURATION {% endif %} {% endfor %} G1 Z{raise_distance} {% if is_hot|lower == "false" %} M{output} Cooling extruder.. SET_HEATER_TEMPERATURE HEATER={extruder_name} TARGET=0 {% endif %} {% if led_status == True %} {status_ready} {% endif %} [gcode_macro G12] gcode = CLEAN_NOZZLE [gcode_macro m300] description = Emits and audible beep. Usage: M300 [P] [S] gcode = {% set settings = printer.configfile.settings %} {% if "output_pin beeper" in printer %} {% set P = (params.P|default(100)|int, 0)|max %} {% set S = (params.S|default(1000)|int, 1)|max %} SET_PIN PIN=beeper VALUE={% if settings["output_pin beeper"].pwm %}{ settings["output_pin beeper"].scale|default(1.0) * 0.5 } CYCLE_TIME={ 1.0 / S }{% else %}1{% endif %} G4 P{P} SET_PIN PIN=beeper VALUE=0 {% else %} {action_respond_info( "M300 is disabled. To enable create an [output_pin beeper] config.")} {% endif %} [gcode_macro BEEP] description = Emits and audible beep. Usage: BEEP [P] [S] gcode = {% set P = (params.P|default(100)|int, 0)|max %} {% set S = (params.S|default(1000)|int, 1)|max %} M300 P{P} S{S} [gcode_macro EXTRUSION_PID_CALIBRATE] description = "Calibrates the extruder pid" @param {string} [HEATER=extruder] - Name of the extruder in config @param {int} [TEMP=210] - Hotend temperature to calibrate with gcode = {% set heater = params.HEATER|default(extruder)|string %} {% set temp = params.TEMP|default(210)|int %} PID_CALIBRATE HEATER={heater} TARGET={temp} [gcode_macro BED_PID_CALIBRATE] description = "Calibrates the bed pid" @param {string} [HEATER=heater_bed] - Name of the bed in config @param {int} [TEMP=60] - Bed temperature to calibrate with gcode = {% set heater = params.HEATER|default(heater_bed)|string %} {% set temp = params.TEMP|default(60)|int %} PID_CALIBRATE HEATER={heater} TARGET={temp} [gcode_macro ZOFFSET_CALIBRATE] gcode = {% if "xyz" not in printer.toolhead.homed_axes %} G28 {% endif %} PROBE_CALIBRATE [gcode_macro ZOFFSET_CHECK] gcode = {% if "xyz" not in printer.toolhead.homed_axes %} G28 {% endif %} PROBE_ACCURACY [gcode_macro LOAD_FILAMENT] description = "Load Filament into extruder" USAGE: LOAD_FILAMENT [SPEED] [LENGTH] [EXTRUDER_TEMP] gcode = {% set SPEED = params.SPEED|default(300) %} {% set LENGTH = params.LENGTH|default(50) %} {% set max_velocity = printer.configfile.settings['extruder'].max_extrude_only_velocity %} SAVE_GCODE_STATE NAME=load_state {% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(180)|float %} M109 S{EXTRUDER_TEMP} G91 G92 E0 G1 E{LENGTH} F{max_velocity} G1 E25 F{SPEED} RESTORE_GCODE_STATE NAME=load_state [gcode_macro UNLOAD_FILAMENT] description = "Unload Filament from extruder" USAGE: UNLOAD_FILAMENT [SPEED] [LENGTH] [EXTRUDER_TEMP] gcode = {% set SPEED = params.SPEED|default(300) %} {% set LENGTH = params.LENGTH|default(420) %} {% set max_velocity = printer.configfile.settings['extruder'].max_extrude_only_velocity %} SAVE_GCODE_STATE NAME=unload_state {% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(210)|float %} M109 S{EXTRUDER_TEMP} G91 G92 E0 G1 E25 F{SPEED} G1 E-{LENGTH} F{max_velocity} RESTORE_GCODE_STATE NAME=unload_state [gcode_macro GET_TIMELAPSE_SETUP] description = Print the Timelapse setup gcode = {% set tl = printer['gcode_macro TIMELAPSE_TAKE_FRAME'] %} {% set output_txt = ["Timelapse Setup:"] %} {% set _dummy = output_txt.append("enable: %s" % tl.enable) %} {% set _dummy = output_txt.append("park: %s" % tl.park.enable) %} {% if tl.park.enable %} {% set _dummy = output_txt.append("park position: %s time: %s s" % (tl.park.pos, tl.park.time)) %} {% set _dummy = output_txt.append("park cord x:%s y:%s dz:%s" % (tl.park.coord.x, tl.park.coord.y, tl.park.coord.dz)) %} {% set _dummy = output_txt.append("travel speed: %s mm/s" % tl.speed.travel) %} {% endif %} {% set _dummy = output_txt.append("fw_retract: %s" % tl.extruder.fw_retract) %} {% if not tl.extruder.fw_retract %} {% set _dummy = output_txt.append("retract: %s mm speed: %s mm/s" % (tl.extruder.retract, tl.speed.retract)) %} {% set _dummy = output_txt.append("extrude: %s mm speed: %s mm/s" % (tl.extruder.extrude, tl.speed.extrude)) %} {% endif %} {% set _dummy = output_txt.append("verbose: %s" % tl.verbose) %} {action_respond_info(output_txt|join("\n"))} [gcode_macro _SET_TIMELAPSE_SETUP] description = Set user parameters for timelapse gcode = {% set tl = printer['gcode_macro TIMELAPSE_TAKE_FRAME'] %} {% set min = printer.toolhead.axis_minimum %} {% set max = printer.toolhead.axis_maximum %} {% set round_bed = True if printer.configfile.settings.printer.kinematics is in ['delta','polar','rotary_delta','winch'] else False %} {% set park = {'min' : {'x': (min.x / 1.42)|round(3) if round_bed else min.x|round(3), 'y': (min.y / 1.42)|round(3) if round_bed else min.y|round(3)}, 'max' : {'x': (max.x / 1.42)|round(3) if round_bed else max.x|round(3), 'y': (max.y / 1.42)|round(3) if round_bed else max.y|round(3)}, 'center': {'x': (max.x-(max.x-min.x)/2)|round(3), 'y': (max.y-(max.y-min.y)/2)|round(3)}} %} {% if params.ENABLE %} {% if params.ENABLE|lower is in ['true', 'false'] %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=enable VALUE={True if params.ENABLE|lower == 'true' else False} {% else %} {action_raise_error("ENABLE=%s not supported. Allowed values are [True, False]" % params.ENABLE|capitalize)} {% endif %} {% endif %} {% if params.VERBOSE %} {% if params.VERBOSE|lower is in ['true', 'false'] %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=verbose VALUE={True if params.VERBOSE|lower == 'true' else False} {% else %} {action_raise_error("VERBOSE=%s not supported. Allowed values are [True, False]" % params.VERBOSE|capitalize)} {% endif %} {% endif %} {% if params.CUSTOM_POS_X %} {% if params.CUSTOM_POS_X|float >= min.x and params.CUSTOM_POS_X|float <= max.x %} {% set _dummy = tl.park.custom.update({'x':params.CUSTOM_POS_X|float|round(3)}) %} {% else %} {action_raise_error("CUSTOM_POS_X=%s must be within [%s - %s]" % (params.CUSTOM_POS_X, min.x, max.x))} {% endif %} {% endif %} {% if params.CUSTOM_POS_Y %} {% if params.CUSTOM_POS_Y|float >= min.y and params.CUSTOM_POS_Y|float <= max.y %} {% set _dummy = tl.park.custom.update({'y':params.CUSTOM_POS_Y|float|round(3)}) %} {% else %} {action_raise_error("CUSTOM_POS_Y=%s must be within [%s - %s]" % (params.CUSTOM_POS_Y, min.y, max.y))} {% endif %} {% endif %} {% if params.CUSTOM_POS_DZ %} {% if params.CUSTOM_POS_DZ|float >= min.z and params.CUSTOM_POS_DZ|float <= max.z %} {% set _dummy = tl.park.custom.update({'dz':params.CUSTOM_POS_DZ|float|round(3)}) %} {% else %} {action_raise_error("CUSTOM_POS_DZ=%s must be within [%s - %s]" % (params.CUSTOM_POS_DZ, min.z, max.z))} {% endif %} {% endif %} {% if params.PARK_ENABLE %} {% if params.PARK_ENABLE|lower is in ['true', 'false'] %} {% set _dummy = tl.park.update({'enable':True if params.PARK_ENABLE|lower == 'true' else False}) %} {% else %} {action_raise_error("PARK_ENABLE=%s not supported. Allowed values are [True, False]" % params.PARK_ENABLE|capitalize)} {% endif %} {% endif %} {% if params.PARK_POS %} {% if params.PARK_POS|lower is in ['center','front_left','front_right','back_left','back_right','custom','x_only','y_only'] %} {% set dic = {'center' : {'x': park.center.x , 'y': park.center.y , 'dz': 1 }, 'front_left' : {'x': park.min.x , 'y': park.min.y , 'dz': 0 }, 'front_right' : {'x': park.max.x , 'y': park.min.y , 'dz': 0 }, 'back_left' : {'x': park.min.x , 'y': park.max.y , 'dz': 0 }, 'back_right' : {'x': park.max.x , 'y': park.max.y , 'dz': 0 }, 'custom' : {'x': tl.park.custom.x, 'y': tl.park.custom.y, 'dz': tl.park.custom.dz}, 'x_only' : {'x': tl.park.custom.x, 'y': 'none' , 'dz': tl.park.custom.dz}, 'y_only' : {'x': 'none' , 'y': tl.park.custom.y, 'dz': tl.park.custom.dz}} %} {% set _dummy = tl.park.update({'pos':params.PARK_POS|lower}) %} {% set _dummy = tl.park.update({'coord':dic[tl.park.pos]}) %} {% else %} {action_raise_error("PARK_POS=%s not supported. Allowed values are [CENTER, FRONT_LEFT, FRONT_RIGHT, BACK_LEFT, BACK_RIGHT, CUSTOM, X_ONLY, Y_ONLY]" % params.PARK_POS|upper)} {% endif %} {% endif %} {% if params.PARK_TIME %} {% if params.PARK_TIME|float >= 0.0 %} {% set _dummy = tl.park.update({'time':params.PARK_TIME|float|round(3)}) %} {% else %} {action_raise_error("PARK_TIME=%s must be a positive number" % params.PARK_TIME)} {% endif %} {% endif %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=park VALUE="{tl.park}" {% if params.TRAVEL_SPEED %} {% if params.TRAVEL_SPEED|float > 0.0 %} {% set _dummy = tl.speed.update({'travel':params.TRAVEL_SPEED|float|round(3)}) %} {% else %} {action_raise_error("TRAVEL_SPEED=%s must be larger than 0" % params.TRAVEL_SPEED)} {% endif %} {% endif %} {% if params.RETRACT_SPEED %} {% if params.RETRACT_SPEED|float > 0.0 %} {% set _dummy = tl.speed.update({'retract':params.RETRACT_SPEED|float|round(3)}) %} {% else %} {action_raise_error("RETRACT_SPEED=%s must be larger than 0" % params.RETRACT_SPEED)} {% endif %} {% endif %} {% if params.EXTRUDE_SPEED %} {% if params.EXTRUDE_SPEED|float > 0.0 %} {% set _dummy = tl.speed.update({'extrude':params.EXTRUDE_SPEED|float|round(3)}) %} {% else %} {action_raise_error("EXTRUDE_SPEED=%s must be larger than 0" % params.EXTRUDE_SPEED)} {% endif %} {% endif %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=speed VALUE="{tl.speed}" {% if params.EXTRUDE_DISTANCE %} {% if params.EXTRUDE_DISTANCE|float >= 0.0 %} {% set _dummy = tl.extruder.update({'extrude':params.EXTRUDE_DISTANCE|float|round(3)}) %} {% else %} {action_raise_error("EXTRUDE_DISTANCE=%s must be specified as positiv number" % params.EXTRUDE_DISTANCE)} {% endif %} {% endif %} {% if params.RETRACT_DISTANCE %} {% if params.RETRACT_DISTANCE|float >= 0.0 %} {% set _dummy = tl.extruder.update({'retract':params.RETRACT_DISTANCE|float|round(3)}) %} {% else %} {action_raise_error("RETRACT_DISTANCE=%s must be specified as positiv number" % params.RETRACT_DISTANCE)} {% endif %} {% endif %} {% if params.FW_RETRACT %} {% if params.FW_RETRACT|lower is in ['true', 'false'] %} {% if 'firmware_retraction' in printer.configfile.settings %} {% set _dummy = tl.extruder.update({'fw_retract': True if params.FW_RETRACT|lower == 'true' else False}) %} {% else %} {% set _dummy = tl.extruder.update({'fw_retract':False}) %} {% if params.FW_RETRACT|capitalize == 'True' %} {action_raise_error("[firmware_retraction] not defined in printer.cfg. Can not enable fw_retract")} {% endif %} {% endif %} {% else %} {action_raise_error("FW_RETRACT=%s not supported. Allowed values are [True, False]" % params.FW_RETRACT|capitalize)} {% endif %} {% endif %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=extruder VALUE="{tl.extruder}" {% if printer.configfile.settings['gcode_macro pause'] is defined %} {% set _dummy = tl.macro.update({'pause': printer.configfile.settings['gcode_macro pause'].rename_existing}) %} {% endif %} {% if printer.configfile.settings['gcode_macro resume'] is defined %} {% set _dummy = tl.macro.update({'resume': printer.configfile.settings['gcode_macro resume'].rename_existing}) %} {% endif %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=macro VALUE="{tl.macro}" [gcode_macro TIMELAPSE_TAKE_FRAME] description = Take Timelapse shoot variable_enable = False variable_takingframe = False variable_park = {'enable': False, 'pos' : 'center', 'time' : 0.1, 'custom': {'x': 0, 'y': 0, 'dz': 0}, 'coord' : {'x': 0, 'y': 0, 'dz': 0}} variable_extruder = {'fw_retract': False, 'retract': 1.0, 'extrude': 1.0} variable_speed = {'travel': 100, 'retract': 15, 'extrude': 15} variable_verbose = True variable_check_time = 0.5 variable_restore = {'absolute': {'coordinates': True, 'extrude': True}, 'speed': 1500, 'e':0, 'factor': {'speed': 1.0, 'extrude': 1.0}} variable_macro = {'pause': 'PAUSE', 'resume': 'RESUME'} variable_is_paused = False gcode = {% set hyperlapse = True if params.HYPERLAPSE and params.HYPERLAPSE|lower =='true' else False %} {% if enable %} {% if (hyperlapse and printer['gcode_macro HYPERLAPSE'].run) or (not hyperlapse and not printer['gcode_macro HYPERLAPSE'].run) %} {% if park.enable %} {% set pos = {'x': 'X' + park.coord.x|string if park.pos != 'y_only' else '', 'y': 'Y' + park.coord.y|string if park.pos != 'x_only' else '', 'z': 'Z'+ [printer.gcode_move.gcode_position.z + park.coord.dz, printer.toolhead.axis_maximum.z]|min|string} %} {% set restore = {'absolute': {'coordinates': printer.gcode_move.absolute_coordinates, 'extrude' : printer.gcode_move.absolute_extrude}, 'speed' : printer.gcode_move.speed, 'e' : printer.gcode_move.gcode_position.e, 'factor' : {'speed' : printer.gcode_move.speed_factor, 'extrude': printer.gcode_move.extrude_factor}} %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=restore VALUE="{restore}" {% if not printer[printer.toolhead.extruder].can_extrude %} {% if verbose %}{action_respond_info("Timelapse: Warning, minimum extruder temperature not reached!")}{% endif %} {% else %} {% if extruder.fw_retract %} G10 {% else %} M83 G0 E-{extruder.retract} F{speed.retract * 60} {% endif %} {% endif %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=is_paused VALUE=True {macro.pause} SET_GCODE_OFFSET X=0 Y=0 G90 {% if "xyz" not in printer.toolhead.homed_axes %} {% if verbose %}{action_respond_info("Timelapse: Warning, axis not homed yet!")}{% endif %} {% else %} G0 {pos.x} {pos.y} {pos.z} F{speed.travel * 60} {% endif %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=takingframe VALUE=True UPDATE_DELAYED_GCODE ID=_WAIT_TIMELAPSE_TAKE_FRAME DURATION={check_time} M400 {% endif %} _TIMELAPSE_NEW_FRAME HYPERLAPSE={hyperlapse} {% endif %} {% else %} {% if verbose %}{action_respond_info("Timelapse: disabled, take frame ignored")}{% endif %} {% endif %} [gcode_macro _TIMELAPSE_NEW_FRAME] description = action call for timelapse shoot. must be a seperate macro gcode = {action_call_remote_method("timelapse_newframe", macropark=printer['gcode_macro TIMELAPSE_TAKE_FRAME'].park, hyperlapse=params.HYPERLAPSE)} [delayed_gcode _WAIT_TIMELAPSE_TAKE_FRAME] gcode = {% set tl = printer['gcode_macro TIMELAPSE_TAKE_FRAME'] %} {% set factor = {'speed': printer.gcode_move.speed_factor, 'extrude': printer.gcode_move.extrude_factor} %} {% if tl.takingframe %} UPDATE_DELAYED_GCODE ID=_WAIT_TIMELAPSE_TAKE_FRAME DURATION={tl.check_time} {% else %} {tl.macro.resume} VELOCITY={tl.speed.travel} SET_GCODE_VARIABLE MACRO=TIMELAPSE_TAKE_FRAME VARIABLE=is_paused VALUE=False {% if not printer[printer.toolhead.extruder].can_extrude %} {action_respond_info("Timelapse: Warning minimum extruder temperature not reached!")} {% else %} {% if tl.extruder.fw_retract %} G11 {% else %} G0 E{tl.extruder.extrude} F{tl.speed.extrude * 60} G0 F{tl.restore.speed} {% if tl.restore.absolute.extrude %} M82 G92 E{tl.restore.e} {% endif %} {% endif %} {% endif %} {% if tl.restore.factor.speed != factor.speed %} M220 S{(factor.speed*100)|round(0)} {% endif %} {% if tl.restore.factor.extrude != factor.extrude %} M221 S{(factor.extrude*100)|round(0)} {% endif %} {% if not tl.restore.absolute.coordinates %} G91 {% endif %} {% endif %} [gcode_macro HYPERLAPSE] description = Start/Stop a hyperlapse recording variable_cycle = 0 variable_run = False gcode = {% set cycle = params.CYCLE|default(30)|int %} {% if params.ACTION and params.ACTION|lower == 'start' %} {action_respond_info("Hyperlapse: frames started (Cycle %d sec)" % cycle)} SET_GCODE_VARIABLE MACRO=HYPERLAPSE VARIABLE=run VALUE=True SET_GCODE_VARIABLE MACRO=HYPERLAPSE VARIABLE=cycle VALUE={cycle} UPDATE_DELAYED_GCODE ID=_HYPERLAPSE_LOOP DURATION={cycle} TIMELAPSE_TAKE_FRAME HYPERLAPSE=True {% elif params.ACTION and params.ACTION|lower == 'stop' %} {% if run %}{action_respond_info("Hyperlapse: frames stopped")}{% endif %} SET_GCODE_VARIABLE MACRO=HYPERLAPSE VARIABLE=run VALUE=False UPDATE_DELAYED_GCODE ID=_HYPERLAPSE_LOOP DURATION=0 {% else %} {action_raise_error("Hyperlapse: No valid input parameter Use: - HYPERLAPSE ACTION=START [CYCLE=time] - HYPERLAPSE ACTION=STOP")} {% endif %} [delayed_gcode _HYPERLAPSE_LOOP] gcode = UPDATE_DELAYED_GCODE ID=_HYPERLAPSE_LOOP DURATION={printer["gcode_macro HYPERLAPSE"].cycle} TIMELAPSE_TAKE_FRAME HYPERLAPSE=True [gcode_macro TIMELAPSE_RENDER] description = Render Timelapse video and wait for the result variable_render = False variable_run_identifier = 0 gcode = {action_respond_info("Timelapse: Rendering started")} {action_call_remote_method("timelapse_render", byrendermacro="True")} SET_GCODE_VARIABLE MACRO=TIMELAPSE_RENDER VARIABLE=render VALUE=True {printer.configfile.settings['gcode_macro pause'].rename_existing} UPDATE_DELAYED_GCODE ID=_WAIT_TIMELAPSE_RENDER DURATION=0.5 [delayed_gcode _WAIT_TIMELAPSE_RENDER] gcode = {% set ri = printer['gcode_macro TIMELAPSE_RENDER'].run_identifier % 4 %} SET_GCODE_VARIABLE MACRO=TIMELAPSE_RENDER VARIABLE=run_identifier VALUE={ri + 1} {% if printer['gcode_macro TIMELAPSE_RENDER'].render %} M117 Rendering {['-','\\','|','/'][ri]} UPDATE_DELAYED_GCODE ID=_WAIT_TIMELAPSE_RENDER DURATION=0.5 {% else %} {action_respond_info("Timelapse: Rendering finished")} M117 {printer.configfile.settings['gcode_macro resume'].rename_existing} {% endif %} [gcode_macro TEST_STREAM_DELAY] description = Helper macro to find stream and park delay gcode = {% set min = printer.toolhead.axis_minimum %} {% set max = printer.toolhead.axis_maximum %} {% set act = printer.toolhead.position %} {% set tl = printer['gcode_macro TIMELAPSE_TAKE_FRAME'] %} {% if act.z > 5.0 %} G0 X{min.x + 5.0} F{tl.speed.travel|int * 60} G0 X{(max.x-min.x)/2} G4 P{tl.park.time|float * 1000} _TIMELAPSE_NEW_FRAME HYPERLAPSE=FALSE G0 X{max.x - 5.0} {% else %} {action_raise_error("Toolhead z %.3f to low. Please place head above z = 5.0" % act.z)} {% endif %} [neopixel matchstick] pin = PA8 chain_count = 30 color_order = GRB initial_red = 0.2 initial_green = 0.0 initial_blue = 0.2 [gcode_macro LIGHT_SWITCH] variable_state = 0 gcode = {% if params.VALUE %} {% set state = params.VALUE|default(0.5)|float %} SAVE_VARIABLE VARIABLE=light_switch_default VALUE={state} {% else %} {% if state == 0 %} {% set state = printer.save_variables.variables.light_switch_default|float %} {% else %} {% set state = 0|float %} {% endif %} {% endif %} SET_GCODE_VARIABLE MACRO=LIGHT_SWITCH VARIABLE=state VALUE={state} SET_LED LED=matchstick RED={state} BLUE={state} GREEN={state} SYNC=1 [gcode_macro LIGHTS_RED] gcode = {% set state = printer.save_variables.variables.light_switch_default|float %} SET_LED LED=matchstick RED={state} BLUE=0.0 GREEN=0.0 SYNC=1 LIGHT_SWITCH {state} [gcode_macro LIGHTS_GREEN] gcode = {% set state = printer.save_variables.variables.light_switch_default|float %} SET_LED LED=matchstick RED=0.0 BLUE=0.0 GREEN={state} SYNC=1 [gcode_button light_switch] pin = ^PC2 press_gcode = LIGHT_SWITCH release_gcode = [gcode_macro _KAMP_Settings] description = This macro contains all adjustable settings for KAMP variable_verbose_enable = True variable_mesh_margin = 0 variable_fuzz_amount = 0 variable_probe_dock_enable = False variable_attach_macro = 'Attach_Probe' variable_detach_macro = 'Dock_Probe' variable_purge_height = 0.8 variable_tip_distance = 0 variable_purge_margin = 10 variable_purge_amount = 30 variable_flow_rate = 12 variable_smart_park_height = 100 gcode = {action_respond_info(" Running the KAMP_Settings macro does nothing, it is only used for storing KAMP settings. ")} [gcode_macro LINE_PURGE] description = A purge macro that adapts to be near your actual printed objects gcode = {% set travel_speed = (printer.toolhead.max_velocity) * 60 | float %} {% set cross_section = printer.configfile.settings.extruder.max_extrude_cross_section | float %} {% if printer.firmware_retraction is defined %} {% set RETRACT = G10 | string %} {% set UNRETRACT = G11 | string %} {% else %} {% set RETRACT = 'G1 E-.5 F2100' | string %} {% set UNRETRACT = 'G1 E.5 F2100' | string %} {% endif %} {% set verbose_enable = printer["gcode_macro _KAMP_Settings"].verbose_enable | abs %} {% set purge_height = printer["gcode_macro _KAMP_Settings"].purge_height | float %} {% set tip_distance = printer["gcode_macro _KAMP_Settings"].tip_distance | float %} {% set purge_margin = printer["gcode_macro _KAMP_Settings"].purge_margin | float %} {% set purge_amount = printer["gcode_macro _KAMP_Settings"].purge_amount | float %} {% set flow_rate = printer["gcode_macro _KAMP_Settings"].flow_rate | float %} {% set all_points = printer.exclude_object.objects | map(attribute='polygon') | sum(start=[]) %} {% set purge_x_min = (all_points | map(attribute=0) | min | default(0)) %} {% set purge_x_max = (all_points | map(attribute=0) | max | default(0)) %} {% set purge_y_min = (all_points | map(attribute=1) | min | default(0)) %} {% set purge_y_max = (all_points | map(attribute=1) | max | default(0)) %} {% set purge_x_center = ([((purge_x_max + purge_x_min) / 2) - (purge_amount / 2), 0] | max) %} {% set purge_y_center = ([((purge_y_max + purge_y_min) / 2) - (purge_amount / 2), 0] | max) %} {% set purge_x_origin = ([purge_x_min - purge_margin, 0] | max) %} {% set purge_y_origin = ([purge_y_min - purge_margin, 0] | max) %} {% set purge_move_speed = (flow_rate / 5.0) * 60 | float %} {% if cross_section < 5 %} {action_respond_info("[Extruder] max_extrude_cross_section is insufficient for purge, please set it to 5 or greater. Purge skipped.")} {% else %} {% if verbose_enable == True %} {action_respond_info("Moving filament tip {}mms".format( (tip_distance), )) } {% endif %} {% if printer.firmware_retraction is defined %} {action_respond_info("KAMP purge is using firmware retraction.")} {% else %} {action_respond_info("KAMP purge is not using firmware retraction, it is recommended to configure it.")} {% endif %} {% if purge_y_origin > 0 %} {action_respond_info("KAMP purge starting at {}, {} and purging {}mm of filament, requested flow rate is {}mm3/s.".format( (purge_x_center), (purge_y_origin), (purge_amount), (flow_rate), )) } {% else %} {action_respond_info("KAMP purge starting at {}, {} and purging {}mm of filament, requested flow rate is {}mm3/s.".format( (purge_x_origin), (purge_y_center), (purge_amount), (flow_rate), )) } {% endif %} SAVE_GCODE_STATE NAME=Prepurge_State {% if purge_y_origin > 0 %} G92 E0 G0 F{travel_speed} G90 G0 X{purge_x_center} Y{purge_y_origin} G0 Z{purge_height} M83 G1 E{tip_distance} F{purge_move_speed} G1 X{purge_x_center + purge_amount} E{purge_amount} F{purge_move_speed} {RETRACT} G0 X{purge_x_center + purge_amount + 10} F{travel_speed} G92 E0 M82 G0 Z{purge_height * 2} F{travel_speed} {% else %} G92 E0 G0 F{travel_speed} G90 G0 X{purge_x_origin} Y{purge_y_center} G0 Z{purge_height} M83 G1 E{tip_distance} F{purge_move_speed} G1 Y{purge_y_center + purge_amount} E{purge_amount} F{purge_move_speed} {RETRACT} G0 Y{purge_y_center + purge_amount + 10} F{travel_speed} G92 E0 M82 G0 Z{purge_height * 2} F{travel_speed} {% endif %} RESTORE_GCODE_STATE NAME=Prepurge_State {% endif %} [gcode_macro VORON_PURGE] description = A purge macro that adapts to be near your actual printed objects gcode = {% set travel_speed = (printer.toolhead.max_velocity) * 60 | float %} {% set cross_section = printer.configfile.settings.extruder.max_extrude_cross_section | float %} {% if printer.firmware_retraction is defined %} {% set RETRACT = G10 | string %} {% set UNRETRACT = G11 | string %} {% else %} {% set RETRACT = 'G1 E-.5 F2100' | string %} {% set UNRETRACT = 'G1 E.5 F2100' | string %} {% endif %} {% set kamp_settings = printer["gcode_macro _KAMP_Settings"] %} {% set verbose_enable = kamp_settings.verbose_enable | abs %} {% set purge_height = kamp_settings.purge_height | float %} {% set tip_distance = kamp_settings.tip_distance | float %} {% set purge_margin = kamp_settings.purge_margin | float %} {% set purge_amount = kamp_settings.purge_amount | float %} {% set flow_rate = kamp_settings.flow_rate | float %} {% set size = 10 | float %} {% set all_points = printer.exclude_object.objects | map(attribute='polygon') | sum(start=[]) %} {% set purge_x_min = (all_points | map(attribute=0) | min | default(0)) %} {% set purge_x_max = (all_points | map(attribute=0) | max | default(0)) %} {% set purge_y_min = (all_points | map(attribute=1) | min | default(0)) %} {% set purge_y_max = (all_points | map(attribute=1) | max | default(0)) %} {% set purge_x_center = ([((purge_x_max + purge_x_min) / 2) - (purge_amount / 2), 0] | max) %} {% set purge_y_center = ([((purge_y_max + purge_y_min) / 2) - (purge_amount / 2), 0] | max) %} {% set purge_x_origin = ([purge_x_min - purge_margin, 0] | max) %} {% set purge_y_origin = ([purge_y_min - purge_margin, 0] | max) %} {% set purge_move_speed = (flow_rate / 5.0) * 60 | float %} {% if cross_section < 5 %} {action_respond_info("[Extruder] max_extrude_cross_section is insufficient for purge, please set it to 5 or greater. Purge skipped.")} {% else %} {% if verbose_enable == True %} {action_respond_info("Moving filament tip {}mms".format( (tip_distance), )) } {% endif %} {% if printer.firmware_retraction is defined %} {action_respond_info("KAMP purge is using firmware retraction.")} {% else %} {action_respond_info("KAMP purge is not using firmware retraction, it is recommended to configure it.")} {% endif %} SAVE_GCODE_STATE NAME=Prepurge_State G92 E0 G0 F{travel_speed} G90 G0 X{purge_x_origin} Y{purge_y_origin+size/2} G0 Z{purge_height} M83 G1 E{tip_distance} F{purge_move_speed} G1 X{purge_x_origin+size*0.289} Y{purge_y_origin+size} E{purge_amount/4} F{purge_move_speed} {RETRACT} G0 Z{purge_height*2} G0 X{purge_x_origin+size*0.789} Y{purge_y_origin+size} G0 Z{purge_height} {UNRETRACT} G1 X{purge_x_origin+size*0.211} Y{purge_y_origin} E{purge_amount/2} F{purge_move_speed} {RETRACT} G0 Z{purge_height*2} G0 X{purge_x_origin+size*0.711} Y{purge_y_origin} G0 Z{purge_height} {UNRETRACT} G1 X{purge_x_origin+size} Y{purge_y_origin+size/2} E{purge_amount/4} F{purge_move_speed} {RETRACT} G92 E0 M82 G0 Z{purge_height*2} F{travel_speed} RESTORE_GCODE_STATE NAME=Prepurge_State {% endif %} [gcode_macro SMART_PARK] description = Parks your printhead near the print area for pre-print hotend heating. gcode = {% set kamp_settings = printer["gcode_macro _KAMP_Settings"] %} {% set z_height = kamp_settings.smart_park_height | float %} {% set purge_margin = kamp_settings.purge_margin | float %} {% set verbose_enable = kamp_settings.verbose_enable | abs %} {% set center_x = printer.toolhead.axis_maximum.x / 2 | float %} {% set center_y = printer.toolhead.axis_maximum.y / 2 | float %} {% set axis_minimum_x = printer.toolhead.axis_minimum.x | float %} {% set axis_minimum_y = printer.toolhead.axis_minimum.y | float %} {% set all_points = printer.exclude_object.objects | map(attribute='polygon') | sum(start=[]) %} {% set x_min = all_points | map(attribute=0) | min | default(center_x) %} {% set y_min = all_points | map(attribute=1) | min | default(center_y) %} {% set travel_speed = (printer.toolhead.max_velocity) * 60 | float %} {% if purge_margin > 0 and x_min != center_x and y_min != center_y %} {% set x_min = [ x_min - purge_margin , x_min ] | min %} {% set y_min = [ y_min - purge_margin , y_min ] | min %} {% set x_min = [ x_min , axis_minimum_x ] | max %} {% set y_min = [ y_min , axis_minimum_y ] | max %} {% endif %} {% if verbose_enable == True %} { action_respond_info("Smart Park location: {},{}.".format( (x_min), (y_min), )) } {% endif %} SAVE_GCODE_STATE NAME=Presmartpark_State G90 {% if printer.toolhead.position.z < z_height %} G0 Z{z_height} {% endif %} G0 X{x_min} Y{y_min} F{travel_speed} G0 Z{z_height} RESTORE_GCODE_STATE NAME=Presmartpark_State [filament_switch_sensor bttsfs_switch] switch_pin = ^PC15 pause_on_runout = False runout_gcode = M117 Filament switch runout M118 Filament switch runout LIGHTS_RED FILAMENT_RUNOUT insert_gcode = M117 Filament switch inserted M118 Filament switch inserted LIGHTS_GREEN event_delay = 1.0 pause_delay = 5.0 [filament_motion_sensor encoder_sensor] extruder = extruder switch_pin = ^PC12 pause_on_runout = False insert_gcode = M300 S1 P10 M117 Insert Detected on SFSv2 M118 Insert Detected on SFSv2 [gcode_macro FILAMENT_RUNOUT] description = gcode macro for filament runout detect gcode = M300 S1 P10 M600 M300 S1 P10 [mcu HermitCrab2] canbus_uuid = 1d8516137409 [board_pins HermitCrab2] mcu = HermitCrab2 aliases = LIS2DW_1=gpio1, NTC_0=gpio28, FAN1=gpio14, FAN2=gpio15, FAN0=gpio13, FAN0_TACH=gpio12, ENDSTOP=gpio25, BLTOUCH_SENSOR=gpio24, BLTOUCH_CONTROL=gpio23, EXTRUDER_DIR=gpio17, EXTRUDER_STEP=gpio18, EXTRUDER_UART=gpio19, EXTRUDER_EN=gpio21, HOTEND_HEAT=gpio22, HOTEND_TEMP=gpio27, HOTEND_RGB=gpio26 [lis2dw] cs_pin = HermitCrab2:LIS2DW_1 spi_bus = spi0a axes_map = y,z,-x [resonance_tester] accel_chip = lis2dw probe_points = 112,110, 20 [temperature_sensor HermitCrab2] sensor_type = Generic 3950 sensor_pin = HermitCrab2:NTC_0 [fan] pin = HermitCrab2:FAN2 [heater_fan hotend_fan] pin = HermitCrab2:FAN1 heater = extruder heater_temp = 50.0 [fan_generic 4W_FAN] pin = HermitCrab2:FAN0 tachometer_pin = HermitCrab2:FAN0_TACH [neopixel hotend_rgb] pin = HermitCrab2:HOTEND_RGB chain_count = 2 color_order = GRB initial_red = 0.5 initial_green = 0.5 initial_blue = 0.5 [gcode_macro HOTEND_LED_BLINK] gcode = SET_LED LED=hotend_rgb RED=0.0 GREEN=0.0 BLUE=0.0 TRANSMIT=1 SYNC=1 G4 P250 SET_LED LED=hotend_rgb RED=1.0 GREEN=1.0 BLUE=1.0 TRANSMIT=1 SYNC=1 G4 P250 SET_LED LED=hotend_rgb RED=0.0 GREEN=0.0 BLUE=0.0 TRANSMIT=1 SYNC=1 G4 P250 SET_LED LED=hotend_rgb RED=1.0 GREEN=1.0 BLUE=1.0 TRANSMIT=1 SYNC=1 G4 P250 SET_LED LED=hotend_rgb RED=0.5 GREEN=0.5 BLUE=0.5 TRANSMIT=1 SYNC=1 [gcode_macro HOTEND_LED_BREATHE] gcode = SET_LED LED=hotend_rgb RED=0.0 GREEN=0.0 BLUE=0.0 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.1 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.2 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.3 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.4 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.5 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.6 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.7 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.8 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.9 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=1.0 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.9 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.8 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.7 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.6 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.5 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.4 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.3 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.2 TRANSMIT=1 SYNC=1 G4 P100 SET_LED LED=hotend_rgb RED=0.1 TRANSMIT=1 SYNC=1 G4 P250 SET_LED LED=hotend_rgb RED=0.5 GREEN=0.5 BLUE=0.5 TRANSMIT=1 SYNC=1 [extruder] step_pin = HermitCrab2:gpio18 dir_pin = !HermitCrab2:gpio17 enable_pin = !HermitCrab2:gpio21 microsteps = 16 full_steps_per_rotation = 200 rotation_distance = 8 nozzle_diameter = 0.400 filament_diameter = 1.750 max_extrude_only_distance = 500 max_extrude_only_velocity = 120 max_extrude_only_accel = 800 max_extrude_cross_section = 8.0 heater_pin = HermitCrab2: HOTEND_HEAT min_temp = 0 max_temp = 300 sensor_type = ATC Semitec 104NT-4-R025H42G sensor_pin = HermitCrab2: HOTEND_TEMP control = pid pid_kp = 35.510 pid_ki = 4.013 pid_kd = 78.563 [tmc2209 extruder] uart_pin = HermitCrab2:gpio19 run_current = 1.000 hold_current = 0.500 stealthchop_threshold = 999999 [bed_mesh] speed = 300 mesh_min = 12, 17 mesh_max = 218, 220 probe_count = 30,30 horizontal_move_z = 1.5 fade_start = 1 fade_end = 10 fade_target = 0 zero_reference_position = 83, 110 algorithm = bicubic [mcu eddy] serial = /dev/serial/by-id/usb-Klipper_rp2040_4550357129106AA8-if00 [probe_eddy_current btt_eddy] sensor_type = ldc1612 i2c_mcu = eddy i2c_bus = i2c0f x_offset = 53 y_offset = 11 calibrate = 0.050000:3242364.437,0.090000:3242125.697,0.130000:3241885.345, 0.170000:3241515.280,0.210000:3240691.157,0.250000:3239794.750, 0.290000:3238934.417,0.330000:3238109.717,0.370000:3237327.057, 0.410000:3236409.115,0.450000:3235551.603,0.490000:3234762.452, 0.530000:3233954.690,0.570000:3233150.298,0.610000:3232398.637, 0.650000:3231587.023,0.690000:3230793.459,0.730000:3230150.394, 0.770000:3229457.494,0.810000:3228636.134,0.850000:3227972.744, 0.890000:3227330.811,0.930000:3226750.696,0.970000:3226086.085, 1.010000:3225507.392,1.050000:3224787.921,1.090000:3224129.646, 1.130000:3223609.312,1.170000:3222850.480,1.210000:3222222.755, 1.250000:3221678.165,1.290000:3221118.021,1.330000:3220568.729, 1.370000:3219986.975,1.410000:3219464.690,1.450000:3218987.605, 1.490000:3218527.297,1.530000:3218107.739,1.570000:3217624.826, 1.610000:3217144.340,1.650000:3216722.621,1.690000:3216234.918, 1.730000:3215740.682,1.770000:3215246.304,1.810000:3214767.167, 1.850000:3214382.288,1.890000:3213952.691,1.930000:3213562.440, 1.970000:3213100.267,2.010000:3212671.397,2.050000:3212268.931, 2.090000:3211916.732,2.130000:3211598.976,2.170000:3211198.643, 2.210000:3210875.591,2.250000:3210515.846,2.290000:3210084.653, 2.330000:3209745.013,2.370000:3209428.389,2.410000:3209072.143, 2.450000:3208736.220,2.490000:3208417.734,2.530000:3208090.143, 2.570000:3207786.857,2.610000:3207519.054,2.650000:3207244.563, 2.690000:3206981.174,2.730000:3206694.217,2.770000:3206421.611, 2.810000:3206175.188,2.850000:3205869.438,2.890000:3205605.034, 2.930000:3205323.920,2.970000:3205035.279,3.010000:3204768.021, 3.050000:3204481.814,3.090000:3204232.497,3.130000:3203987.759, 3.170000:3203790.908,3.210000:3203550.398,3.250000:3203273.608, 3.290000:3203005.893,3.330000:3202748.015,3.370000:3202557.110, 3.410000:3202273.799,3.450000:3202086.750,3.490000:3201900.259, 3.530000:3201709.803,3.570000:3201497.197,3.610000:3201295.434, 3.650000:3201128.486,3.690000:3200913.409,3.730000:3200715.482, 3.770000:3200521.270,3.810000:3200322.239,3.850000:3200094.155, 3.890000:3199894.067,3.930000:3199713.279,3.970000:3199550.900, 4.010000:3199359.627,4.050000:3199170.365 calibration_temp = 37.568782 reg_drive_current = 15 z_offset = 1.500 [temperature_sensor btt_eddy_mcu] sensor_type = temperature_mcu sensor_mcu = eddy min_temp = 10 max_temp = 100 [temperature_sensor btt_eddy] sensor_type = Generic 3950 sensor_pin = eddy:gpio26 [safe_z_home] speed = 200 z_hop = 10 z_hop_speed = 20 home_xy_position = 100, 105 [mcu HBB] serial = /dev/serial/by-id/usb-Klipper_rp2040_454741505C0267EA-if00 [gcode_button key1] pin = HBB: gpio25 press_gcode = release_gcode = G28 X SET_LED LED=HBB_LED RED=1 GREEN=0 BLUE=0 INDEX=1 [gcode_button key2] pin = HBB: gpio26 press_gcode = release_gcode = G28 Y SET_LED LED=HBB_LED RED=1 GREEN=0 BLUE=0 INDEX=2 [gcode_button key3] pin = HBB: gpio27 press_gcode = release_gcode = G28 Z SET_LED LED=HBB_LED RED=0 GREEN=0 BLUE=1 INDEX=3 [gcode_button key4] pin = HBB: gpio19 press_gcode = release_gcode = G28 SET_LED LED=HBB_LED RED=0 GREEN=1 BLUE=0 INDEX=4 [gcode_button key5] pin = HBB: gpio18 press_gcode = release_gcode = M84 SET_LED LED=HBB_LED RED=0 GREEN=0 BLUE=1 INDEX=5 [gcode_button key6] pin = HBB: gpio13 press_gcode = release_gcode = M104 S200 SET_LED LED=HBB_LED RED=1 GREEN=0 BLUE=0 INDEX=6 [gcode_button key7] pin = HBB: gpio12 press_gcode = release_gcode = M140 S60 SET_LED LED=HBB_LED RED=1 GREEN=0 BLUE=0 INDEX=7 [neopixel HBB_LED] pin = HBB: gpio20 chain_count = 7 color_order = GRB initial_red = 0 initial_green = 0 initial_blue = 0 [mcu] serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_1600120012504B5735313920-if00 restart_method = command [board_pins] aliases = NEO1_DO=PA8, SKR_FAN1=PC7, SKR_FAN2=PB15, SKR_PART_FAN=PC6, X_STOP=PC0, Y_STOP=PC1, Z_STOP=PC2, E_STOP=PC15, FAN_0=PC6, FAN_1=PC7, FAN_2=PB15, PS_ON=PC13, PWE_DET=PC12, THB=PC4, THO=PA0, MUART_TX=PC10, MUART_RX=PC11, ZPROBE_SWITCH=PC14, ZPROBE_TRIGGER=PA1, EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=, EXP1_2=PA15, EXP1_4=, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>, EXP2_1=PD8, EXP2_2=PB9, EXP2_3=PA9, EXP2_5=PA10, EXP2_6=PD6 [temperature_sensor SKR_Mini_E3] sensor_type = temperature_mcu min_temp = 0 max_temp = 100 [controller_fan SKR_FAN1] pin = SKR_FAN1 max_power = 1.0 shutdown_speed = 0 cycle_time = 0.01 off_below = 0.0 kick_start_time = 0.100 [controller_fan SKR_FAN2] pin = SKR_FAN2 [temperature_sensor Raspberry_Pi] sensor_type = temperature_host min_temp = 0 max_temp = 100 [printer] kinematics = cartesian max_velocity = 500 max_accel = 2000 minimum_cruise_ratio = 0.5 max_z_velocity = 10 max_z_accel = 1000 square_corner_velocity = 5.0 [stepper_x] step_pin = PB13 dir_pin = !PB12 enable_pin = !PB14 microsteps = 16 rotation_distance = 40 endstop_pin = HermitCrab2:ENDSTOP position_min = -47 position_endstop = -47 position_max = 228 homing_speed = 50 [tmc2209 stepper_x] uart_pin = PC11 tx_pin = PC10 uart_address = 0 run_current = 0.58 stealthchop_threshold = 999999 [stepper_y] step_pin = PB10 dir_pin = !PB2 enable_pin = !PB11 microsteps = 16 rotation_distance = 40 endstop_pin = ^PC1 position_min = -21 position_endstop = -21 position_max = 229 homing_speed = 80 [tmc2209 stepper_y] uart_pin = PC11 tx_pin = PC10 uart_address = 2 run_current = 0.58 stealthchop_threshold = 999999 [stepper_z] step_pin = PB0 dir_pin = PC5 enable_pin = !PB1 full_steps_per_rotation = 400 microsteps = 16 rotation_distance = 4 endstop_pin = probe:z_virtual_endstop position_max = 250 position_min = -2 homing_speed = 5 second_homing_speed = 2 homing_retract_dist = 0 [tmc2209 stepper_z] uart_pin = PC11 tx_pin = PC10 uart_address = 1 run_current = 1.35 [stepper_z1] step_pin = PB3 dir_pin = !PB4 enable_pin = !PD1 full_steps_per_rotation = 400 microsteps = 16 rotation_distance = 4 [tmc2209 stepper_z1] uart_pin = PC11 tx_pin = PC10 uart_address = 3 run_current = 1.35 [z_tilt] z_positions = 0,105 225,105 points = -40,105 160,105 speed = 100 horizontal_move_z = 5 retries = 15 retry_tolerance = 0.005 [heater_bed] heater_pin = PC9 sensor_type = NTC 100K MGB18-104F39050L32 sensor_pin = PC4 max_temp = 135 min_temp = 0 control = pid pid_kp = 57.915 pid_ki = 1.980 pid_kd = 423.502 [homing_heaters] [verify_heater extruder] max_error = 120 hysteresis = 5 [bed_screws] screw1 = 29, 24 screw2 = 199, 32 screw3 = 199, 191 screw4 = 29, 191 [screws_tilt_adjust] screw1 = 69, 23 screw1_name = front left screw screw2 = 239, 23 screw2_name = front right screw screw3 = 239, 190 screw3_name = rear right screw screw4 = 69, 190 screw4_name = rear left screw horizontal_move_z = 10. speed = 50. screw_thread = CW-M3 [exclude_object] [gcode_arcs] resolution = 0.1 [input_shaper] shaper_freq_x = 41.4 shaper_freq_y = 23.0 shaper_type_x = ei shaper_type_y = mzv [force_move] enable_force_move = False [pause_resume] recover_velocity = 25 [save_variables] filename = ~/printer_data/config/variables.cfg [virtual_sdcard] path = /home/pi/printer_data/gcodes on_error_gcode = CANCEL_PRINT [bed_mesh scan-test-1] version = 1 points = 0.009109, 0.049809, 0.050234, -0.015759, -0.023266, -0.025295, -0.023166, -0.024809, -0.028248, -0.031280, -0.035239, -0.040365, -0.049264, -0.056546, -0.028507, -0.020265, -0.069361, -0.138583 0.075316, 0.066436, 0.063106, 0.048891, 0.048390, 0.050585, 0.046868, 0.048179, 0.045335, 0.041461, 0.031408, 0.027006, 0.013879, 0.000101, -0.009137, -0.023463, -0.030576, -0.101647 0.065139, 0.056943, 0.055495, 0.047718, 0.044989, 0.044227, 0.044552, 0.042530, 0.040786, 0.037055, 0.027058, 0.018125, 0.004737, -0.007322, -0.022590, -0.033151, -0.037066, -0.099521 0.046970, 0.047521, 0.042337, 0.033471, 0.034620, 0.038598, 0.034712, 0.031468, 0.035096, 0.032164, 0.023533, 0.013524, 0.005960, -0.008127, -0.020605, -0.025855, -0.028547, -0.097304 0.019154, 0.022902, 0.021734, 0.015870, 0.014314, 0.016934, 0.016083, 0.018515, 0.018468, 0.017700, 0.009371, 0.002370, -0.003194, -0.015791, -0.024360, -0.030305, -0.033049, -0.098382 0.004319, 0.005999, 0.007033, 0.005275, 0.004458, 0.009195, 0.011614, 0.016122, 0.019280, 0.018892, 0.015083, 0.012139, 0.005868, -0.006831, -0.013407, -0.021981, -0.026962, -0.094439 -0.006013, -0.003819, -0.005074, -0.005953, -0.007243, 0.001650, 0.007480, 0.011138, 0.014749, 0.015539, 0.013902, 0.016918, 0.008269, -0.005442, -0.015344, -0.020525, -0.026932, -0.092394 -0.014255, -0.010264, -0.010356, -0.012209, -0.009727, -0.001059, 0.004706, 0.007290, 0.014269, 0.015482, 0.019244, 0.018086, 0.011079, -0.000111, -0.013345, -0.020047, -0.023411, -0.095821 -0.019963, -0.015852, -0.017480, -0.016825, -0.016437, -0.007885, -0.000290, -0.000669, 0.007994, 0.009858, 0.007685, 0.006245, -0.000561, -0.014160, -0.022262, -0.032065, -0.035320, -0.099347 -0.036545, -0.025834, -0.026281, -0.028158, -0.026846, -0.018296, -0.012044, -0.007591, 0.000108, 0.000818, 0.002425, -0.005075, -0.011764, -0.019917, -0.028666, -0.041065, -0.041951, -0.105748 -0.050908, -0.045853, -0.048583, -0.047457, -0.043302, -0.039383, -0.027470, -0.021458, -0.019509, -0.017660, -0.019569, -0.023618, -0.027006, -0.035737, -0.040700, -0.047598, -0.051284, -0.112979 -0.072160, -0.067922, -0.067143, -0.066573, -0.063477, -0.055181, -0.043218, -0.038118, -0.034600, -0.029271, -0.028169, -0.030867, -0.033892, -0.040369, -0.044167, -0.050604, -0.051299, -0.118913 -0.089990, -0.084755, -0.083872, -0.085007, -0.082969, -0.076068, -0.062486, -0.059039, -0.053035, -0.045822, -0.042760, -0.042026, -0.046509, -0.053495, -0.056741, -0.062189, -0.064320, -0.125849 -0.108126, -0.101147, -0.100425, -0.101479, -0.097107, -0.088569, -0.078549, -0.072938, -0.062459, -0.055203, -0.051938, -0.053326, -0.055934, -0.061253, -0.065364, -0.071177, -0.070011, -0.134095 -0.118339, -0.113971, -0.118756, -0.118629, -0.114022, -0.107042, -0.098257, -0.091225, -0.082539, -0.076389, -0.074147, -0.071670, -0.075800, -0.080351, -0.082517, -0.086455, -0.087496, -0.147237 -0.131139, -0.129648, -0.131948, -0.132932, -0.128513, -0.121847, -0.113455, -0.107668, -0.101016, -0.092925, -0.091632, -0.088556, -0.091136, -0.096062, -0.100224, -0.104824, -0.106022, -0.166196 -0.151332, -0.155013, -0.150445, -0.151509, -0.146277, -0.144145, -0.134726, -0.130614, -0.125835, -0.120414, -0.113419, -0.116219, -0.115213, -0.121367, -0.125754, -0.138974, -0.134442, -0.182674 -0.171435, -0.171143, -0.167926, -0.170026, -0.168146, -0.161978, -0.151597, -0.145319, -0.140591, -0.133465, -0.129309, -0.128621, -0.126100, -0.132707, -0.136106, -0.138054, -0.136881, -0.193119 min_x = 12.0 max_x = 217.87 min_y = 17.0 max_y = 219.98 x_count = 18 y_count = 18 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 [bed_mesh detailed-test-1] version = 1 points = 0.017086, 0.051683, 0.040654, -0.012360, -0.025485, -0.023503, -0.017247, -0.021499, -0.019666, -0.023034, -0.023706, -0.028949, -0.041203, -0.046546, -0.017489, -0.005828, -0.050206, -0.116156 0.064615, 0.052286, 0.054411, 0.044450, 0.049981, 0.047545, 0.053165, 0.034612, 0.037155, 0.034442, 0.022489, 0.016613, 0.016978, 0.014568, 0.001029, -0.012058, -0.018216, -0.081684 0.068391, 0.060277, 0.059420, 0.045303, 0.044404, 0.043228, 0.044708, 0.039765, 0.039061, 0.033581, 0.029005, 0.028235, 0.013197, 0.001678, -0.005072, -0.017847, -0.015468, -0.072638 0.046566, 0.051840, 0.046764, 0.039487, 0.035579, 0.037653, 0.039368, 0.026839, 0.037296, 0.036803, 0.031581, 0.021314, 0.021713, 0.006059, -0.003892, -0.003435, -0.001254, -0.066342 0.026756, 0.031814, 0.028476, 0.018708, 0.014549, 0.021750, 0.017977, 0.019265, 0.021859, 0.017942, 0.017800, 0.011596, 0.000939, 0.004007, -0.006968, -0.008049, -0.006671, -0.065485 -0.001597, 0.002060, 0.004229, -0.002264, 0.002827, 0.005744, 0.006622, 0.014417, 0.020854, 0.018202, 0.014426, 0.013355, 0.017201, 0.008629, 0.005947, 0.002661, -0.008056, -0.060384 -0.009194, 0.004398, 0.003119, -0.000243, -0.001964, -0.003530, 0.005079, 0.007563, 0.013578, 0.018071, 0.016522, 0.020332, 0.007581, 0.001160, 0.002490, -0.008080, -0.002479, -0.059723 -0.004971, -0.005797, -0.003162, -0.013299, -0.011579, -0.010175, 0.008367, 0.015081, 0.016895, 0.016499, 0.015064, 0.020715, 0.018108, 0.005185, 0.001065, -0.002138, -0.006554, -0.069367 -0.014437, -0.016418, -0.009163, -0.015687, -0.006409, -0.012957, 0.000061, -0.003922, 0.003478, 0.006791, 0.005509, 0.003760, -0.002243, -0.009875, -0.014191, -0.013864, -0.017164, -0.068319 -0.020469, -0.010008, -0.014587, -0.017017, -0.021273, -0.009574, -0.004005, 0.003974, 0.010661, 0.015859, 0.006521, 0.001802, 0.007604, -0.000612, -0.007301, -0.018181, -0.026512, -0.074792 -0.045628, -0.044898, -0.038319, -0.035752, -0.040512, -0.039031, -0.031435, -0.024020, -0.012741, -0.009740, -0.009088, -0.011360, -0.008838, -0.014235, -0.019312, -0.019991, -0.020790, -0.075753 -0.067671, -0.049996, -0.054211, -0.059402, -0.051274, -0.043447, -0.034588, -0.041417, -0.030804, -0.029112, -0.020651, -0.020351, -0.028469, -0.028675, -0.031003, -0.029365, -0.026351, -0.087279 -0.080960, -0.068617, -0.073671, -0.073151, -0.066950, -0.063262, -0.052144, -0.045021, -0.032183, -0.031376, -0.025364, -0.024271, -0.035956, -0.037820, -0.035347, -0.032937, -0.034826, -0.088919 -0.095343, -0.097309, -0.095516, -0.098314, -0.089913, -0.080900, -0.066000, -0.064259, -0.051200, -0.047509, -0.041529, -0.033861, -0.031364, -0.041038, -0.040648, -0.040721, -0.042948, -0.091985 -0.100732, -0.091996, -0.099647, -0.096807, -0.098204, -0.097116, -0.088966, -0.081586, -0.067263, -0.064860, -0.056431, -0.058848, -0.053368, -0.062070, -0.064596, -0.066073, -0.058698, -0.113059 -0.108361, -0.107764, -0.109112, -0.118273, -0.114893, -0.094164, -0.090997, -0.097595, -0.086668, -0.086084, -0.079818, -0.070937, -0.076869, -0.077449, -0.081165, -0.077334, -0.076909, -0.127492 -0.117487, -0.122878, -0.130054, -0.132212, -0.129732, -0.124577, -0.109981, -0.111658, -0.112105, -0.096196, -0.084952, -0.088888, -0.085592, -0.100619, -0.101492, -0.110134, -0.103799, -0.144388 -0.157029, -0.143809, -0.155057, -0.151042, -0.146900, -0.142200, -0.130571, -0.135816, -0.111626, -0.109579, -0.099967, -0.103848, -0.096853, -0.102764, -0.105811, -0.112638, -0.099681, -0.148927 x_count = 18 y_count = 18 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 min_x = 12.0 max_x = 217.87 min_y = 17.0 max_y = 219.97 [bed_mesh scan-test-2] version = 1 points = 0.035731, 0.069528, 0.066211, 0.008472, -0.004073, -0.005950, -0.001020, -0.006680, -0.008808, -0.015187, -0.020826, -0.029376, -0.042297, -0.052425, -0.019164, -0.009973, -0.069175, -0.131010 0.083192, 0.079832, 0.072093, 0.061533, 0.054388, 0.054736, 0.056768, 0.054591, 0.052969, 0.047176, 0.040200, 0.034609, 0.020723, 0.010391, -0.004138, -0.015972, -0.023011, -0.098099 0.069556, 0.061890, 0.058302, 0.050592, 0.045204, 0.045330, 0.046059, 0.040548, 0.040873, 0.031265, 0.023500, 0.015586, 0.002366, -0.012971, -0.023536, -0.036967, -0.039830, -0.105547 0.052364, 0.051649, 0.046915, 0.041947, 0.039374, 0.036442, 0.037226, 0.033180, 0.034158, 0.033131, 0.026088, 0.014700, 0.005046, -0.007886, -0.019461, -0.026599, -0.028690, -0.101173 0.031852, 0.030302, 0.026017, 0.021317, 0.019243, 0.016822, 0.020521, 0.018416, 0.018707, 0.018317, 0.010644, 0.002039, -0.005345, -0.017828, -0.024809, -0.036060, -0.036353, -0.102784 0.011620, 0.012614, 0.012060, 0.007001, 0.007925, 0.009111, 0.015474, 0.015939, 0.019978, 0.016901, 0.016152, 0.011621, 0.003749, -0.008766, -0.013470, -0.024373, -0.024494, -0.099642 0.002270, 0.002992, 0.001082, -0.002284, -0.001801, 0.002673, 0.009777, 0.007529, 0.013688, 0.010674, 0.009316, 0.011873, 0.003065, -0.009375, -0.020239, -0.026322, -0.031754, -0.098786 -0.009361, -0.006211, -0.005063, -0.005616, -0.006257, -0.002584, 0.007152, 0.009997, 0.016243, 0.017186, 0.017839, 0.016496, 0.010621, -0.001094, -0.012775, -0.020729, -0.027665, -0.096668 -0.016400, -0.010907, -0.011972, -0.014595, -0.012479, -0.011540, -0.000191, 0.001313, 0.006686, 0.006318, 0.005316, 0.003268, -0.003833, -0.019216, -0.026544, -0.034016, -0.039183, -0.104553 -0.033791, -0.023850, -0.023704, -0.026610, -0.026678, -0.021533, -0.011196, -0.006200, -0.001988, -0.000368, 0.000544, -0.002899, -0.011675, -0.021318, -0.029203, -0.043530, -0.044446, -0.106711 -0.052265, -0.045007, -0.045259, -0.047333, -0.046007, -0.040871, -0.030110, -0.025459, -0.024308, -0.019820, -0.023638, -0.025980, -0.031592, -0.040695, -0.047985, -0.056108, -0.058537, -0.117380 -0.076370, -0.071812, -0.070579, -0.072843, -0.068454, -0.059214, -0.044008, -0.042298, -0.035922, -0.031771, -0.028980, -0.034004, -0.039534, -0.044530, -0.049406, -0.055913, -0.055234, -0.119363 -0.093254, -0.086843, -0.087881, -0.091153, -0.086925, -0.079264, -0.068133, -0.062360, -0.055789, -0.050378, -0.048077, -0.049249, -0.056211, -0.062465, -0.065620, -0.071291, -0.070409, -0.129888 -0.105010, -0.103809, -0.104336, -0.105071, -0.102025, -0.091368, -0.082442, -0.078036, -0.068152, -0.062030, -0.058702, -0.059263, -0.063885, -0.066831, -0.071586, -0.077621, -0.079966, -0.137328 -0.117278, -0.116632, -0.118416, -0.119431, -0.114443, -0.111727, -0.102429, -0.098269, -0.088954, -0.084859, -0.082018, -0.084067, -0.087601, -0.091707, -0.092442, -0.097286, -0.096651, -0.152031 -0.129752, -0.129140, -0.129432, -0.131871, -0.128734, -0.125392, -0.114573, -0.111037, -0.104075, -0.097045, -0.095138, -0.098368, -0.098835, -0.101780, -0.107926, -0.108351, -0.111576, -0.171960 -0.146980, -0.151208, -0.149062, -0.149382, -0.146885, -0.145004, -0.135936, -0.133649, -0.127995, -0.122898, -0.121645, -0.120520, -0.121969, -0.126745, -0.132981, -0.143441, -0.138423, -0.194294 -0.170724, -0.170550, -0.170169, -0.174454, -0.168120, -0.164080, -0.154810, -0.150684, -0.140664, -0.134590, -0.129853, -0.130479, -0.131001, -0.135499, -0.141524, -0.142911, -0.141695, -0.202779 x_count = 18 y_count = 18 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 min_x = 12.0 max_x = 217.87 min_y = 17.0 max_y = 219.98 [bed_mesh scan-test-3] version = 1 points = 0.015461, 0.062453, 0.059951, -0.005552, -0.017275, -0.015809, -0.015365, -0.020693, -0.023323, -0.029755, -0.036557, -0.043843, -0.050475, -0.061900, -0.026112, -0.019687, -0.078183, -0.169707 0.081763, 0.077656, 0.071884, 0.057565, 0.050195, 0.048351, 0.049398, 0.046678, 0.044929, 0.039543, 0.031465, 0.020293, 0.010559, 0.000364, -0.008844, -0.020372, -0.028170, -0.109718 0.068828, 0.058641, 0.058629, 0.049702, 0.040930, 0.041659, 0.038797, 0.032156, 0.032151, 0.024047, 0.019166, 0.009205, -0.003651, -0.013180, -0.023147, -0.036808, -0.042887, -0.121017 0.050584, 0.048207, 0.044370, 0.035693, 0.034388, 0.030230, 0.027995, 0.025018, 0.025360, 0.023272, 0.015058, 0.007913, -0.000762, -0.012655, -0.022128, -0.029336, -0.035739, -0.116139 0.030370, 0.029987, 0.025579, 0.021833, 0.019642, 0.016058, 0.018054, 0.012657, 0.015007, 0.013366, 0.008856, -0.001221, -0.008649, -0.019997, -0.025739, -0.034538, -0.041494, -0.115593 0.011764, 0.013979, 0.013888, 0.009346, 0.006646, 0.008388, 0.012706, 0.010036, 0.013423, 0.011894, 0.007050, 0.003765, -0.003748, -0.011404, -0.018969, -0.029915, -0.032845, -0.115444 0.003809, 0.006297, 0.004874, 0.000706, 0.000720, 0.002226, 0.007148, 0.006213, 0.010646, 0.008182, 0.006732, 0.005095, 0.000106, -0.011517, -0.017763, -0.027958, -0.031255, -0.110523 -0.006426, -0.003408, -0.002077, -0.005078, -0.004069, -0.000054, 0.005391, 0.003224, 0.010686, 0.012087, 0.008746, 0.009704, 0.001672, -0.008347, -0.015693, -0.025517, -0.030442, -0.109306 -0.009697, -0.004757, -0.005910, -0.010300, -0.009451, -0.006613, -0.000464, 0.000730, 0.004434, 0.003183, 0.003343, 0.000062, -0.005863, -0.014735, -0.024672, -0.033973, -0.039361, -0.115452 -0.020760, -0.015458, -0.013978, -0.017792, -0.017136, -0.014527, -0.007449, -0.006220, -0.004105, -0.002473, -0.002671, -0.007730, -0.012501, -0.021701, -0.030976, -0.040337, -0.046721, -0.119717 -0.040615, -0.032794, -0.031567, -0.037994, -0.034127, -0.033918, -0.025252, -0.022891, -0.018109, -0.021749, -0.021396, -0.021860, -0.027158, -0.035656, -0.041042, -0.047943, -0.053824, -0.128600 -0.055498, -0.051588, -0.050302, -0.056660, -0.051728, -0.046114, -0.036459, -0.034623, -0.030746, -0.028597, -0.024985, -0.030008, -0.036688, -0.042721, -0.044887, -0.051647, -0.053622, -0.133844 -0.070224, -0.067699, -0.069617, -0.071880, -0.067994, -0.063021, -0.051287, -0.051633, -0.047262, -0.042024, -0.037295, -0.040351, -0.044444, -0.052603, -0.054609, -0.062442, -0.062818, -0.138165 -0.085860, -0.082066, -0.083229, -0.086931, -0.082314, -0.075139, -0.067268, -0.065440, -0.056547, -0.050715, -0.047889, -0.048695, -0.054744, -0.057525, -0.063033, -0.069658, -0.067194, -0.152041 -0.092611, -0.093259, -0.094805, -0.097479, -0.094006, -0.087993, -0.080825, -0.079438, -0.069850, -0.071044, -0.064761, -0.067106, -0.071343, -0.075191, -0.080144, -0.084613, -0.086810, -0.168053 -0.104059, -0.104847, -0.105202, -0.111720, -0.107832, -0.107186, -0.095921, -0.092214, -0.087323, -0.082619, -0.082851, -0.081796, -0.086287, -0.091965, -0.095690, -0.100187, -0.102980, -0.187339 -0.123447, -0.128421, -0.126928, -0.128991, -0.125676, -0.124802, -0.114769, -0.112973, -0.107501, -0.104125, -0.101864, -0.102666, -0.104275, -0.112046, -0.119424, -0.129369, -0.129282, -0.203807 -0.153250, -0.150629, -0.152236, -0.158045, -0.152813, -0.147754, -0.138443, -0.135839, -0.127093, -0.120165, -0.115934, -0.118074, -0.118796, -0.125944, -0.128952, -0.134707, -0.133803, -0.211454 x_count = 18 y_count = 18 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 min_x = 12.0 max_x = 217.87 min_y = 17.0 max_y = 219.98 [bed_mesh scan-test-3030] version = 1 points = 0.022072, 0.042600, 0.069459, 0.068736, 0.038452, 0.003157, -0.011677, -0.011106, -0.010934, -0.010456, -0.011437, -0.012771, -0.015379, -0.018412, -0.018560, -0.021732, -0.024576, -0.027811, -0.030284, -0.034521, -0.039877, -0.046343, -0.049341, -0.044627, -0.014165, 0.001059, -0.014614, -0.050427, -0.078026, -0.147941 0.083417, 0.085291, 0.080740, 0.074754, 0.067350, 0.057318, 0.053725, 0.048747, 0.049075, 0.053634, 0.050673, 0.050638, 0.048483, 0.045908, 0.047439, 0.041583, 0.040319, 0.035198, 0.034628, 0.028253, 0.023419, 0.017752, 0.014047, 0.009501, 0.004276, 0.002684, -0.005168, -0.010707, -0.019430, -0.094757 0.080461, 0.079298, 0.073530, 0.069329, 0.064554, 0.058182, 0.050901, 0.049696, 0.050287, 0.048649, 0.049787, 0.047312, 0.041945, 0.041478, 0.041901, 0.037839, 0.032052, 0.031008, 0.027068, 0.021273, 0.015502, 0.007308, 0.001746, -0.002175, -0.006881, -0.015255, -0.017830, -0.022738, -0.029936, -0.105186 0.073354, 0.070086, 0.066072, 0.061452, 0.057640, 0.052112, 0.049177, 0.049035, 0.047096, 0.049472, 0.048033, 0.045155, 0.040587, 0.041067, 0.040654, 0.035278, 0.034597, 0.029709, 0.024992, 0.021036, 0.015798, 0.009897, 0.001594, -0.006078, -0.008666, -0.019592, -0.024436, -0.026319, -0.028871, -0.104733 0.064563, 0.062481, 0.056616, 0.054461, 0.052212, 0.043525, 0.041051, 0.041733, 0.037692, 0.040260, 0.038126, 0.036500, 0.031808, 0.031155, 0.031445, 0.029672, 0.025179, 0.022551, 0.017661, 0.010570, 0.006405, -0.003140, -0.003498, -0.012011, -0.017912, -0.021998, -0.026394, -0.028142, -0.033395, -0.107446 0.051392, 0.054028, 0.050071, 0.049000, 0.042477, 0.038840, 0.036395, 0.036203, 0.034906, 0.037034, 0.034933, 0.031958, 0.029080, 0.032109, 0.031441, 0.032461, 0.027722, 0.024371, 0.019426, 0.012100, 0.007650, 0.002022, -0.002979, -0.007771, -0.012207, -0.017093, -0.020326, -0.022846, -0.030694, -0.106060 0.035956, 0.038005, 0.034942, 0.032225, 0.030646, 0.026491, 0.025322, 0.025578, 0.024901, 0.024260, 0.024764, 0.022658, 0.018272, 0.020204, 0.021471, 0.022749, 0.019135, 0.015068, 0.008901, 0.004253, 0.000704, -0.004729, -0.012490, -0.015675, -0.022043, -0.026748, -0.028724, -0.029644, -0.033700, -0.106832 0.025327, 0.028293, 0.025726, 0.026712, 0.022514, 0.019768, 0.019791, 0.017875, 0.020147, 0.019326, 0.017366, 0.017431, 0.018118, 0.016193, 0.019232, 0.018604, 0.016450, 0.013763, 0.009144, 0.005452, 0.001865, -0.001312, -0.007326, -0.013128, -0.016872, -0.021657, -0.024406, -0.025049, -0.030361, -0.109330 0.016589, 0.019395, 0.017067, 0.016291, 0.014527, 0.011676, 0.011371, 0.010578, 0.011045, 0.014017, 0.013721, 0.012771, 0.012995, 0.012611, 0.011363, 0.011814, 0.012451, 0.007455, 0.003377, 0.003446, -0.000233, -0.003484, -0.014133, -0.014855, -0.018576, -0.023033, -0.028616, -0.027745, -0.032422, -0.108221 0.007752, 0.011987, 0.011210, 0.009815, 0.010659, 0.003886, 0.004690, 0.005732, 0.006952, 0.010260, 0.011141, 0.009778, 0.010843, 0.012087, 0.013993, 0.013745, 0.013326, 0.010583, 0.010433, 0.006644, 0.005900, 0.001471, -0.005229, -0.010480, -0.012661, -0.012625, -0.020428, -0.021476, -0.030898, -0.105869 0.003364, 0.009577, 0.005822, 0.005858, 0.004790, 0.002558, 0.002691, 0.003694, 0.002399, 0.003563, 0.006358, 0.008587, 0.009251, 0.010206, 0.012037, 0.010919, 0.010624, 0.009142, 0.008195, 0.008474, 0.006558, -0.000894, -0.007103, -0.010604, -0.015887, -0.017609, -0.023460, -0.026567, -0.031851, -0.106505 -0.000076, 0.000779, 0.000994, -0.000012, -0.001527, -0.002304, -0.002126, -0.002932, -0.000165, 0.002610, 0.005297, 0.008522, 0.010345, 0.011152, 0.015387, 0.011387, 0.013607, 0.012855, 0.011941, 0.013037, 0.011743, 0.004976, -0.002076, -0.007703, -0.009851, -0.014272, -0.016485, -0.021606, -0.031305, -0.105187 -0.004084, -0.001114, -0.002105, -0.002146, -0.004736, -0.006110, -0.004455, -0.004151, -0.002673, 0.000354, 0.001706, 0.004140, 0.004188, 0.007703, 0.008070, 0.007188, 0.009507, 0.007807, 0.006441, 0.006221, 0.002953, -0.000619, -0.009367, -0.012507, -0.019806, -0.020641, -0.026235, -0.026926, -0.035799, -0.109231 -0.011935, -0.007346, -0.007395, -0.008742, -0.008813, -0.010321, -0.009686, -0.005810, -0.007102, -0.002093, 0.000766, 0.001189, 0.002877, 0.006795, 0.009963, 0.008611, 0.009766, 0.009941, 0.008963, 0.005844, 0.005577, -0.000284, -0.005285, -0.009600, -0.015827, -0.019625, -0.024591, -0.024005, -0.033570, -0.109584 -0.015404, -0.010766, -0.010226, -0.010909, -0.013290, -0.015639, -0.015830, -0.013052, -0.011432, -0.009070, -0.002641, -0.003642, -0.002975, -0.000049, 0.002834, 0.003296, 0.001506, 0.002085, 0.000129, -0.003490, -0.004845, -0.010982, -0.014740, -0.022479, -0.022968, -0.031900, -0.033342, -0.034985, -0.039910, -0.112365 -0.025619, -0.020674, -0.019681, -0.016400, -0.019575, -0.021346, -0.021384, -0.019821, -0.018477, -0.013471, -0.007230, -0.008825, -0.006794, -0.006494, 0.000953, -0.001389, 0.000222, -0.001126, -0.001081, -0.005796, -0.009402, -0.012814, -0.020003, -0.022361, -0.025268, -0.032788, -0.037928, -0.040317, -0.045904, -0.116010 -0.031854, -0.026661, -0.027533, -0.026690, -0.029354, -0.031970, -0.030923, -0.029122, -0.027693, -0.022697, -0.018806, -0.017920, -0.015379, -0.015161, -0.009274, -0.011119, -0.009011, -0.012934, -0.013034, -0.016814, -0.020131, -0.021747, -0.029864, -0.033942, -0.033515, -0.039331, -0.043145, -0.043796, -0.050676, -0.122415 -0.045562, -0.036718, -0.037649, -0.039193, -0.038862, -0.041819, -0.039545, -0.036127, -0.035430, -0.032134, -0.028232, -0.024248, -0.025173, -0.021734, -0.015781, -0.016748, -0.015075, -0.017519, -0.017674, -0.021726, -0.020912, -0.026730, -0.031807, -0.035522, -0.036976, -0.039627, -0.044704, -0.045310, -0.051756, -0.127703 -0.058385, -0.050714, -0.052186, -0.053105, -0.053530, -0.056863, -0.054872, -0.051641, -0.047178, -0.043675, -0.041125, -0.037233, -0.035239, -0.032158, -0.030970, -0.027340, -0.029517, -0.029026, -0.030175, -0.031212, -0.033686, -0.037539, -0.041724, -0.046240, -0.046631, -0.046380, -0.053012, -0.052579, -0.060244, -0.132863 -0.067731, -0.060589, -0.062647, -0.063075, -0.064002, -0.066768, -0.062270, -0.059671, -0.057703, -0.053093, -0.050466, -0.044321, -0.044452, -0.038838, -0.038530, -0.034431, -0.033312, -0.033639, -0.032681, -0.032850, -0.035860, -0.040862, -0.043716, -0.044031, -0.048826, -0.047573, -0.050656, -0.051247, -0.058917, -0.131744 -0.079677, -0.072474, -0.072499, -0.073988, -0.075141, -0.077095, -0.073633, -0.071578, -0.067242, -0.065682, -0.056614, -0.054907, -0.052665, -0.049998, -0.047500, -0.046342, -0.040727, -0.039728, -0.039327, -0.041653, -0.044976, -0.048369, -0.050539, -0.054368, -0.054403, -0.057468, -0.060865, -0.059613, -0.064900, -0.141734 -0.090452, -0.086394, -0.084035, -0.081519, -0.083336, -0.088344, -0.083319, -0.082604, -0.076817, -0.073462, -0.067986, -0.063090, -0.061339, -0.057933, -0.051196, -0.049492, -0.043807, -0.045066, -0.045884, -0.045948, -0.050134, -0.053111, -0.055565, -0.058647, -0.058654, -0.060855, -0.064929, -0.063841, -0.067424, -0.149592 -0.096927, -0.093164, -0.096701, -0.094335, -0.097142, -0.096866, -0.093935, -0.093529, -0.088640, -0.084031, -0.079925, -0.074029, -0.073103, -0.066902, -0.062909, -0.061572, -0.055322, -0.055781, -0.054876, -0.059097, -0.060597, -0.061981, -0.063545, -0.064707, -0.069248, -0.069057, -0.071893, -0.075196, -0.076446, -0.151576 -0.107193, -0.101353, -0.102535, -0.101274, -0.104822, -0.105413, -0.103558, -0.100607, -0.095040, -0.092576, -0.088034, -0.082964, -0.078105, -0.076702, -0.068560, -0.066306, -0.061835, -0.062727, -0.060161, -0.064039, -0.065747, -0.065381, -0.065234, -0.066148, -0.071748, -0.072773, -0.076820, -0.078039, -0.080093, -0.159299 -0.111351, -0.106602, -0.112349, -0.110896, -0.111490, -0.113609, -0.113577, -0.110166, -0.109634, -0.103209, -0.097969, -0.096535, -0.094769, -0.088700, -0.082341, -0.082736, -0.076977, -0.077113, -0.078474, -0.082424, -0.080681, -0.079274, -0.084804, -0.084660, -0.088866, -0.090704, -0.091840, -0.092473, -0.096172, -0.174060 -0.116017, -0.115028, -0.116569, -0.116558, -0.119828, -0.124261, -0.120053, -0.116106, -0.112080, -0.113449, -0.107395, -0.100779, -0.101164, -0.095426, -0.090467, -0.087029, -0.083754, -0.087806, -0.084508, -0.084303, -0.085216, -0.088519, -0.092336, -0.093440, -0.092827, -0.097244, -0.097786, -0.099497, -0.105266, -0.184133 -0.125970, -0.126905, -0.131471, -0.128173, -0.134027, -0.137599, -0.131708, -0.132569, -0.128254, -0.126991, -0.119753, -0.114856, -0.115252, -0.112980, -0.105784, -0.103773, -0.099008, -0.102344, -0.101930, -0.101833, -0.103966, -0.107036, -0.109493, -0.106694, -0.109878, -0.114473, -0.119994, -0.117638, -0.123404, -0.193788 -0.143209, -0.141262, -0.144415, -0.143130, -0.145898, -0.146288, -0.141594, -0.137652, -0.137801, -0.135728, -0.131514, -0.124021, -0.124496, -0.119187, -0.114367, -0.111100, -0.109360, -0.108921, -0.105765, -0.107274, -0.107558, -0.111076, -0.116309, -0.119369, -0.119939, -0.126651, -0.129822, -0.129515, -0.132014, -0.206983 -0.156982, -0.158703, -0.157287, -0.154703, -0.159437, -0.160963, -0.161643, -0.157297, -0.154738, -0.152763, -0.147951, -0.146142, -0.139736, -0.139508, -0.130322, -0.128328, -0.124562, -0.126493, -0.124338, -0.126109, -0.124622, -0.131956, -0.132527, -0.136852, -0.139228, -0.143130, -0.149573, -0.143333, -0.148010, -0.218110 -0.175943, -0.172356, -0.174771, -0.173090, -0.176303, -0.177743, -0.174187, -0.174440, -0.171732, -0.168893, -0.163695, -0.162619, -0.156830, -0.150737, -0.141682, -0.142190, -0.134935, -0.135855, -0.134642, -0.133360, -0.133332, -0.137427, -0.139536, -0.143262, -0.143162, -0.145748, -0.146415, -0.148010, -0.152979, -0.221620 x_count = 30 y_count = 30 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 min_x = 12.0 max_x = 217.9 min_y = 17.0 max_y = 220.0 [bed_mesh scan-test-5050] version = 1 points = 0.030300, 0.035211, 0.051866, 0.062070, 0.067683, 0.065884, 0.056481, 0.036028, 0.013322, 0.002426, -0.004907, -0.009844, -0.007077, -0.003870, -0.005583, -0.004954, -0.003890, -0.006345, -0.009615, -0.009291, -0.008157, -0.009614, -0.012214, -0.012019, -0.014707, -0.018489, -0.017589, -0.018839, -0.022009, -0.023501, -0.026520, -0.023532, -0.031657, -0.034428, -0.038612, -0.043246, -0.048316, -0.050853, -0.049328, -0.042249, -0.026703, -0.013116, -0.010212, -0.012445, -0.023689, -0.044123, -0.068690, -0.083675, -0.092587, -0.132176 0.075280, 0.077410, 0.076824, 0.077048, 0.075883, 0.073119, 0.070938, 0.060896, 0.053589, 0.046851, 0.044442, 0.044187, 0.044204, 0.045327, 0.044489, 0.044034, 0.043569, 0.044101, 0.042880, 0.043201, 0.045003, 0.042724, 0.039609, 0.038817, 0.038311, 0.035792, 0.035985, 0.033381, 0.033485, 0.028716, 0.028007, 0.027262, 0.022239, 0.020311, 0.016237, 0.012402, 0.006794, 0.004925, 0.004193, -0.000658, 0.000213, -0.001175, -0.003933, -0.007249, -0.010860, -0.018299, -0.022869, -0.031490, -0.041487, -0.097112 0.077659, 0.080849, 0.076788, 0.075487, 0.072181, 0.069140, 0.065033, 0.060298, 0.059191, 0.051823, 0.051196, 0.050188, 0.049769, 0.050326, 0.049367, 0.050886, 0.050013, 0.052191, 0.048690, 0.048589, 0.048699, 0.044930, 0.044277, 0.044921, 0.043800, 0.041576, 0.039872, 0.038632, 0.036685, 0.032778, 0.034446, 0.029644, 0.026058, 0.023988, 0.016075, 0.014987, 0.011255, 0.003517, 0.002951, 0.000565, -0.002841, -0.005498, -0.009823, -0.013096, -0.017930, -0.019732, -0.025338, -0.029257, -0.037025, -0.094384 0.077795, 0.078672, 0.073618, 0.070278, 0.071884, 0.067036, 0.063957, 0.058598, 0.056575, 0.052578, 0.050463, 0.047201, 0.049379, 0.051815, 0.050239, 0.051097, 0.052086, 0.050408, 0.047826, 0.048359, 0.050009, 0.047908, 0.047175, 0.045932, 0.045776, 0.041607, 0.038563, 0.037134, 0.036071, 0.034954, 0.033626, 0.033323, 0.026771, 0.021038, 0.020263, 0.013961, 0.009991, 0.006736, 0.001437, -0.002436, -0.005927, -0.011701, -0.014613, -0.020132, -0.024379, -0.024742, -0.027832, -0.032471, -0.042276, -0.099956 0.073443, 0.072021, 0.067990, 0.061626, 0.061977, 0.059793, 0.059076, 0.057375, 0.054758, 0.047835, 0.047290, 0.045031, 0.046686, 0.046612, 0.045987, 0.046079, 0.048008, 0.044829, 0.042885, 0.043276, 0.043498, 0.041104, 0.040635, 0.040138, 0.039553, 0.035204, 0.034804, 0.034558, 0.027241, 0.027120, 0.025268, 0.023349, 0.019110, 0.011717, 0.010370, 0.002941, -0.000699, -0.005077, -0.007935, -0.011144, -0.016447, -0.022010, -0.031845, -0.036874, -0.037889, -0.036468, -0.040696, -0.041451, -0.049836, -0.112679 0.069973, 0.068640, 0.064190, 0.060363, 0.058589, 0.057873, 0.060308, 0.055905, 0.051832, 0.048938, 0.046833, 0.045013, 0.047191, 0.047596, 0.047752, 0.048377, 0.046141, 0.047421, 0.044408, 0.044866, 0.042473, 0.043267, 0.040157, 0.041750, 0.040356, 0.038092, 0.035663, 0.035262, 0.031038, 0.028932, 0.025677, 0.023877, 0.019760, 0.014242, 0.011762, 0.007724, 0.000795, -0.003684, -0.006295, -0.010858, -0.015503, -0.020612, -0.030658, -0.033586, -0.035824, -0.037127, -0.035777, -0.038801, -0.046744, -0.104875 0.068332, 0.064152, 0.059737, 0.059738, 0.056233, 0.054793, 0.054039, 0.049902, 0.047261, 0.043753, 0.044513, 0.040408, 0.043651, 0.043680, 0.044283, 0.043532, 0.044666, 0.040965, 0.037701, 0.038245, 0.036585, 0.036463, 0.035028, 0.036396, 0.035495, 0.032688, 0.029310, 0.029860, 0.026865, 0.021668, 0.021751, 0.018420, 0.012485, 0.007613, 0.004801, 0.000240, -0.006591, -0.009579, -0.014840, -0.018954, -0.021456, -0.027465, -0.032699, -0.038521, -0.040738, -0.040625, -0.042975, -0.042688, -0.050448, -0.107400 0.060206, 0.061107, 0.060991, 0.057743, 0.054088, 0.052605, 0.053484, 0.045794, 0.041832, 0.038765, 0.041281, 0.038706, 0.038203, 0.041439, 0.039527, 0.040103, 0.042092, 0.039478, 0.035233, 0.035911, 0.035683, 0.036205, 0.033106, 0.034977, 0.034454, 0.034167, 0.032218, 0.031063, 0.027670, 0.022941, 0.019928, 0.016760, 0.013449, 0.008529, 0.008178, 0.000454, -0.005250, -0.007666, -0.012172, -0.018433, -0.021619, -0.026151, -0.029886, -0.034149, -0.033981, -0.034107, -0.035384, -0.039102, -0.049442, -0.108195 0.052200, 0.051364, 0.051598, 0.049185, 0.047070, 0.043606, 0.042004, 0.035551, 0.035109, 0.034038, 0.034580, 0.032833, 0.033458, 0.033339, 0.034268, 0.032735, 0.032573, 0.034234, 0.027588, 0.027993, 0.028273, 0.027894, 0.024745, 0.027306, 0.025700, 0.023734, 0.022622, 0.024297, 0.018974, 0.016034, 0.013334, 0.009334, 0.005283, 0.001198, -0.003763, -0.006264, -0.010441, -0.016461, -0.019792, -0.023397, -0.027051, -0.031948, -0.032916, -0.038045, -0.036884, -0.037286, -0.038319, -0.042886, -0.051886, -0.108732 0.044647, 0.045472, 0.045901, 0.043937, 0.040303, 0.041064, 0.037736, 0.034233, 0.033254, 0.031305, 0.030049, 0.029622, 0.030879, 0.030538, 0.029122, 0.029344, 0.031314, 0.029375, 0.025223, 0.027264, 0.025335, 0.027226, 0.028440, 0.028083, 0.027124, 0.025279, 0.023477, 0.026177, 0.021950, 0.016930, 0.016447, 0.012030, 0.005807, 0.003083, -0.000062, -0.003455, -0.008723, -0.011245, -0.015248, -0.020779, -0.026151, -0.027725, -0.030049, -0.033075, -0.033825, -0.033420, -0.034850, -0.039914, -0.048446, -0.107468 0.038360, 0.039516, 0.040043, 0.036861, 0.036149, 0.033806, 0.033612, 0.029779, 0.028267, 0.025502, 0.025656, 0.025625, 0.028270, 0.026235, 0.027499, 0.027109, 0.025415, 0.024329, 0.021686, 0.021922, 0.021678, 0.022997, 0.021549, 0.019969, 0.021605, 0.021136, 0.021353, 0.022473, 0.019603, 0.013478, 0.010609, 0.008276, 0.004560, -0.000693, -0.001630, -0.005440, -0.010443, -0.014095, -0.018014, -0.022198, -0.024759, -0.028685, -0.030136, -0.037695, -0.039735, -0.035703, -0.037187, -0.040600, -0.047606, -0.104237 0.032704, 0.034784, 0.035742, 0.035388, 0.033786, 0.034001, 0.029571, 0.026554, 0.027278, 0.024003, 0.023900, 0.024840, 0.025716, 0.022540, 0.023634, 0.024156, 0.023934, 0.021378, 0.019204, 0.020181, 0.021741, 0.022866, 0.022737, 0.020825, 0.023176, 0.021197, 0.018251, 0.020744, 0.020515, 0.014796, 0.009749, 0.009646, 0.000808, 0.001109, 0.000871, -0.001483, -0.007500, -0.012047, -0.014770, -0.017253, -0.024105, -0.024931, -0.028872, -0.031678, -0.032418, -0.033938, -0.034576, -0.039607, -0.047122, -0.105890 0.024565, 0.028087, 0.028515, 0.026743, 0.025774, 0.022003, 0.021638, 0.017393, 0.016749, 0.014856, 0.015218, 0.014655, 0.014947, 0.017735, 0.015632, 0.015591, 0.019738, 0.018792, 0.015671, 0.015340, 0.017211, 0.016477, 0.011596, 0.014545, 0.015430, 0.014988, 0.015258, 0.014842, 0.013136, 0.007713, 0.005650, 0.005709, -0.000511, -0.001531, -0.006225, -0.008206, -0.013756, -0.017028, -0.020140, -0.020790, -0.025693, -0.028465, -0.031495, -0.036608, -0.037369, -0.039343, -0.039293, -0.041646, -0.050064, -0.106086 0.018438, 0.022646, 0.021185, 0.018338, 0.019403, 0.018117, 0.016981, 0.014192, 0.012369, 0.010349, 0.010399, 0.010863, 0.010850, 0.014183, 0.014288, 0.013901, 0.013784, 0.015561, 0.013901, 0.015550, 0.015601, 0.017403, 0.017231, 0.016289, 0.016467, 0.014706, 0.013720, 0.016446, 0.012844, 0.011507, 0.008227, 0.008880, 0.004542, 0.003476, 0.000045, -0.001332, -0.007722, -0.011596, -0.012561, -0.017396, -0.019851, -0.022195, -0.025848, -0.029442, -0.030937, -0.032689, -0.033221, -0.039512, -0.045212, -0.105818 0.011577, 0.013417, 0.012351, 0.010725, 0.009786, 0.010001, 0.008891, 0.006300, 0.006445, 0.003669, 0.005106, 0.001918, 0.006554, 0.005829, 0.005722, 0.007654, 0.009826, 0.010808, 0.007834, 0.009826, 0.011053, 0.009498, 0.011567, 0.013952, 0.012140, 0.008303, 0.009334, 0.009706, 0.008549, 0.007673, 0.005105, 0.002167, 0.003807, 0.000524, -0.001185, -0.003306, -0.010667, -0.012238, -0.015498, -0.016676, -0.020207, -0.020862, -0.026765, -0.031979, -0.033054, -0.034649, -0.034786, -0.035973, -0.046781, -0.102299 0.006386, 0.010642, 0.009072, 0.007482, 0.007110, 0.008036, 0.008296, 0.004601, 0.003274, 0.002106, 0.001069, 0.001130, 0.003134, 0.005760, 0.003908, 0.008720, 0.009273, 0.008901, 0.009052, 0.010158, 0.010993, 0.015251, 0.011516, 0.013040, 0.013719, 0.012161, 0.012110, 0.015985, 0.014535, 0.008313, 0.008166, 0.007800, 0.007482, 0.007453, 0.004029, 0.003082, -0.005671, -0.007030, -0.008137, -0.013478, -0.017706, -0.018808, -0.020987, -0.027225, -0.027495, -0.027931, -0.028820, -0.035025, -0.044203, -0.101821 0.004975, 0.005147, 0.006767, 0.004979, 0.005257, 0.004214, 0.004089, 0.002965, 0.001049, -0.001147, -0.000301, -0.001651, 0.002425, 0.002631, 0.003807, 0.007349, 0.007905, 0.006134, 0.006375, 0.006092, 0.010209, 0.012999, 0.011426, 0.013554, 0.014736, 0.014329, 0.012000, 0.011101, 0.011155, 0.008115, 0.010722, 0.011326, 0.007722, 0.005452, 0.005679, 0.003983, -0.003616, -0.006817, -0.010975, -0.012920, -0.018249, -0.021011, -0.022385, -0.026877, -0.028112, -0.029300, -0.033147, -0.036526, -0.045825, -0.098871 -0.000121, 0.003753, 0.004603, 0.003501, 0.001856, 0.003010, 0.000507, -0.000581, 0.000604, -0.000454, -0.003117, -0.001464, -0.001478, 0.001067, 0.001292, 0.005136, 0.006888, 0.010640, 0.008619, 0.010578, 0.011677, 0.015524, 0.014193, 0.014915, 0.016980, 0.014518, 0.015813, 0.015052, 0.017211, 0.013564, 0.015430, 0.014895, 0.009785, 0.013124, 0.010631, 0.007234, 0.002117, -0.002107, -0.006606, -0.011249, -0.013105, -0.015767, -0.016235, -0.020500, -0.022562, -0.024389, -0.028413, -0.033015, -0.042302, -0.100083 -0.000994, 0.002233, 0.003426, 0.001127, -0.001536, -0.000062, -0.002992, -0.005096, -0.004080, -0.004360, -0.004134, -0.005135, -0.003861, 0.000557, -0.000445, 0.002851, 0.005881, 0.006637, 0.006325, 0.005578, 0.008539, 0.011070, 0.009907, 0.010451, 0.013619, 0.011698, 0.015641, 0.014266, 0.013015, 0.011374, 0.011436, 0.017266, 0.011809, 0.006511, 0.007613, 0.002988, -0.000509, -0.005896, -0.009533, -0.013136, -0.015264, -0.018805, -0.020780, -0.025780, -0.026306, -0.030016, -0.035423, -0.038360, -0.046041, -0.098652 -0.007132, -0.003736, -0.001323, -0.003986, -0.002428, -0.004021, -0.004276, -0.006959, -0.005860, -0.007234, -0.009142, -0.005543, -0.006736, -0.001692, -0.000248, 0.003041, 0.005216, 0.007978, 0.006837, 0.009173, 0.011617, 0.014298, 0.011959, 0.013585, 0.014454, 0.014067, 0.015812, 0.016016, 0.016658, 0.014308, 0.012602, 0.016195, 0.014434, 0.011604, 0.012050, 0.008304, 0.002530, -0.004440, -0.006024, -0.009209, -0.013394, -0.015438, -0.017916, -0.019685, -0.024554, -0.026302, -0.029289, -0.032533, -0.043824, -0.098038 -0.009016, -0.006799, -0.006601, -0.007658, -0.005066, -0.008339, -0.007858, -0.010742, -0.010643, -0.008721, -0.010857, -0.009552, -0.006384, -0.005309, -0.004453, -0.001389, 0.002127, 0.003554, 0.002309, 0.003071, 0.005851, 0.006386, 0.006585, 0.008199, 0.010732, 0.010525, 0.010984, 0.013103, 0.011979, 0.010389, 0.010299, 0.012129, 0.010077, 0.008083, 0.006264, 0.003994, -0.000973, -0.005837, -0.007839, -0.015540, -0.016694, -0.019087, -0.024137, -0.025324, -0.028644, -0.031016, -0.034316, -0.038782, -0.044407, -0.101852 -0.012250, -0.009467, -0.009172, -0.009031, -0.008387, -0.006999, -0.010139, -0.011699, -0.011771, -0.012954, -0.010771, -0.010842, -0.007395, -0.005465, -0.006132, -0.002128, 0.003174, 0.004256, 0.003597, 0.005104, 0.006868, 0.009844, 0.009705, 0.012233, 0.015772, 0.011950, 0.010833, 0.014622, 0.014353, 0.013177, 0.015762, 0.015239, 0.009545, 0.011054, 0.008559, 0.008085, 0.002047, -0.006198, -0.008952, -0.012612, -0.014734, -0.016243, -0.019551, -0.022198, -0.025629, -0.029696, -0.031885, -0.034035, -0.044893, -0.100648 -0.015247, -0.011930, -0.010722, -0.010549, -0.013592, -0.011341, -0.013482, -0.016310, -0.017759, -0.014337, -0.013987, -0.013319, -0.011857, -0.010480, -0.010039, -0.005428, -0.001330, 0.000261, -0.001148, 0.000080, 0.002590, 0.004451, 0.003224, 0.003647, 0.006908, 0.007835, 0.008307, 0.010285, 0.010229, 0.007706, 0.006818, 0.008272, 0.005158, 0.004476, 0.005198, -0.001413, -0.006940, -0.010058, -0.014666, -0.017710, -0.022240, -0.023454, -0.025577, -0.031038, -0.032929, -0.033623, -0.036647, -0.040835, -0.046247, -0.102867 -0.018235, -0.013917, -0.013158, -0.013586, -0.013140, -0.011281, -0.013074, -0.014995, -0.016358, -0.015762, -0.017346, -0.014552, -0.014324, -0.012108, -0.009250, -0.007069, -0.000450, -0.000268, -0.001897, 0.000965, 0.000839, 0.004059, 0.006051, 0.008030, 0.009535, 0.008086, 0.009424, 0.012090, 0.009766, 0.008780, 0.011004, 0.009857, 0.004090, 0.002399, 0.003898, 0.000017, -0.004463, -0.008972, -0.012813, -0.017318, -0.020529, -0.021572, -0.026047, -0.031458, -0.031656, -0.035192, -0.036284, -0.042406, -0.050134, -0.104656 -0.023433, -0.019328, -0.017556, -0.018142, -0.017006, -0.019851, -0.019612, -0.020163, -0.021076, -0.020790, -0.022912, -0.020863, -0.018543, -0.015286, -0.012227, -0.012779, -0.006502, -0.005708, -0.005913, -0.003764, -0.003860, -0.000601, -0.001263, 0.000232, 0.001048, 0.003731, 0.003375, 0.003596, 0.005478, 0.002691, 0.000955, 0.002862, 0.000898, -0.002040, -0.005337, -0.006867, -0.013252, -0.018499, -0.017806, -0.020544, -0.024534, -0.028213, -0.033398, -0.039828, -0.042128, -0.041734, -0.043792, -0.042405, -0.049976, -0.107384 -0.025901, -0.025585, -0.023188, -0.020999, -0.019653, -0.019196, -0.020904, -0.023433, -0.023198, -0.025859, -0.024293, -0.023939, -0.025410, -0.021342, -0.014278, -0.012246, -0.013675, -0.007794, -0.007269, -0.006174, -0.005188, -0.002330, -0.001386, -0.000247, 0.003711, 0.002560, 0.004906, 0.004774, 0.003501, 0.001937, 0.000719, -0.000065, -0.002538, -0.005004, -0.006581, -0.007500, -0.014103, -0.016179, -0.019717, -0.022041, -0.027572, -0.030457, -0.036943, -0.041790, -0.043895, -0.045318, -0.043727, -0.044987, -0.053341, -0.107291 -0.032798, -0.029174, -0.026931, -0.026745, -0.026041, -0.026745, -0.026290, -0.029843, -0.030017, -0.031449, -0.028235, -0.030895, -0.026921, -0.027788, -0.023303, -0.018735, -0.015745, -0.014568, -0.014559, -0.012654, -0.010125, -0.009690, -0.008478, -0.004292, -0.003519, -0.005415, -0.004586, -0.003115, -0.005850, -0.007468, -0.006678, -0.008150, -0.009657, -0.010996, -0.013814, -0.016564, -0.021553, -0.024252, -0.026356, -0.031604, -0.033103, -0.036008, -0.043503, -0.045637, -0.047796, -0.047720, -0.050554, -0.051883, -0.053401, -0.107439 -0.037944, -0.033928, -0.031406, -0.032699, -0.031124, -0.030844, -0.027609, -0.033326, -0.035458, -0.037729, -0.034786, -0.034337, -0.033796, -0.031137, -0.027627, -0.022510, -0.019565, -0.018203, -0.017979, -0.014572, -0.013419, -0.011346, -0.012134, -0.010497, -0.007550, -0.006104, -0.006401, -0.003821, -0.005088, -0.007677, -0.010981, -0.009650, -0.010353, -0.012836, -0.015866, -0.020424, -0.022217, -0.025671, -0.026410, -0.032032, -0.036850, -0.036690, -0.040391, -0.042464, -0.047472, -0.044933, -0.046220, -0.051649, -0.057776, -0.110490 -0.043473, -0.041870, -0.038641, -0.039219, -0.037236, -0.038436, -0.039039, -0.041340, -0.043466, -0.042226, -0.042048, -0.041095, -0.041533, -0.039718, -0.034003, -0.032512, -0.028007, -0.025066, -0.026084, -0.024440, -0.020869, -0.019986, -0.017741, -0.017255, -0.015418, -0.016005, -0.015633, -0.012809, -0.015138, -0.017611, -0.018383, -0.020540, -0.021021, -0.023136, -0.025324, -0.025806, -0.029310, -0.033367, -0.036939, -0.039722, -0.041822, -0.043119, -0.046806, -0.048983, -0.049800, -0.050822, -0.052643, -0.054883, -0.064225, -0.113134 -0.053462, -0.046624, -0.046763, -0.047348, -0.044409, -0.046051, -0.046090, -0.050648, -0.047947, -0.048123, -0.048509, -0.048942, -0.044343, -0.042136, -0.039844, -0.036928, -0.032178, -0.028059, -0.031777, -0.027392, -0.022901, -0.021562, -0.023368, -0.020080, -0.019817, -0.020622, -0.018393, -0.014714, -0.015428, -0.019100, -0.021400, -0.019193, -0.022259, -0.023325, -0.023815, -0.028726, -0.031516, -0.033262, -0.037420, -0.040983, -0.042734, -0.043165, -0.044045, -0.047082, -0.048965, -0.049502, -0.051467, -0.056005, -0.062399, -0.117609 -0.062293, -0.056331, -0.057455, -0.057824, -0.056152, -0.057048, -0.059279, -0.061001, -0.058694, -0.059081, -0.059063, -0.058321, -0.053471, -0.050902, -0.050217, -0.046018, -0.041494, -0.039278, -0.039815, -0.035777, -0.032905, -0.032324, -0.032482, -0.031021, -0.029213, -0.028017, -0.025585, -0.023085, -0.023217, -0.026213, -0.028192, -0.027371, -0.028865, -0.033074, -0.033384, -0.037667, -0.039324, -0.042561, -0.040355, -0.044569, -0.047141, -0.048170, -0.050385, -0.056067, -0.056203, -0.055070, -0.057860, -0.059080, -0.066800, -0.117609 -0.071804, -0.065280, -0.064474, -0.065989, -0.067073, -0.065257, -0.066500, -0.067052, -0.065809, -0.067168, -0.065762, -0.062294, -0.060625, -0.058193, -0.056206, -0.051923, -0.049071, -0.046341, -0.044865, -0.041624, -0.037900, -0.035932, -0.034210, -0.033670, -0.030506, -0.031437, -0.030583, -0.027882, -0.025726, -0.026911, -0.028462, -0.030166, -0.034091, -0.033814, -0.033471, -0.034392, -0.038849, -0.041641, -0.041845, -0.044941, -0.046043, -0.046787, -0.051707, -0.053452, -0.053449, -0.055940, -0.055880, -0.060956, -0.067899, -0.117190 -0.078931, -0.074939, -0.075051, -0.073806, -0.073606, -0.074914, -0.074409, -0.075763, -0.075921, -0.077140, -0.075904, -0.073678, -0.070040, -0.066481, -0.063732, -0.061150, -0.055207, -0.052691, -0.052551, -0.049951, -0.046490, -0.043610, -0.045224, -0.041216, -0.037895, -0.038024, -0.037930, -0.034170, -0.034296, -0.035129, -0.035937, -0.034295, -0.036135, -0.041575, -0.041307, -0.044484, -0.048754, -0.048025, -0.048365, -0.051215, -0.053622, -0.052477, -0.057293, -0.059752, -0.059554, -0.059297, -0.061781, -0.061366, -0.070363, -0.118813 -0.088040, -0.084419, -0.081762, -0.082026, -0.078979, -0.080425, -0.077765, -0.083207, -0.082825, -0.083525, -0.081792, -0.080274, -0.072272, -0.071469, -0.068597, -0.064261, -0.060601, -0.056243, -0.056190, -0.049741, -0.051375, -0.047823, -0.050097, -0.046593, -0.038304, -0.039302, -0.039153, -0.035181, -0.034346, -0.037031, -0.035818, -0.035745, -0.037120, -0.039866, -0.039440, -0.043233, -0.045626, -0.048199, -0.046788, -0.052099, -0.054170, -0.053362, -0.055693, -0.058792, -0.058977, -0.058318, -0.057783, -0.061263, -0.070291, -0.121625 -0.093345, -0.088940, -0.087998, -0.089787, -0.087435, -0.087960, -0.088121, -0.089265, -0.090410, -0.091792, -0.087902, -0.090212, -0.085568, -0.080681, -0.077888, -0.076715, -0.067076, -0.068048, -0.064078, -0.061972, -0.060141, -0.061378, -0.059732, -0.053332, -0.051411, -0.049669, -0.046760, -0.045213, -0.044595, -0.045690, -0.043145, -0.042309, -0.046147, -0.050768, -0.049872, -0.050951, -0.054234, -0.055760, -0.060196, -0.060170, -0.063186, -0.062248, -0.062080, -0.068243, -0.068123, -0.066356, -0.068754, -0.072569, -0.078466, -0.126221 -0.098726, -0.095483, -0.092817, -0.092790, -0.093120, -0.092471, -0.091934, -0.093021, -0.094398, -0.093092, -0.092751, -0.091643, -0.088959, -0.084952, -0.082414, -0.078101, -0.072500, -0.070921, -0.071642, -0.067626, -0.062259, -0.059696, -0.058508, -0.056365, -0.051674, -0.050426, -0.049443, -0.045759, -0.044983, -0.045281, -0.045105, -0.045126, -0.046586, -0.049229, -0.048443, -0.051563, -0.056349, -0.055679, -0.056660, -0.059324, -0.061056, -0.064788, -0.064457, -0.068825, -0.068598, -0.064081, -0.069925, -0.071317, -0.081273, -0.128136 -0.101254, -0.100113, -0.099407, -0.100495, -0.099783, -0.099627, -0.099724, -0.099276, -0.101573, -0.100021, -0.101236, -0.097888, -0.095769, -0.092854, -0.088231, -0.085612, -0.081126, -0.077501, -0.078939, -0.077560, -0.072362, -0.069112, -0.066276, -0.061696, -0.058345, -0.059301, -0.055672, -0.053723, -0.052894, -0.052073, -0.052749, -0.049532, -0.057178, -0.059594, -0.057813, -0.058779, -0.060451, -0.062318, -0.065406, -0.066939, -0.066114, -0.070052, -0.070657, -0.073346, -0.072756, -0.078564, -0.077341, -0.078575, -0.086803, -0.131110 -0.110133, -0.105102, -0.105708, -0.105182, -0.105788, -0.107663, -0.106753, -0.107758, -0.107439, -0.107569, -0.107459, -0.104875, -0.101156, -0.098000, -0.097513, -0.092270, -0.088212, -0.083852, -0.083601, -0.081483, -0.079272, -0.074652, -0.073437, -0.069803, -0.063209, -0.062915, -0.063357, -0.056010, -0.055660, -0.054197, -0.055657, -0.054486, -0.061525, -0.058397, -0.059758, -0.062018, -0.065498, -0.066333, -0.067317, -0.069814, -0.070155, -0.070601, -0.071573, -0.075380, -0.077368, -0.077962, -0.077603, -0.077587, -0.087275, -0.137072 -0.114946, -0.109640, -0.109368, -0.111587, -0.112419, -0.114383, -0.112002, -0.113420, -0.113462, -0.112427, -0.112579, -0.111018, -0.110003, -0.105851, -0.104964, -0.100652, -0.096840, -0.092850, -0.091738, -0.088917, -0.087314, -0.083875, -0.081917, -0.079939, -0.076226, -0.071935, -0.071927, -0.068657, -0.065852, -0.068062, -0.069788, -0.066787, -0.068530, -0.072126, -0.070417, -0.074761, -0.077186, -0.076443, -0.077411, -0.077990, -0.078425, -0.082103, -0.083461, -0.087900, -0.088013, -0.088663, -0.087579, -0.089468, -0.095705, -0.140701 -0.114607, -0.112851, -0.115712, -0.114383, -0.113801, -0.115641, -0.118296, -0.118941, -0.118276, -0.117242, -0.114956, -0.116412, -0.112906, -0.109319, -0.105888, -0.104101, -0.098155, -0.099532, -0.097125, -0.093999, -0.093486, -0.088750, -0.086480, -0.080881, -0.075789, -0.075503, -0.075486, -0.069396, -0.069833, -0.067979, -0.070565, -0.067538, -0.073289, -0.074927, -0.072830, -0.075846, -0.078523, -0.080344, -0.079358, -0.078325, -0.081585, -0.083913, -0.084833, -0.088770, -0.086470, -0.089155, -0.088062, -0.091318, -0.096604, -0.144085 -0.117919, -0.116404, -0.117768, -0.118217, -0.118148, -0.121416, -0.120337, -0.122908, -0.122863, -0.121292, -0.118734, -0.120164, -0.115958, -0.114820, -0.110262, -0.110873, -0.104169, -0.104027, -0.103632, -0.100154, -0.097586, -0.094982, -0.092916, -0.090010, -0.085639, -0.086713, -0.082606, -0.079136, -0.081180, -0.078162, -0.079596, -0.078129, -0.080836, -0.082686, -0.085649, -0.084479, -0.090355, -0.090766, -0.088595, -0.087183, -0.090626, -0.092616, -0.096238, -0.099347, -0.099029, -0.099104, -0.097808, -0.095817, -0.107739, -0.148874 -0.122133, -0.121810, -0.120236, -0.121790, -0.122153, -0.123423, -0.122630, -0.125313, -0.126493, -0.126268, -0.123675, -0.123088, -0.122255, -0.117811, -0.117251, -0.114104, -0.109119, -0.107922, -0.106296, -0.104753, -0.102965, -0.099086, -0.099765, -0.095084, -0.090135, -0.089300, -0.087622, -0.084850, -0.083017, -0.085826, -0.087431, -0.085377, -0.087132, -0.087274, -0.088799, -0.089752, -0.091574, -0.093209, -0.093746, -0.094598, -0.095890, -0.094896, -0.098100, -0.100517, -0.100778, -0.098415, -0.099526, -0.103782, -0.111415, -0.157409 -0.126207, -0.126195, -0.125046, -0.126584, -0.125804, -0.126341, -0.129733, -0.128877, -0.131486, -0.132147, -0.129959, -0.129039, -0.124601, -0.124132, -0.121628, -0.120723, -0.117620, -0.115482, -0.114389, -0.111701, -0.110413, -0.109051, -0.104704, -0.099248, -0.098025, -0.099670, -0.098244, -0.094162, -0.095270, -0.092810, -0.094172, -0.092966, -0.097469, -0.097670, -0.097404, -0.098714, -0.099387, -0.101677, -0.100828, -0.103126, -0.105203, -0.105488, -0.110014, -0.108335, -0.110641, -0.108978, -0.111009, -0.110387, -0.118902, -0.163909 -0.131668, -0.130559, -0.132018, -0.129683, -0.131624, -0.133349, -0.133425, -0.133701, -0.135846, -0.137375, -0.136720, -0.133828, -0.130422, -0.129539, -0.128395, -0.128262, -0.122958, -0.118319, -0.119530, -0.115719, -0.114616, -0.112602, -0.111941, -0.106627, -0.106266, -0.104307, -0.101127, -0.100580, -0.101564, -0.099656, -0.099794, -0.099446, -0.101015, -0.101883, -0.102012, -0.102609, -0.105968, -0.107141, -0.107630, -0.109308, -0.110372, -0.109518, -0.113409, -0.114088, -0.115473, -0.113432, -0.114815, -0.113812, -0.123523, -0.172921 -0.138324, -0.135516, -0.140995, -0.139334, -0.140525, -0.144157, -0.141756, -0.145128, -0.144457, -0.144300, -0.143911, -0.141961, -0.139903, -0.137444, -0.135099, -0.133772, -0.130224, -0.127943, -0.128854, -0.125906, -0.122898, -0.121111, -0.121161, -0.116816, -0.114537, -0.113414, -0.113525, -0.112977, -0.110133, -0.110470, -0.109964, -0.110354, -0.112947, -0.115680, -0.112389, -0.112649, -0.114200, -0.116528, -0.116676, -0.118360, -0.120922, -0.121660, -0.126018, -0.128063, -0.126445, -0.129439, -0.128842, -0.129558, -0.135627, -0.181408 -0.143662, -0.144762, -0.145909, -0.147136, -0.147995, -0.147594, -0.142872, -0.146626, -0.149177, -0.148094, -0.147987, -0.146918, -0.142598, -0.141732, -0.139203, -0.137864, -0.135881, -0.131965, -0.132466, -0.129745, -0.126966, -0.127928, -0.125169, -0.121129, -0.119121, -0.115573, -0.116397, -0.114776, -0.114209, -0.113999, -0.116456, -0.113364, -0.115038, -0.115741, -0.115875, -0.118824, -0.116837, -0.119240, -0.121138, -0.122383, -0.125168, -0.127329, -0.129455, -0.133821, -0.133891, -0.133113, -0.134387, -0.131946, -0.140828, -0.187017 -0.148373, -0.153811, -0.152151, -0.156198, -0.155077, -0.155390, -0.151953, -0.152493, -0.154307, -0.155999, -0.152235, -0.152422, -0.148468, -0.149275, -0.146771, -0.146467, -0.143481, -0.138381, -0.139756, -0.135837, -0.135480, -0.134210, -0.131833, -0.130152, -0.127832, -0.124475, -0.125123, -0.122630, -0.123198, -0.122819, -0.122542, -0.122544, -0.122302, -0.125397, -0.121311, -0.121892, -0.124806, -0.126988, -0.129837, -0.130492, -0.133143, -0.136060, -0.141331, -0.143210, -0.144828, -0.144989, -0.143748, -0.141628, -0.147408, -0.191720 -0.155719, -0.156617, -0.157296, -0.157690, -0.159542, -0.158951, -0.157228, -0.159744, -0.161546, -0.160248, -0.159239, -0.158198, -0.153819, -0.152282, -0.151756, -0.150334, -0.147959, -0.144867, -0.144588, -0.142053, -0.140361, -0.139702, -0.135494, -0.133324, -0.132106, -0.129513, -0.128624, -0.125064, -0.125624, -0.126942, -0.125147, -0.123914, -0.126466, -0.126621, -0.126538, -0.126963, -0.128648, -0.132916, -0.132987, -0.133492, -0.137530, -0.137873, -0.142232, -0.141922, -0.144396, -0.144540, -0.144901, -0.141592, -0.147812, -0.197671 -0.166544, -0.165788, -0.169615, -0.167309, -0.169228, -0.168032, -0.166748, -0.170012, -0.168339, -0.169435, -0.170867, -0.167538, -0.165415, -0.164456, -0.160360, -0.161835, -0.157272, -0.155889, -0.154078, -0.150884, -0.149155, -0.146699, -0.147273, -0.145010, -0.141491, -0.138855, -0.136817, -0.134010, -0.133122, -0.135459, -0.134620, -0.133632, -0.132166, -0.134831, -0.132853, -0.132154, -0.135587, -0.137514, -0.138924, -0.141102, -0.144805, -0.145169, -0.144600, -0.148366, -0.148666, -0.145836, -0.147986, -0.148942, -0.153692, -0.201238 -0.175820, -0.175883, -0.177076, -0.176214, -0.177940, -0.176939, -0.176016, -0.179491, -0.179414, -0.179234, -0.180110, -0.177451, -0.174703, -0.170472, -0.169228, -0.166030, -0.164868, -0.161234, -0.159246, -0.158335, -0.154255, -0.152172, -0.147989, -0.147396, -0.143858, -0.142830, -0.141527, -0.135459, -0.136199, -0.137966, -0.135022, -0.133454, -0.137156, -0.137076, -0.134557, -0.135591, -0.139416, -0.138983, -0.143846, -0.143858, -0.144233, -0.147164, -0.145192, -0.147277, -0.149665, -0.146048, -0.147232, -0.149773, -0.155160, -0.204483 x_count = 50 y_count = 50 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 min_x = 12.0 max_x = 217.8 min_y = 17.0 max_y = 219.86 [bed_mesh rapid-test-1] version = 1 points = 0.062762, 0.074700, 0.094099, 0.097627, 0.066183, 0.032614, 0.022336, 0.019949, 0.020281, 0.021033, 0.023509, 0.021138, 0.016708, 0.014864, 0.012735, 0.009396, 0.008713, 0.004290, 0.003869, -0.002516, -0.005271, -0.010267, -0.015187, -0.007664, 0.020040, 0.030468, 0.018040, -0.015907, -0.031622, -0.065668 0.106348, 0.099893, 0.081297, 0.085722, 0.070200, 0.057082, 0.059249, 0.062998, 0.068888, 0.070187, 0.065083, 0.067240, 0.065623, 0.067109, 0.056539, 0.064682, 0.060277, 0.063361, 0.057123, 0.052758, 0.048251, 0.043726, 0.038031, 0.039491, 0.033896, 0.027424, 0.022754, 0.019854, 0.011102, -0.037749 0.096367, 0.095257, 0.086257, 0.081028, 0.075935, 0.072459, 0.065573, 0.060964, 0.059117, 0.061601, 0.062410, 0.062488, 0.063229, 0.060465, 0.058898, 0.052351, 0.055262, 0.049278, 0.049425, 0.038418, 0.037560, 0.031557, 0.031086, 0.022107, 0.019769, 0.009908, 0.002391, 0.006184, 0.001449, -0.047195 0.086079, 0.082591, 0.076065, 0.072920, 0.071343, 0.066584, 0.064158, 0.060444, 0.064487, 0.059334, 0.065468, 0.058386, 0.057034, 0.057476, 0.056496, 0.055586, 0.049604, 0.048054, 0.045260, 0.038222, 0.032213, 0.029770, 0.025437, 0.017083, 0.013269, 0.007803, 0.004951, 0.000788, 0.000757, -0.051577 0.078463, 0.079487, 0.071642, 0.072095, 0.061223, 0.055455, 0.057574, 0.052741, 0.055452, 0.050486, 0.051447, 0.047551, 0.047513, 0.048549, 0.048500, 0.047220, 0.049539, 0.039898, 0.037393, 0.030831, 0.026145, 0.020120, 0.017140, 0.010719, 0.008248, 0.002675, -0.003690, -0.001022, -0.002027, -0.055266 0.066624, 0.068284, 0.056210, 0.061517, 0.051899, 0.045671, 0.049266, 0.047981, 0.051380, 0.049326, 0.047829, 0.043221, 0.044104, 0.042509, 0.044763, 0.046509, 0.045828, 0.040208, 0.036817, 0.026358, 0.027399, 0.018911, 0.018531, 0.012526, 0.009186, 0.005896, 0.003734, 0.007058, 0.001632, -0.046689 0.049453, 0.050647, 0.050503, 0.044718, 0.041071, 0.038805, 0.034022, 0.038203, 0.035123, 0.029567, 0.037123, 0.028148, 0.027567, 0.031531, 0.030388, 0.032081, 0.030785, 0.025284, 0.022318, 0.014372, 0.013023, 0.007317, 0.003365, -0.001706, -0.007931, -0.007401, -0.012253, -0.010014, -0.008035, -0.055520 0.034682, 0.036492, 0.036534, 0.035215, 0.031120, 0.029891, 0.028559, 0.026162, 0.028553, 0.026059, 0.027501, 0.026164, 0.025052, 0.025206, 0.027672, 0.026965, 0.027355, 0.021689, 0.020596, 0.015619, 0.012772, 0.009907, 0.007804, 0.003934, 0.002399, -0.002479, -0.001656, -0.001792, -0.001921, -0.056566 0.022777, 0.020810, 0.021656, 0.018012, 0.007998, 0.012445, 0.006658, 0.007277, 0.006853, 0.008943, 0.011287, 0.013722, 0.011506, 0.011673, 0.009657, 0.011322, 0.018567, 0.007837, 0.008945, 0.006436, 0.003422, 0.004938, -0.002797, -0.010158, -0.008424, -0.008219, -0.013924, -0.010869, -0.013633, -0.060393 0.003832, 0.003171, 0.000144, 0.002205, -0.001474, -0.004568, -0.005052, -0.005194, -0.001876, 0.008822, 0.021121, 0.018933, 0.020431, 0.020387, 0.016494, 0.015846, 0.015389, 0.014566, 0.015587, 0.009690, 0.014609, 0.007609, 0.003895, 0.003249, -0.000977, -0.004213, -0.003936, -0.008569, -0.008773, -0.056208 -0.004605, -0.001434, -0.001905, -0.007117, -0.005222, -0.005177, -0.006157, -0.009396, -0.007216, -0.006451, 0.001579, -0.000183, 0.002113, 0.005367, 0.008395, 0.012449, 0.009372, 0.006284, 0.006481, 0.001821, 0.007751, 0.001049, -0.002618, -0.008468, -0.010874, -0.011154, -0.014764, -0.017296, -0.018128, -0.068306 -0.001460, 0.003166, 0.001307, 0.000766, -0.003540, -0.007687, -0.003883, -0.003006, 0.001761, -0.000227, 0.008682, 0.007105, 0.009144, 0.012636, 0.013998, 0.016002, 0.017747, 0.016800, 0.017476, 0.019138, 0.016561, 0.012385, 0.005690, 0.000757, 0.002881, -0.002720, -0.004970, -0.006314, -0.008947, -0.066926 -0.004955, -0.001922, -0.002779, -0.001875, -0.005084, -0.004415, -0.005873, -0.006243, 0.001747, 0.002874, 0.005071, 0.006319, 0.006814, 0.009019, 0.011512, 0.010943, 0.013771, 0.015481, 0.017030, 0.019653, 0.020667, 0.012963, 0.005023, 0.001905, 0.000474, -0.003648, -0.005180, -0.003893, -0.009212, -0.066330 -0.007523, -0.004632, -0.007754, -0.006785, -0.010534, -0.014723, -0.011353, -0.011180, -0.008050, -0.002844, 0.001522, 0.005172, 0.008797, 0.014032, 0.015731, 0.020421, 0.020353, 0.020273, 0.019460, 0.022213, 0.016085, 0.013620, 0.006260, 0.002023, 0.000810, -0.001736, -0.006326, -0.006085, -0.004673, -0.067425 -0.012126, -0.008252, -0.006155, -0.012269, -0.017818, -0.017674, -0.013284, -0.011400, -0.010957, -0.007967, -0.004869, 0.000201, 0.001612, 0.000667, 0.006260, 0.004247, 0.008189, 0.006571, 0.006089, 0.004613, 0.004746, -0.003028, -0.006966, -0.014558, -0.013512, -0.018560, -0.020432, -0.022332, -0.028346, -0.065751 -0.024200, -0.021520, -0.016379, -0.016792, -0.022168, -0.027061, -0.022546, -0.023544, -0.019942, -0.019237, -0.010321, -0.011139, -0.004064, 0.002914, 0.003657, 0.006166, 0.007592, 0.005982, 0.005106, 0.003816, 0.003777, -0.002092, -0.007847, -0.009632, -0.015300, -0.023039, -0.026224, -0.025556, -0.023618, -0.070470 -0.038583, -0.035554, -0.032319, -0.032199, -0.035323, -0.037978, -0.039654, -0.039017, -0.038872, -0.033453, -0.030862, -0.030607, -0.021768, -0.022998, -0.015287, -0.018761, -0.012689, -0.014395, -0.015018, -0.016391, -0.018879, -0.026975, -0.030327, -0.033528, -0.029936, -0.035592, -0.039496, -0.044140, -0.036684, -0.073560 -0.044128, -0.044786, -0.046936, -0.046481, -0.051898, -0.053498, -0.053599, -0.054876, -0.054858, -0.046160, -0.042035, -0.035956, -0.033647, -0.028989, -0.025365, -0.020335, -0.020932, -0.021503, -0.020439, -0.020815, -0.020478, -0.023711, -0.026961, -0.030615, -0.034250, -0.035202, -0.036544, -0.035406, -0.041442, -0.082285 -0.057936, -0.056039, -0.053955, -0.052045, -0.056113, -0.058665, -0.061159, -0.054677, -0.055612, -0.047852, -0.045511, -0.039600, -0.035896, -0.035448, -0.028715, -0.032027, -0.027237, -0.029682, -0.031081, -0.028575, -0.033408, -0.034395, -0.038436, -0.037784, -0.040575, -0.039609, -0.043992, -0.043024, -0.042871, -0.087738 -0.084964, -0.079391, -0.081820, -0.082127, -0.080658, -0.084140, -0.082670, -0.077150, -0.074279, -0.070073, -0.062479, -0.059029, -0.058957, -0.051174, -0.048222, -0.042933, -0.041147, -0.038807, -0.038559, -0.040145, -0.040540, -0.046752, -0.046334, -0.047873, -0.045834, -0.046156, -0.047650, -0.043529, -0.045079, -0.084208 -0.095605, -0.091492, -0.090660, -0.091193, -0.095584, -0.095037, -0.094979, -0.093512, -0.086573, -0.078535, -0.073812, -0.070196, -0.071215, -0.064077, -0.058385, -0.051495, -0.047085, -0.043434, -0.043916, -0.046033, -0.045414, -0.047678, -0.048294, -0.052642, -0.050532, -0.055020, -0.052587, -0.052306, -0.053937, -0.100258 -0.092016, -0.091806, -0.093367, -0.093254, -0.094985, -0.098466, -0.098282, -0.091697, -0.085645, -0.081328, -0.074856, -0.074040, -0.071061, -0.064297, -0.057997, -0.054936, -0.046609, -0.049297, -0.044594, -0.046840, -0.051883, -0.051142, -0.051746, -0.053509, -0.052446, -0.054459, -0.053651, -0.055594, -0.050582, -0.099093 -0.100400, -0.098411, -0.101452, -0.101391, -0.104727, -0.104870, -0.099365, -0.098730, -0.093079, -0.090145, -0.082788, -0.081506, -0.078438, -0.070339, -0.065921, -0.064159, -0.056323, -0.053573, -0.053658, -0.051771, -0.050298, -0.050342, -0.054612, -0.053148, -0.053448, -0.051001, -0.057569, -0.052681, -0.053038, -0.100727 -0.098583, -0.095959, -0.096183, -0.096590, -0.100669, -0.103053, -0.100876, -0.098210, -0.094001, -0.087902, -0.085303, -0.085143, -0.077230, -0.071811, -0.067402, -0.064055, -0.058467, -0.059200, -0.055265, -0.060090, -0.055743, -0.058248, -0.054430, -0.057022, -0.059246, -0.057162, -0.061855, -0.056257, -0.060458, -0.108123 -0.105428, -0.102692, -0.103189, -0.106861, -0.106842, -0.109460, -0.108155, -0.101965, -0.100317, -0.097265, -0.094854, -0.091163, -0.088494, -0.081818, -0.077349, -0.075635, -0.070479, -0.069990, -0.068315, -0.074559, -0.073607, -0.076492, -0.072168, -0.076393, -0.076308, -0.074290, -0.080267, -0.078419, -0.076644, -0.118903 -0.131448, -0.126082, -0.129739, -0.129057, -0.137890, -0.138632, -0.137434, -0.132940, -0.126496, -0.123834, -0.115623, -0.113669, -0.110472, -0.105234, -0.102343, -0.102347, -0.092530, -0.097385, -0.092180, -0.095410, -0.094433, -0.095897, -0.090142, -0.092872, -0.087953, -0.091774, -0.085511, -0.090766, -0.087221, -0.137236 -0.135358, -0.134627, -0.139834, -0.138453, -0.139353, -0.140200, -0.136350, -0.134923, -0.133450, -0.128152, -0.118996, -0.115876, -0.113565, -0.108906, -0.102664, -0.103126, -0.098401, -0.097147, -0.090217, -0.094191, -0.094857, -0.092990, -0.099051, -0.100592, -0.099688, -0.102576, -0.096409, -0.099770, -0.096543, -0.149373 -0.141703, -0.145394, -0.147039, -0.142269, -0.138589, -0.144561, -0.140375, -0.140540, -0.134932, -0.132484, -0.125222, -0.123708, -0.123509, -0.116703, -0.111283, -0.110926, -0.103939, -0.104893, -0.103181, -0.102284, -0.101596, -0.100020, -0.104110, -0.104352, -0.103715, -0.111913, -0.110682, -0.111386, -0.105091, -0.156360 -0.148995, -0.151748, -0.157013, -0.153876, -0.153843, -0.156013, -0.150305, -0.153972, -0.149556, -0.144916, -0.141172, -0.141877, -0.137162, -0.133125, -0.128417, -0.125465, -0.121145, -0.116443, -0.118212, -0.119006, -0.119106, -0.117456, -0.120325, -0.119823, -0.126214, -0.126838, -0.126613, -0.125783, -0.119703, -0.166779 -0.180841, -0.183964, -0.179570, -0.181475, -0.182301, -0.180936, -0.178216, -0.177806, -0.175304, -0.170956, -0.162679, -0.161705, -0.157612, -0.148817, -0.144125, -0.142989, -0.133003, -0.130615, -0.128269, -0.125051, -0.124478, -0.128036, -0.129322, -0.134286, -0.132101, -0.127928, -0.123844, -0.118072, -0.119832, -0.162895 x_count = 30 y_count = 30 mesh_x_pps = 2 mesh_y_pps = 2 algo = bicubic tension = 0.2 min_x = 12.0 max_x = 217.9 min_y = 17.0 max_y = 220.0 ======================= Extruder max_extrude_ratio=3.326014 mcu 'mcu': Starting serial connect webhooks client 140732187736656: New connection webhooks client 140732187736656: Client info {'program': 'Moonraker', 'version': 'v0.8.0-379-g346a3d7'} mcu 'mcu': got {'oid': 14, 'next_clock': 2402560000, 'value': 31227, '#name': 'analog_in_state', '#sent_time': 175990.79878936, '#receive_time': 175990.799184879} mcu 'mcu': got {'oid': 11, 'next_clock': 2419840000, 'value': 7725, '#name': 'analog_in_state', '#sent_time': 175991.05146449, '#receive_time': 175991.069216323} mcu 'mcu': got {'oid': 14, 'next_clock': 2421760000, 'value': 31239, '#name': 'analog_in_state', '#sent_time': 175991.05146449, '#receive_time': 175991.099207916} Loaded MCU 'mcu' 113 commands (v0.12.0-207-g6cd174208 / gcc: (15:12.2.rel1-1) 12.2.1 20221205 binutils: (2.40-2+18+b1) 2.40) MCU 'mcu' config: ADC_MAX=4095 BUS_PINS_i2c1_PA9_PA10=PA9,PA10 BUS_PINS_i2c1_PB6_PB7=PB6,PB7 BUS_PINS_i2c1_PB8_PB9=PB8,PB9 BUS_PINS_i2c2_PB10_PB11=PB10,PB11 BUS_PINS_i2c2_PB13_PB14=PB13,PB14 BUS_PINS_i2c3_PB3_PB4=PB3,PB4 BUS_PINS_i2c3_PC0_PC1=PC0,PC1 BUS_PINS_spi1=PA6,PA7,PA5 BUS_PINS_spi1a=PB4,PB5,PB3 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi2_PB2_PB11_PB10=PB2,PB11,PB10 BUS_PINS_spi2a=PC2,PC3,PB10 BUS_PINS_spi3=PB4,PB5,PB3 CLOCK_FREQ=64000000 MCU=stm32g0b1xx PWM_MAX=255 RESERVE_PINS_USB=PA11,PA12 RESERVE_PINS_crystal=PF0,PF1 STATS_SUMSQ_BASE=256 STEPPER_BOTH_EDGE=1 mcu 'HermitCrab2': Starting CAN connect Created a socket mcu 'mcu': got {'oid': 11, 'next_clock': 2439040000, 'value': 7729, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175991.369206767} mcu 'mcu': got {'oid': 14, 'next_clock': 2440960000, 'value': 31211, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175991.399199212} mcu 'HermitCrab2': got {'oid': 2, 'next_clock': 456095896, 'count': 1, 'count_clock': 59861896, '#name': 'counter_state', '#sent_time': 175991.584145675, '#receive_time': 175991.588710249} mcu 'HermitCrab2': got {'oid': 8, 'next_clock': 460181896, 'value': 30743, '#name': 'analog_in_state', '#sent_time': 175991.63496587798, '#receive_time': 175991.637753397} mcu 'mcu': got {'oid': 11, 'next_clock': 2458240000, 'value': 7723, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175991.669246138} mcu 'HermitCrab2': got {'oid': 12, 'next_clock': 460661896, 'value': 30992, '#name': 'analog_in_state', '#sent_time': 175991.63496587798, '#receive_time': 175991.67774350801} mcu 'mcu': got {'oid': 14, 'next_clock': 2460160000, 'value': 31235, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175991.699229823} Loaded MCU 'HermitCrab2' 115 commands (v0.12.0-207-g6cd174208 / gcc: (15:12.2.rel1-1) 12.2.1 20221205 binutils: (2.40-2+18+b1) 2.40) MCU 'HermitCrab2' config: ADC_MAX=4095 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_i2c1a=gpio2,gpio3 BUS_PINS_i2c1b=gpio6,gpio7 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c1d=gpio14,gpio15 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_spi0b=gpio4,gpio7,gpio6 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_spi1a=gpio8,gpio11,gpio10 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1c=gpio24,gpio27,gpio26 CANBUS_FREQUENCY=1000000 CLOCK_FREQ=12000000 MCU=rp2040 PWM_MAX=255 RECEIVE_WINDOW=192 RESERVE_PINS_CAN=gpio4,gpio5 STATS_SUMSQ_BASE=256 STEPPER_BOTH_EDGE=1 mcu 'eddy': Starting serial connect mcu 'HermitCrab2': got {'oid': 8, 'next_clock': 463781896, 'value': 30741, '#name': 'analog_in_state', '#sent_time': 175991.85296678598, '#receive_time': 175991.937752989} mcu 'mcu': got {'oid': 11, 'next_clock': 2477440000, 'value': 7735, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175991.969248137} mcu 'HermitCrab2': got {'oid': 12, 'next_clock': 464261896, 'value': 30992, '#name': 'analog_in_state', '#sent_time': 175991.85296678598, '#receive_time': 175991.977717897} mcu 'mcu': got {'oid': 14, 'next_clock': 2479360000, 'value': 31229, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175991.999207804} mcu 'eddy': got {'oid': 3, 'next_clock': 466635732, 'value': 6771, '#name': 'analog_in_state', '#sent_time': 175992.1661011, '#receive_time': 175992.189941174} mcu 'eddy': got {'oid': 4, 'next_clock': 466755732, 'value': 30432, '#name': 'analog_in_state', '#sent_time': 175992.1661011, '#receive_time': 175992.199874915} mcu 'HermitCrab2': got {'oid': 8, 'next_clock': 467381896, 'value': 30739, '#name': 'analog_in_state', '#sent_time': 175991.85296678598, '#receive_time': 175992.23771736} mcu 'mcu': got {'oid': 11, 'next_clock': 2496640000, 'value': 7729, '#name': 'analog_in_state', '#sent_time': 175991.306553786, '#receive_time': 175992.269201878} mcu 'HermitCrab2': got {'oid': 12, 'next_clock': 467861896, 'value': 30991, '#name': 'analog_in_state', '#sent_time': 175991.85296678598, '#receive_time': 175992.27771186} mcu 'mcu': got {'oid': 14, 'next_clock': 2498560000, 'value': 31241, '#name': 'analog_in_state', '#sent_time': 175992.291122322, '#receive_time': 175992.299191897} mcu 'eddy': got {'oid': 3, 'next_clock': 470235732, 'value': 6770, '#name': 'analog_in_state', '#sent_time': 175992.472248285, '#receive_time': 175992.489917804} mcu 'eddy': got {'oid': 4, 'next_clock': 470355732, 'value': 30421, '#name': 'analog_in_state', '#sent_time': 175992.472248285, '#receive_time': 175992.499904859} Loaded MCU 'eddy' 113 commands (v0.12.0-229-gaa507c897 / gcc: (15:12.2.rel1-1) 12.2.1 20221205 binutils: (2.40-2+18+b1) 2.40) MCU 'eddy' config: ADC_MAX=4095 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_i2c1a=gpio2,gpio3 BUS_PINS_i2c1b=gpio6,gpio7 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c1d=gpio14,gpio15 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_spi0b=gpio4,gpio7,gpio6 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_spi1a=gpio8,gpio11,gpio10 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1c=gpio24,gpio27,gpio26 CLOCK_FREQ=12000000 MCU=rp2040 PWM_MAX=255 STATS_SUMSQ_BASE=256 STEPPER_BOTH_EDGE=1 mcu 'HBB': Starting serial connect mcu 'HermitCrab2': got {'oid': 8, 'next_clock': 470981896, 'value': 30743, '#name': 'analog_in_state', '#sent_time': 175991.85296678598, '#receive_time': 175992.537713656} mcu 'mcu': got {'oid': 11, 'next_clock': 2515840000, 'value': 7732, '#name': 'analog_in_state', '#sent_time': 175992.291122322, '#receive_time': 175992.569229841} mcu 'HermitCrab2': got {'oid': 12, 'next_clock': 471461896, 'value': 30991, '#name': 'analog_in_state', '#sent_time': 175991.85296678598, '#receive_time': 175992.577720841} mcu 'HermitCrab2': got {'oid': 2, 'next_clock': 468101896, 'count': 1, 'count_clock': 59861896, '#name': 'counter_state', '#sent_time': 175991.85296678598, '#receive_time': 175992.589160785} mcu 'mcu': got {'oid': 14, 'next_clock': 2517760000, 'value': 31235, '#name': 'analog_in_state', '#sent_time': 175992.291122322, '#receive_time': 175992.599210452} mcu 'eddy': got {'oid': 3, 'next_clock': 473835732, 'value': 6771, '#name': 'analog_in_state', '#sent_time': 175992.527941859, '#receive_time': 175992.789965285} mcu 'eddy': got {'oid': 4, 'next_clock': 473955732, 'value': 30424, '#name': 'analog_in_state', '#sent_time': 175992.527941859, '#receive_time': 175992.799901878} mcu 'HermitCrab2': got {'oid': 8, 'next_clock': 474581896, 'value': 30744, '#name': 'analog_in_state', '#sent_time': 175992.8373676, '#receive_time': 175992.83782323} mcu 'mcu': got {'oid': 11, 'next_clock': 2535040000, 'value': 7733, '#name': 'analog_in_state', '#sent_time': 175992.291122322, '#receive_time': 175992.869231674} mcu 'HermitCrab2': got {'oid': 12, 'next_clock': 475061896, 'value': 30992, '#name': 'analog_in_state', '#sent_time': 175992.8373676, '#receive_time': 175992.87770191501} mcu 'mcu': got {'oid': 14, 'next_clock': 2536960000, 'value': 31230, '#name': 'analog_in_state', '#sent_time': 175992.291122322, '#receive_time': 175992.899220248} mcu 'eddy': got {'oid': 3, 'next_clock': 477435732, 'value': 6770, '#name': 'analog_in_state', '#sent_time': 175992.527941859, '#receive_time': 175993.090091081} mcu 'eddy': got {'oid': 4, 'next_clock': 477555732, 'value': 30423, '#name': 'analog_in_state', '#sent_time': 175992.527941859, '#receive_time': 175993.099919026} Loaded MCU 'HBB' 113 commands (v0.12.0-207-g6cd174208 / gcc: (15:12.2.rel1-1) 12.2.1 20221205 binutils: (2.40-2+18+b1) 2.40) MCU 'HBB' config: ADC_MAX=4095 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_i2c1a=gpio2,gpio3 BUS_PINS_i2c1b=gpio6,gpio7 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c1d=gpio14,gpio15 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_spi0b=gpio4,gpio7,gpio6 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_spi1a=gpio8,gpio11,gpio10 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1c=gpio24,gpio27,gpio26 CLOCK_FREQ=12000000 MCU=rp2040 PWM_MAX=255 STATS_SUMSQ_BASE=256 STEPPER_BOTH_EDGE=1 mcu_temperature 'eddy' nominal base=437.226612 slope=-1917.489831 mcu 'HermitCrab2': got {'oid': 8, 'next_clock': 478181896, 'value': 30736, '#name': 'analog_in_state', '#sent_time': 175992.8373676, '#receive_time': 175993.13775402601} mcu_temperature 'mcu' nominal base=-265.664740 slope=1301.878613 Configured MCU 'mcu' (1024 moves) Configured MCU 'HermitCrab2' (1024 moves) Configured MCU 'eddy' (1024 moves) Configured MCU 'HBB' (1024 moves) bed_mesh: generated points Index | Tool Adjusted | Probe 0 | (-41.0, 6.0) | (12.0, 17.0) 1 | (-33.9, 6.0) | (19.1, 17.0) 2 | (-26.8, 6.0) | (26.2, 17.0) 3 | (-19.7, 6.0) | (33.3, 17.0) 4 | (-12.6, 6.0) | (40.4, 17.0) 5 | (-5.5, 6.0) | (47.5, 17.0) 6 | (1.6, 6.0) | (54.6, 17.0) 7 | (8.7, 6.0) | (61.7, 17.0) 8 | (15.8, 6.0) | (68.8, 17.0) 9 | (22.9, 6.0) | (75.9, 17.0) 10 | (30.0, 6.0) | (83.0, 17.0) 11 | (37.1, 6.0) | (90.1, 17.0) 12 | (44.2, 6.0) | (97.2, 17.0) 13 | (51.3, 6.0) | (104.3, 17.0) 14 | (58.4, 6.0) | (111.4, 17.0) 15 | (65.5, 6.0) | (118.5, 17.0) 16 | (72.6, 6.0) | (125.6, 17.0) 17 | (79.7, 6.0) | (132.7, 17.0) 18 | (86.8, 6.0) | (139.8, 17.0) 19 | (93.9, 6.0) | (146.9, 17.0) 20 | (101.0, 6.0) | (154.0, 17.0) 21 | (108.1, 6.0) | (161.1, 17.0) 22 | (115.2, 6.0) | (168.2, 17.0) 23 | (122.3, 6.0) | (175.3, 17.0) 24 | (129.4, 6.0) | (182.4, 17.0) 25 | (136.5, 6.0) | (189.5, 17.0) 26 | (143.6, 6.0) | (196.6, 17.0) 27 | (150.7, 6.0) | (203.7, 17.0) 28 | (157.8, 6.0) | (210.8, 17.0) 29 | (164.9, 6.0) | (217.9, 17.0) 30 | (164.9, 13.0) | (217.9, 24.0) 31 | (157.8, 13.0) | (210.8, 24.0) 32 | (150.7, 13.0) | (203.7, 24.0) 33 | (143.6, 13.0) | (196.6, 24.0) 34 | (136.5, 13.0) | (189.5, 24.0) 35 | (129.4, 13.0) | (182.4, 24.0) 36 | (122.3, 13.0) | (175.3, 24.0) 37 | (115.2, 13.0) | (168.2, 24.0) 38 | (108.1, 13.0) | (161.1, 24.0) 39 | (101.0, 13.0) | (154.0, 24.0) 40 | (93.9, 13.0) | (146.9, 24.0) 41 | (86.8, 13.0) | (139.8, 24.0) 42 | (79.7, 13.0) | (132.7, 24.0) 43 | (72.6, 13.0) | (125.6, 24.0) 44 | (65.5, 13.0) | (118.5, 24.0) 45 | (58.4, 13.0) | (111.4, 24.0) 46 | (51.3, 13.0) | (104.3, 24.0) 47 | (44.2, 13.0) | (97.2, 24.0) 48 | (37.1, 13.0) | (90.1, 24.0) 49 | (30.0, 13.0) | (83.0, 24.0) 50 | (22.9, 13.0) | (75.9, 24.0) 51 | (15.8, 13.0) | (68.8, 24.0) 52 | (8.7, 13.0) | (61.7, 24.0) 53 | (1.6, 13.0) | (54.6, 24.0) 54 | (-5.5, 13.0) | (47.5, 24.0) 55 | (-12.6, 13.0) | (40.4, 24.0) 56 | (-19.7, 13.0) | (33.3, 24.0) 57 | (-26.8, 13.0) | (26.2, 24.0) 58 | (-33.9, 13.0) | (19.1, 24.0) 59 | (-41.0, 13.0) | (12.0, 24.0) 60 | (-41.0, 20.0) | (12.0, 31.0) 61 | (-33.9, 20.0) | (19.1, 31.0) 62 | (-26.8, 20.0) | (26.2, 31.0) 63 | (-19.7, 20.0) | (33.3, 31.0) 64 | (-12.6, 20.0) | (40.4, 31.0) 65 | (-5.5, 20.0) | (47.5, 31.0) 66 | (1.6, 20.0) | (54.6, 31.0) 67 | (8.7, 20.0) | (61.7, 31.0) 68 | (15.8, 20.0) | (68.8, 31.0) 69 | (22.9, 20.0) | (75.9, 31.0) 70 | (30.0, 20.0) | (83.0, 31.0) 71 | (37.1, 20.0) | (90.1, 31.0) 72 | (44.2, 20.0) | (97.2, 31.0) 73 | (51.3, 20.0) | (104.3, 31.0) 74 | (58.4, 20.0) | (111.4, 31.0) 75 | (65.5, 20.0) | (118.5, 31.0) 76 | (72.6, 20.0) | (125.6, 31.0) 77 | (79.7, 20.0) | (132.7, 31.0) 78 | (86.8, 20.0) | (139.8, 31.0) 79 | (93.9, 20.0) | (146.9, 31.0) 80 | (101.0, 20.0) | (154.0, 31.0) 81 | (108.1, 20.0) | (161.1, 31.0) 82 | (115.2, 20.0) | (168.2, 31.0) 83 | (122.3, 20.0) | (175.3, 31.0) 84 | (129.4, 20.0) | (182.4, 31.0) 85 | (136.5, 20.0) | (189.5, 31.0) 86 | (143.6, 20.0) | (196.6, 31.0) 87 | (150.7, 20.0) | (203.7, 31.0) 88 | (157.8, 20.0) | (210.8, 31.0) 89 | (164.9, 20.0) | (217.9, 31.0) 90 | (164.9, 27.0) | (217.9, 38.0) 91 | (157.8, 27.0) | (210.8, 38.0) 92 | (150.7, 27.0) | (203.7, 38.0) 93 | (143.6, 27.0) | (196.6, 38.0) 94 | (136.5, 27.0) | (189.5, 38.0) 95 | (129.4, 27.0) | (182.4, 38.0) 96 | (122.3, 27.0) | (175.3, 38.0) 97 | (115.2, 27.0) | (168.2, 38.0) 98 | (108.1, 27.0) | (161.1, 38.0) 99 | (101.0, 27.0) | (154.0, 38.0) 100 | (93.9, 27.0) | (146.9, 38.0) 101 | (86.8, 27.0) | (139.8, 38.0) 102 | (79.7, 27.0) | (132.7, 38.0) 103 | (72.6, 27.0) | (125.6, 38.0) 104 | (65.5, 27.0) | (118.5, 38.0) 105 | (58.4, 27.0) | (111.4, 38.0) 106 | (51.3, 27.0) | (104.3, 38.0) 107 | (44.2, 27.0) | (97.2, 38.0) 108 | (37.1, 27.0) | (90.1, 38.0) 109 | (30.0, 27.0) | (83.0, 38.0) 110 | (22.9, 27.0) | (75.9, 38.0) 111 | (15.8, 27.0) | (68.8, 38.0) 112 | (8.7, 27.0) | (61.7, 38.0) 113 | (1.6, 27.0) | (54.6, 38.0) 114 | (-5.5, 27.0) | (47.5, 38.0) 115 | (-12.6, 27.0) | (40.4, 38.0) 116 | (-19.7, 27.0) | (33.3, 38.0) 117 | (-26.8, 27.0) | (26.2, 38.0) 118 | (-33.9, 27.0) | (19.1, 38.0) 119 | (-41.0, 27.0) | (12.0, 38.0) 120 | (-41.0, 34.0) | (12.0, 45.0) 121 | (-33.9, 34.0) | (19.1, 45.0) 122 | (-26.8, 34.0) | (26.2, 45.0) 123 | (-19.7, 34.0) | (33.3, 45.0) 124 | (-12.6, 34.0) | (40.4, 45.0) 125 | (-5.5, 34.0) | (47.5, 45.0) 126 | (1.6, 34.0) | (54.6, 45.0) 127 | (8.7, 34.0) | (61.7, 45.0) 128 | (15.8, 34.0) | (68.8, 45.0) 129 | (22.9, 34.0) | (75.9, 45.0) 130 | (30.0, 34.0) | (83.0, 45.0) 131 | (37.1, 34.0) | (90.1, 45.0) 132 | (44.2, 34.0) | (97.2, 45.0) 133 | (51.3, 34.0) | (104.3, 45.0) 134 | (58.4, 34.0) | (111.4, 45.0) 135 | (65.5, 34.0) | (118.5, 45.0) 136 | (72.6, 34.0) | (125.6, 45.0) 137 | (79.7, 34.0) | (132.7, 45.0) 138 | (86.8, 34.0) | (139.8, 45.0) 139 | (93.9, 34.0) | (146.9, 45.0) 140 | (101.0, 34.0) | (154.0, 45.0) 141 | (108.1, 34.0) | (161.1, 45.0) 142 | (115.2, 34.0) | (168.2, 45.0) 143 | (122.3, 34.0) | (175.3, 45.0) 144 | (129.4, 34.0) | (182.4, 45.0) 145 | (136.5, 34.0) | (189.5, 45.0) 146 | (143.6, 34.0) | (196.6, 45.0) 147 | (150.7, 34.0) | (203.7, 45.0) 148 | (157.8, 34.0) | (210.8, 45.0) 149 | (164.9, 34.0) | (217.9, 45.0) 150 | (164.9, 41.0) | (217.9, 52.0) 151 | (157.8, 41.0) | (210.8, 52.0) 152 | (150.7, 41.0) | (203.7, 52.0) 153 | (143.6, 41.0) | (196.6, 52.0) 154 | (136.5, 41.0) | (189.5, 52.0) 155 | (129.4, 41.0) | (182.4, 52.0) 156 | (122.3, 41.0) | (175.3, 52.0) 157 | (115.2, 41.0) | (168.2, 52.0) 158 | (108.1, 41.0) | (161.1, 52.0) 159 | (101.0, 41.0) | (154.0, 52.0) 160 | (93.9, 41.0) | (146.9, 52.0) 161 | (86.8, 41.0) | (139.8, 52.0) 162 | (79.7, 41.0) | (132.7, 52.0) 163 | (72.6, 41.0) | (125.6, 52.0) 164 | (65.5, 41.0) | (118.5, 52.0) 165 | (58.4, 41.0) | (111.4, 52.0) 166 | (51.3, 41.0) | (104.3, 52.0) 167 | (44.2, 41.0) | (97.2, 52.0) 168 | (37.1, 41.0) | (90.1, 52.0) 169 | (30.0, 41.0) | (83.0, 52.0) 170 | (22.9, 41.0) | (75.9, 52.0) 171 | (15.8, 41.0) | (68.8, 52.0) 172 | (8.7, 41.0) | (61.7, 52.0) 173 | (1.6, 41.0) | (54.6, 52.0) 174 | (-5.5, 41.0) | (47.5, 52.0) 175 | (-12.6, 41.0) | (40.4, 52.0) 176 | (-19.7, 41.0) | (33.3, 52.0) 177 | (-26.8, 41.0) | (26.2, 52.0) 178 | (-33.9, 41.0) | (19.1, 52.0) 179 | (-41.0, 41.0) | (12.0, 52.0) 180 | (-41.0, 48.0) | (12.0, 59.0) 181 | (-33.9, 48.0) | (19.1, 59.0) 182 | (-26.8, 48.0) | (26.2, 59.0) 183 | (-19.7, 48.0) | (33.3, 59.0) 184 | (-12.6, 48.0) | (40.4, 59.0) 185 | (-5.5, 48.0) | (47.5, 59.0) 186 | (1.6, 48.0) | (54.6, 59.0) 187 | (8.7, 48.0) | (61.7, 59.0) 188 | (15.8, 48.0) | (68.8, 59.0) 189 | (22.9, 48.0) | (75.9, 59.0) 190 | (30.0, 48.0) | (83.0, 59.0) 191 | (37.1, 48.0) | (90.1, 59.0) 192 | (44.2, 48.0) | (97.2, 59.0) 193 | (51.3, 48.0) | (104.3, 59.0) 194 | (58.4, 48.0) | (111.4, 59.0) 195 | (65.5, 48.0) | (118.5, 59.0) 196 | (72.6, 48.0) | (125.6, 59.0) 197 | (79.7, 48.0) | (132.7, 59.0) 198 | (86.8, 48.0) | (139.8, 59.0) 199 | (93.9, 48.0) | (146.9, 59.0) 200 | (101.0, 48.0) | (154.0, 59.0) 201 | (108.1, 48.0) | (161.1, 59.0) 202 | (115.2, 48.0) | (168.2, 59.0) 203 | (122.3, 48.0) | (175.3, 59.0) 204 | (129.4, 48.0) | (182.4, 59.0) 205 | (136.5, 48.0) | (189.5, 59.0) 206 | (143.6, 48.0) | (196.6, 59.0) 207 | (150.7, 48.0) | (203.7, 59.0) 208 | (157.8, 48.0) | (210.8, 59.0) 209 | (164.9, 48.0) | (217.9, 59.0) 210 | (164.9, 55.0) | (217.9, 66.0) 211 | (157.8, 55.0) | (210.8, 66.0) 212 | (150.7, 55.0) | (203.7, 66.0) 213 | (143.6, 55.0) | (196.6, 66.0) 214 | (136.5, 55.0) | (189.5, 66.0) 215 | (129.4, 55.0) | (182.4, 66.0) 216 | (122.3, 55.0) | (175.3, 66.0) 217 | (115.2, 55.0) | (168.2, 66.0) 218 | (108.1, 55.0) | (161.1, 66.0) 219 | (101.0, 55.0) | (154.0, 66.0) 220 | (93.9, 55.0) | (146.9, 66.0) 221 | (86.8, 55.0) | (139.8, 66.0) 222 | (79.7, 55.0) | (132.7, 66.0) 223 | (72.6, 55.0) | (125.6, 66.0) 224 | (65.5, 55.0) | (118.5, 66.0) 225 | (58.4, 55.0) | (111.4, 66.0) 226 | (51.3, 55.0) | (104.3, 66.0) 227 | (44.2, 55.0) | (97.2, 66.0) 228 | (37.1, 55.0) | (90.1, 66.0) 229 | (30.0, 55.0) | (83.0, 66.0) 230 | (22.9, 55.0) | (75.9, 66.0) 231 | (15.8, 55.0) | (68.8, 66.0) 232 | (8.7, 55.0) | (61.7, 66.0) 233 | (1.6, 55.0) | (54.6, 66.0) 234 | (-5.5, 55.0) | (47.5, 66.0) 235 | (-12.6, 55.0) | (40.4, 66.0) 236 | (-19.7, 55.0) | (33.3, 66.0) 237 | (-26.8, 55.0) | (26.2, 66.0) 238 | (-33.9, 55.0) | (19.1, 66.0) 239 | (-41.0, 55.0) | (12.0, 66.0) 240 | (-41.0, 62.0) | (12.0, 73.0) 241 | (-33.9, 62.0) | (19.1, 73.0) 242 | (-26.8, 62.0) | (26.2, 73.0) 243 | (-19.7, 62.0) | (33.3, 73.0) 244 | (-12.6, 62.0) | (40.4, 73.0) 245 | (-5.5, 62.0) | (47.5, 73.0) 246 | (1.6, 62.0) | (54.6, 73.0) 247 | (8.7, 62.0) | (61.7, 73.0) 248 | (15.8, 62.0) | (68.8, 73.0) 249 | (22.9, 62.0) | (75.9, 73.0) 250 | (30.0, 62.0) | (83.0, 73.0) 251 | (37.1, 62.0) | (90.1, 73.0) 252 | (44.2, 62.0) | (97.2, 73.0) 253 | (51.3, 62.0) | (104.3, 73.0) 254 | (58.4, 62.0) | (111.4, 73.0) 255 | (65.5, 62.0) | (118.5, 73.0) 256 | (72.6, 62.0) | (125.6, 73.0) 257 | (79.7, 62.0) | (132.7, 73.0) 258 | (86.8, 62.0) | (139.8, 73.0) 259 | (93.9, 62.0) | (146.9, 73.0) 260 | (101.0, 62.0) | (154.0, 73.0) 261 | (108.1, 62.0) | (161.1, 73.0) 262 | (115.2, 62.0) | (168.2, 73.0) 263 | (122.3, 62.0) | (175.3, 73.0) 264 | (129.4, 62.0) | (182.4, 73.0) 265 | (136.5, 62.0) | (189.5, 73.0) 266 | (143.6, 62.0) | (196.6, 73.0) 267 | (150.7, 62.0) | (203.7, 73.0) 268 | (157.8, 62.0) | (210.8, 73.0) 269 | (164.9, 62.0) | (217.9, 73.0) 270 | (164.9, 69.0) | (217.9, 80.0) 271 | (157.8, 69.0) | (210.8, 80.0) 272 | (150.7, 69.0) | (203.7, 80.0) 273 | (143.6, 69.0) | (196.6, 80.0) 274 | (136.5, 69.0) | (189.5, 80.0) 275 | (129.4, 69.0) | (182.4, 80.0) 276 | (122.3, 69.0) | (175.3, 80.0) 277 | (115.2, 69.0) | (168.2, 80.0) 278 | (108.1, 69.0) | (161.1, 80.0) 279 | (101.0, 69.0) | (154.0, 80.0) 280 | (93.9, 69.0) | (146.9, 80.0) 281 | (86.8, 69.0) | (139.8, 80.0) 282 | (79.7, 69.0) | (132.7, 80.0) 283 | (72.6, 69.0) | (125.6, 80.0) 284 | (65.5, 69.0) | (118.5, 80.0) 285 | (58.4, 69.0) | (111.4, 80.0) 286 | (51.3, 69.0) | (104.3, 80.0) 287 | (44.2, 69.0) | (97.2, 80.0) 288 | (37.1, 69.0) | (90.1, 80.0) 289 | (30.0, 69.0) | (83.0, 80.0) 290 | (22.9, 69.0) | (75.9, 80.0) 291 | (15.8, 69.0) | (68.8, 80.0) 292 | (8.7, 69.0) | (61.7, 80.0) 293 | (1.6, 69.0) | (54.6, 80.0) 294 | (-5.5, 69.0) | (47.5, 80.0) 295 | (-12.6, 69.0) | (40.4, 80.0) 296 | (-19.7, 69.0) | (33.3, 80.0) 297 | (-26.8, 69.0) | (26.2, 80.0) 298 | (-33.9, 69.0) | (19.1, 80.0) 299 | (-41.0, 69.0) | (12.0, 80.0) 300 | (-41.0, 76.0) | (12.0, 87.0) 301 | (-33.9, 76.0) | (19.1, 87.0) 302 | (-26.8, 76.0) | (26.2, 87.0) 303 | (-19.7, 76.0) | (33.3, 87.0) 304 | (-12.6, 76.0) | (40.4, 87.0) 305 | (-5.5, 76.0) | (47.5, 87.0) 306 | (1.6, 76.0) | (54.6, 87.0) 307 | (8.7, 76.0) | (61.7, 87.0) 308 | (15.8, 76.0) | (68.8, 87.0) 309 | (22.9, 76.0) | (75.9, 87.0) 310 | (30.0, 76.0) | (83.0, 87.0) 311 | (37.1, 76.0) | (90.1, 87.0) 312 | (44.2, 76.0) | (97.2, 87.0) 313 | (51.3, 76.0) | (104.3, 87.0) 314 | (58.4, 76.0) | (111.4, 87.0) 315 | (65.5, 76.0) | (118.5, 87.0) 316 | (72.6, 76.0) | (125.6, 87.0) 317 | (79.7, 76.0) | (132.7, 87.0) 318 | (86.8, 76.0) | (139.8, 87.0) 319 | (93.9, 76.0) | (146.9, 87.0) 320 | (101.0, 76.0) | (154.0, 87.0) 321 | (108.1, 76.0) | (161.1, 87.0) 322 | (115.2, 76.0) | (168.2, 87.0) 323 | (122.3, 76.0) | (175.3, 87.0) 324 | (129.4, 76.0) | (182.4, 87.0) 325 | (136.5, 76.0) | (189.5, 87.0) 326 | (143.6, 76.0) | (196.6, 87.0) 327 | (150.7, 76.0) | (203.7, 87.0) 328 | (157.8, 76.0) | (210.8, 87.0) 329 | (164.9, 76.0) | (217.9, 87.0) 330 | (164.9, 83.0) | (217.9, 94.0) 331 | (157.8, 83.0) | (210.8, 94.0) 332 | (150.7, 83.0) | (203.7, 94.0) 333 | (143.6, 83.0) | (196.6, 94.0) 334 | (136.5, 83.0) | (189.5, 94.0) 335 | (129.4, 83.0) | (182.4, 94.0) 336 | (122.3, 83.0) | (175.3, 94.0) 337 | (115.2, 83.0) | (168.2, 94.0) 338 | (108.1, 83.0) | (161.1, 94.0) 339 | (101.0, 83.0) | (154.0, 94.0) 340 | (93.9, 83.0) | (146.9, 94.0) 341 | (86.8, 83.0) | (139.8, 94.0) 342 | (79.7, 83.0) | (132.7, 94.0) 343 | (72.6, 83.0) | (125.6, 94.0) 344 | (65.5, 83.0) | (118.5, 94.0) 345 | (58.4, 83.0) | (111.4, 94.0) 346 | (51.3, 83.0) | (104.3, 94.0) 347 | (44.2, 83.0) | (97.2, 94.0) 348 | (37.1, 83.0) | (90.1, 94.0) 349 | (30.0, 83.0) | (83.0, 94.0) 350 | (22.9, 83.0) | (75.9, 94.0) 351 | (15.8, 83.0) | (68.8, 94.0) 352 | (8.7, 83.0) | (61.7, 94.0) 353 | (1.6, 83.0) | (54.6, 94.0) 354 | (-5.5, 83.0) | (47.5, 94.0) 355 | (-12.6, 83.0) | (40.4, 94.0) 356 | (-19.7, 83.0) | (33.3, 94.0) 357 | (-26.8, 83.0) | (26.2, 94.0) 358 | (-33.9, 83.0) | (19.1, 94.0) 359 | (-41.0, 83.0) | (12.0, 94.0) 360 | (-41.0, 90.0) | (12.0, 101.0) 361 | (-33.9, 90.0) | (19.1, 101.0) 362 | (-26.8, 90.0) | (26.2, 101.0) 363 | (-19.7, 90.0) | (33.3, 101.0) 364 | (-12.6, 90.0) | (40.4, 101.0) 365 | (-5.5, 90.0) | (47.5, 101.0) 366 | (1.6, 90.0) | (54.6, 101.0) 367 | (8.7, 90.0) | (61.7, 101.0) 368 | (15.8, 90.0) | (68.8, 101.0) 369 | (22.9, 90.0) | (75.9, 101.0) 370 | (30.0, 90.0) | (83.0, 101.0) 371 | (37.1, 90.0) | (90.1, 101.0) 372 | (44.2, 90.0) | (97.2, 101.0) 373 | (51.3, 90.0) | (104.3, 101.0) 374 | (58.4, 90.0) | (111.4, 101.0) 375 | (65.5, 90.0) | (118.5, 101.0) 376 | (72.6, 90.0) | (125.6, 101.0) 377 | (79.7, 90.0) | (132.7, 101.0) 378 | (86.8, 90.0) | (139.8, 101.0) 379 | (93.9, 90.0) | (146.9, 101.0) 380 | (101.0, 90.0) | (154.0, 101.0) 381 | (108.1, 90.0) | (161.1, 101.0) 382 | (115.2, 90.0) | (168.2, 101.0) 383 | (122.3, 90.0) | (175.3, 101.0) 384 | (129.4, 90.0) | (182.4, 101.0) 385 | (136.5, 90.0) | (189.5, 101.0) 386 | (143.6, 90.0) | (196.6, 101.0) 387 | (150.7, 90.0) | (203.7, 101.0) 388 | (157.8, 90.0) | (210.8, 101.0) 389 | (164.9, 90.0) | (217.9, 101.0) 390 | (164.9, 97.0) | (217.9, 108.0) 391 | (157.8, 97.0) | (210.8, 108.0) 392 | (150.7, 97.0) | (203.7, 108.0) 393 | (143.6, 97.0) | (196.6, 108.0) 394 | (136.5, 97.0) | (189.5, 108.0) 395 | (129.4, 97.0) | (182.4, 108.0) 396 | (122.3, 97.0) | (175.3, 108.0) 397 | (115.2, 97.0) | (168.2, 108.0) 398 | (108.1, 97.0) | (161.1, 108.0) 399 | (101.0, 97.0) | (154.0, 108.0) 400 | (93.9, 97.0) | (146.9, 108.0) 401 | (86.8, 97.0) | (139.8, 108.0) 402 | (79.7, 97.0) | (132.7, 108.0) 403 | (72.6, 97.0) | (125.6, 108.0) 404 | (65.5, 97.0) | (118.5, 108.0) 405 | (58.4, 97.0) | (111.4, 108.0) 406 | (51.3, 97.0) | (104.3, 108.0) 407 | (44.2, 97.0) | (97.2, 108.0) 408 | (37.1, 97.0) | (90.1, 108.0) 409 | (30.0, 97.0) | (83.0, 108.0) 410 | (22.9, 97.0) | (75.9, 108.0) 411 | (15.8, 97.0) | (68.8, 108.0) 412 | (8.7, 97.0) | (61.7, 108.0) 413 | (1.6, 97.0) | (54.6, 108.0) 414 | (-5.5, 97.0) | (47.5, 108.0) 415 | (-12.6, 97.0) | (40.4, 108.0) 416 | (-19.7, 97.0) | (33.3, 108.0) 417 | (-26.8, 97.0) | (26.2, 108.0) 418 | (-33.9, 97.0) | (19.1, 108.0) 419 | (-41.0, 97.0) | (12.0, 108.0) 420 | (-41.0, 104.0) | (12.0, 115.0) 421 | (-33.9, 104.0) | (19.1, 115.0) 422 | (-26.8, 104.0) | (26.2, 115.0) 423 | (-19.7, 104.0) | (33.3, 115.0) 424 | (-12.6, 104.0) | (40.4, 115.0) 425 | (-5.5, 104.0) | (47.5, 115.0) 426 | (1.6, 104.0) | (54.6, 115.0) 427 | (8.7, 104.0) | (61.7, 115.0) 428 | (15.8, 104.0) | (68.8, 115.0) 429 | (22.9, 104.0) | (75.9, 115.0) 430 | (30.0, 104.0) | (83.0, 115.0) 431 | (37.1, 104.0) | (90.1, 115.0) 432 | (44.2, 104.0) | (97.2, 115.0) 433 | (51.3, 104.0) | (104.3, 115.0) 434 | (58.4, 104.0) | (111.4, 115.0) 435 | (65.5, 104.0) | (118.5, 115.0) 436 | (72.6, 104.0) | (125.6, 115.0) 437 | (79.7, 104.0) | (132.7, 115.0) 438 | (86.8, 104.0) | (139.8, 115.0) 439 | (93.9, 104.0) | (146.9, 115.0) 440 | (101.0, 104.0) | (154.0, 115.0) 441 | (108.1, 104.0) | (161.1, 115.0) 442 | (115.2, 104.0) | (168.2, 115.0) 443 | (122.3, 104.0) | (175.3, 115.0) 444 | (129.4, 104.0) | (182.4, 115.0) 445 | (136.5, 104.0) | (189.5, 115.0) 446 | (143.6, 104.0) | (196.6, 115.0) 447 | (150.7, 104.0) | (203.7, 115.0) 448 | (157.8, 104.0) | (210.8, 115.0) 449 | (164.9, 104.0) | (217.9, 115.0) 450 | (164.9, 111.0) | (217.9, 122.0) 451 | (157.8, 111.0) | (210.8, 122.0) 452 | (150.7, 111.0) | (203.7, 122.0) 453 | (143.6, 111.0) | (196.6, 122.0) 454 | (136.5, 111.0) | (189.5, 122.0) 455 | (129.4, 111.0) | (182.4, 122.0) 456 | (122.3, 111.0) | (175.3, 122.0) 457 | (115.2, 111.0) | (168.2, 122.0) 458 | (108.1, 111.0) | (161.1, 122.0) 459 | (101.0, 111.0) | (154.0, 122.0) 460 | (93.9, 111.0) | (146.9, 122.0) 461 | (86.8, 111.0) | (139.8, 122.0) 462 | (79.7, 111.0) | (132.7, 122.0) 463 | (72.6, 111.0) | (125.6, 122.0) 464 | (65.5, 111.0) | (118.5, 122.0) 465 | (58.4, 111.0) | (111.4, 122.0) 466 | (51.3, 111.0) | (104.3, 122.0) 467 | (44.2, 111.0) | (97.2, 122.0) 468 | (37.1, 111.0) | (90.1, 122.0) 469 | (30.0, 111.0) | (83.0, 122.0) 470 | (22.9, 111.0) | (75.9, 122.0) 471 | (15.8, 111.0) | (68.8, 122.0) 472 | (8.7, 111.0) | (61.7, 122.0) 473 | (1.6, 111.0) | (54.6, 122.0) 474 | (-5.5, 111.0) | (47.5, 122.0) 475 | (-12.6, 111.0) | (40.4, 122.0) 476 | (-19.7, 111.0) | (33.3, 122.0) 477 | (-26.8, 111.0) | (26.2, 122.0) 478 | (-33.9, 111.0) | (19.1, 122.0) 479 | (-41.0, 111.0) | (12.0, 122.0) 480 | (-41.0, 118.0) | (12.0, 129.0) 481 | (-33.9, 118.0) | (19.1, 129.0) 482 | (-26.8, 118.0) | (26.2, 129.0) 483 | (-19.7, 118.0) | (33.3, 129.0) 484 | (-12.6, 118.0) | (40.4, 129.0) 485 | (-5.5, 118.0) | (47.5, 129.0) 486 | (1.6, 118.0) | (54.6, 129.0) 487 | (8.7, 118.0) | (61.7, 129.0) 488 | (15.8, 118.0) | (68.8, 129.0) 489 | (22.9, 118.0) | (75.9, 129.0) 490 | (30.0, 118.0) | (83.0, 129.0) 491 | (37.1, 118.0) | (90.1, 129.0) 492 | (44.2, 118.0) | (97.2, 129.0) 493 | (51.3, 118.0) | (104.3, 129.0) 494 | (58.4, 118.0) | (111.4, 129.0) 495 | (65.5, 118.0) | (118.5, 129.0) 496 | (72.6, 118.0) | (125.6, 129.0) 497 | (79.7, 118.0) | (132.7, 129.0) 498 | (86.8, 118.0) | (139.8, 129.0) 499 | (93.9, 118.0) | (146.9, 129.0) 500 | (101.0, 118.0) | (154.0, 129.0) 501 | (108.1, 118.0) | (161.1, 129.0) 502 | (115.2, 118.0) | (168.2, 129.0) 503 | (122.3, 118.0) | (175.3, 129.0) 504 | (129.4, 118.0) | (182.4, 129.0) 505 | (136.5, 118.0) | (189.5, 129.0) 506 | (143.6, 118.0) | (196.6, 129.0) 507 | (150.7, 118.0) | (203.7, 129.0) 508 | (157.8, 118.0) | (210.8, 129.0) 509 | (164.9, 118.0) | (217.9, 129.0) 510 | (164.9, 125.0) | (217.9, 136.0) 511 | (157.8, 125.0) | (210.8, 136.0) 512 | (150.7, 125.0) | (203.7, 136.0) 513 | (143.6, 125.0) | (196.6, 136.0) 514 | (136.5, 125.0) | (189.5, 136.0) 515 | (129.4, 125.0) | (182.4, 136.0) 516 | (122.3, 125.0) | (175.3, 136.0) 517 | (115.2, 125.0) | (168.2, 136.0) 518 | (108.1, 125.0) | (161.1, 136.0) 519 | (101.0, 125.0) | (154.0, 136.0) 520 | (93.9, 125.0) | (146.9, 136.0) 521 | (86.8, 125.0) | (139.8, 136.0) 522 | (79.7, 125.0) | (132.7, 136.0) 523 | (72.6, 125.0) | (125.6, 136.0) 524 | (65.5, 125.0) | (118.5, 136.0) 525 | (58.4, 125.0) | (111.4, 136.0) 526 | (51.3, 125.0) | (104.3, 136.0) 527 | (44.2, 125.0) | (97.2, 136.0) 528 | (37.1, 125.0) | (90.1, 136.0) 529 | (30.0, 125.0) | (83.0, 136.0) 530 | (22.9, 125.0) | (75.9, 136.0) 531 | (15.8, 125.0) | (68.8, 136.0) 532 | (8.7, 125.0) | (61.7, 136.0) 533 | (1.6, 125.0) | (54.6, 136.0) 534 | (-5.5, 125.0) | (47.5, 136.0) 535 | (-12.6, 125.0) | (40.4, 136.0) 536 | (-19.7, 125.0) | (33.3, 136.0) 537 | (-26.8, 125.0) | (26.2, 136.0) 538 | (-33.9, 125.0) | (19.1, 136.0) 539 | (-41.0, 125.0) | (12.0, 136.0) 540 | (-41.0, 132.0) | (12.0, 143.0) 541 | (-33.9, 132.0) | (19.1, 143.0) 542 | (-26.8, 132.0) | (26.2, 143.0) 543 | (-19.7, 132.0) | (33.3, 143.0) 544 | (-12.6, 132.0) | (40.4, 143.0) 545 | (-5.5, 132.0) | (47.5, 143.0) 546 | (1.6, 132.0) | (54.6, 143.0) 547 | (8.7, 132.0) | (61.7, 143.0) 548 | (15.8, 132.0) | (68.8, 143.0) 549 | (22.9, 132.0) | (75.9, 143.0) 550 | (30.0, 132.0) | (83.0, 143.0) 551 | (37.1, 132.0) | (90.1, 143.0) 552 | (44.2, 132.0) | (97.2, 143.0) 553 | (51.3, 132.0) | (104.3, 143.0) 554 | (58.4, 132.0) | (111.4, 143.0) 555 | (65.5, 132.0) | (118.5, 143.0) 556 | (72.6, 132.0) | (125.6, 143.0) 557 | (79.7, 132.0) | (132.7, 143.0) 558 | (86.8, 132.0) | (139.8, 143.0) 559 | (93.9, 132.0) | (146.9, 143.0) 560 | (101.0, 132.0) | (154.0, 143.0) 561 | (108.1, 132.0) | (161.1, 143.0) 562 | (115.2, 132.0) | (168.2, 143.0) 563 | (122.3, 132.0) | (175.3, 143.0) 564 | (129.4, 132.0) | (182.4, 143.0) 565 | (136.5, 132.0) | (189.5, 143.0) 566 | (143.6, 132.0) | (196.6, 143.0) 567 | (150.7, 132.0) | (203.7, 143.0) 568 | (157.8, 132.0) | (210.8, 143.0) 569 | (164.9, 132.0) | (217.9, 143.0) 570 | (164.9, 139.0) | (217.9, 150.0) 571 | (157.8, 139.0) | (210.8, 150.0) 572 | (150.7, 139.0) | (203.7, 150.0) 573 | (143.6, 139.0) | (196.6, 150.0) 574 | (136.5, 139.0) | (189.5, 150.0) 575 | (129.4, 139.0) | (182.4, 150.0) 576 | (122.3, 139.0) | (175.3, 150.0) 577 | (115.2, 139.0) | (168.2, 150.0) 578 | (108.1, 139.0) | (161.1, 150.0) 579 | (101.0, 139.0) | (154.0, 150.0) 580 | (93.9, 139.0) | (146.9, 150.0) 581 | (86.8, 139.0) | (139.8, 150.0) 582 | (79.7, 139.0) | (132.7, 150.0) 583 | (72.6, 139.0) | (125.6, 150.0) 584 | (65.5, 139.0) | (118.5, 150.0) 585 | (58.4, 139.0) | (111.4, 150.0) 586 | (51.3, 139.0) | (104.3, 150.0) 587 | (44.2, 139.0) | (97.2, 150.0) 588 | (37.1, 139.0) | (90.1, 150.0) 589 | (30.0, 139.0) | (83.0, 150.0) 590 | (22.9, 139.0) | (75.9, 150.0) 591 | (15.8, 139.0) | (68.8, 150.0) 592 | (8.7, 139.0) | (61.7, 150.0) 593 | (1.6, 139.0) | (54.6, 150.0) 594 | (-5.5, 139.0) | (47.5, 150.0) 595 | (-12.6, 139.0) | (40.4, 150.0) 596 | (-19.7, 139.0) | (33.3, 150.0) 597 | (-26.8, 139.0) | (26.2, 150.0) 598 | (-33.9, 139.0) | (19.1, 150.0) 599 | (-41.0, 139.0) | (12.0, 150.0) 600 | (-41.0, 146.0) | (12.0, 157.0) 601 | (-33.9, 146.0) | (19.1, 157.0) 602 | (-26.8, 146.0) | (26.2, 157.0) 603 | (-19.7, 146.0) | (33.3, 157.0) 604 | (-12.6, 146.0) | (40.4, 157.0) 605 | (-5.5, 146.0) | (47.5, 157.0) 606 | (1.6, 146.0) | (54.6, 157.0) 607 | (8.7, 146.0) | (61.7, 157.0) 608 | (15.8, 146.0) | (68.8, 157.0) 609 | (22.9, 146.0) | (75.9, 157.0) 610 | (30.0, 146.0) | (83.0, 157.0) 611 | (37.1, 146.0) | (90.1, 157.0) 612 | (44.2, 146.0) | (97.2, 157.0) 613 | (51.3, 146.0) | (104.3, 157.0) 614 | (58.4, 146.0) | (111.4, 157.0) 615 | (65.5, 146.0) | (118.5, 157.0) 616 | (72.6, 146.0) | (125.6, 157.0) 617 | (79.7, 146.0) | (132.7, 157.0) 618 | (86.8, 146.0) | (139.8, 157.0) 619 | (93.9, 146.0) | (146.9, 157.0) 620 | (101.0, 146.0) | (154.0, 157.0) 621 | (108.1, 146.0) | (161.1, 157.0) 622 | (115.2, 146.0) | (168.2, 157.0) 623 | (122.3, 146.0) | (175.3, 157.0) 624 | (129.4, 146.0) | (182.4, 157.0) 625 | (136.5, 146.0) | (189.5, 157.0) 626 | (143.6, 146.0) | (196.6, 157.0) 627 | (150.7, 146.0) | (203.7, 157.0) 628 | (157.8, 146.0) | (210.8, 157.0) 629 | (164.9, 146.0) | (217.9, 157.0) 630 | (164.9, 153.0) | (217.9, 164.0) 631 | (157.8, 153.0) | (210.8, 164.0) 632 | (150.7, 153.0) | (203.7, 164.0) 633 | (143.6, 153.0) | (196.6, 164.0) 634 | (136.5, 153.0) | (189.5, 164.0) 635 | (129.4, 153.0) | (182.4, 164.0) 636 | (122.3, 153.0) | (175.3, 164.0) 637 | (115.2, 153.0) | (168.2, 164.0) 638 | (108.1, 153.0) | (161.1, 164.0) 639 | (101.0, 153.0) | (154.0, 164.0) 640 | (93.9, 153.0) | (146.9, 164.0) 641 | (86.8, 153.0) | (139.8, 164.0) 642 | (79.7, 153.0) | (132.7, 164.0) 643 | (72.6, 153.0) | (125.6, 164.0) 644 | (65.5, 153.0) | (118.5, 164.0) 645 | (58.4, 153.0) | (111.4, 164.0) 646 | (51.3, 153.0) | (104.3, 164.0) 647 | (44.2, 153.0) | (97.2, 164.0) 648 | (37.1, 153.0) | (90.1, 164.0) 649 | (30.0, 153.0) | (83.0, 164.0) 650 | (22.9, 153.0) | (75.9, 164.0) 651 | (15.8, 153.0) | (68.8, 164.0) 652 | (8.7, 153.0) | (61.7, 164.0) 653 | (1.6, 153.0) | (54.6, 164.0) 654 | (-5.5, 153.0) | (47.5, 164.0) 655 | (-12.6, 153.0) | (40.4, 164.0) 656 | (-19.7, 153.0) | (33.3, 164.0) 657 | (-26.8, 153.0) | (26.2, 164.0) 658 | (-33.9, 153.0) | (19.1, 164.0) 659 | (-41.0, 153.0) | (12.0, 164.0) 660 | (-41.0, 160.0) | (12.0, 171.0) 661 | (-33.9, 160.0) | (19.1, 171.0) 662 | (-26.8, 160.0) | (26.2, 171.0) 663 | (-19.7, 160.0) | (33.3, 171.0) 664 | (-12.6, 160.0) | (40.4, 171.0) 665 | (-5.5, 160.0) | (47.5, 171.0) 666 | (1.6, 160.0) | (54.6, 171.0) 667 | (8.7, 160.0) | (61.7, 171.0) 668 | (15.8, 160.0) | (68.8, 171.0) 669 | (22.9, 160.0) | (75.9, 171.0) 670 | (30.0, 160.0) | (83.0, 171.0) 671 | (37.1, 160.0) | (90.1, 171.0) 672 | (44.2, 160.0) | (97.2, 171.0) 673 | (51.3, 160.0) | (104.3, 171.0) 674 | (58.4, 160.0) | (111.4, 171.0) 675 | (65.5, 160.0) | (118.5, 171.0) 676 | (72.6, 160.0) | (125.6, 171.0) 677 | (79.7, 160.0) | (132.7, 171.0) 678 | (86.8, 160.0) | (139.8, 171.0) 679 | (93.9, 160.0) | (146.9, 171.0) 680 | (101.0, 160.0) | (154.0, 171.0) 681 | (108.1, 160.0) | (161.1, 171.0) 682 | (115.2, 160.0) | (168.2, 171.0) 683 | (122.3, 160.0) | (175.3, 171.0) 684 | (129.4, 160.0) | (182.4, 171.0) 685 | (136.5, 160.0) | (189.5, 171.0) 686 | (143.6, 160.0) | (196.6, 171.0) 687 | (150.7, 160.0) | (203.7, 171.0) 688 | (157.8, 160.0) | (210.8, 171.0) 689 | (164.9, 160.0) | (217.9, 171.0) 690 | (164.9, 167.0) | (217.9, 178.0) 691 | (157.8, 167.0) | (210.8, 178.0) 692 | (150.7, 167.0) | (203.7, 178.0) 693 | (143.6, 167.0) | (196.6, 178.0) 694 | (136.5, 167.0) | (189.5, 178.0) 695 | (129.4, 167.0) | (182.4, 178.0) 696 | (122.3, 167.0) | (175.3, 178.0) 697 | (115.2, 167.0) | (168.2, 178.0) 698 | (108.1, 167.0) | (161.1, 178.0) 699 | (101.0, 167.0) | (154.0, 178.0) 700 | (93.9, 167.0) | (146.9, 178.0) 701 | (86.8, 167.0) | (139.8, 178.0) 702 | (79.7, 167.0) | (132.7, 178.0) 703 | (72.6, 167.0) | (125.6, 178.0) 704 | (65.5, 167.0) | (118.5, 178.0) 705 | (58.4, 167.0) | (111.4, 178.0) 706 | (51.3, 167.0) | (104.3, 178.0) 707 | (44.2, 167.0) | (97.2, 178.0) 708 | (37.1, 167.0) | (90.1, 178.0) 709 | (30.0, 167.0) | (83.0, 178.0) 710 | (22.9, 167.0) | (75.9, 178.0) 711 | (15.8, 167.0) | (68.8, 178.0) 712 | (8.7, 167.0) | (61.7, 178.0) 713 | (1.6, 167.0) | (54.6, 178.0) 714 | (-5.5, 167.0) | (47.5, 178.0) 715 | (-12.6, 167.0) | (40.4, 178.0) 716 | (-19.7, 167.0) | (33.3, 178.0) 717 | (-26.8, 167.0) | (26.2, 178.0) 718 | (-33.9, 167.0) | (19.1, 178.0) 719 | (-41.0, 167.0) | (12.0, 178.0) 720 | (-41.0, 174.0) | (12.0, 185.0) 721 | (-33.9, 174.0) | (19.1, 185.0) 722 | (-26.8, 174.0) | (26.2, 185.0) 723 | (-19.7, 174.0) | (33.3, 185.0) 724 | (-12.6, 174.0) | (40.4, 185.0) 725 | (-5.5, 174.0) | (47.5, 185.0) 726 | (1.6, 174.0) | (54.6, 185.0) 727 | (8.7, 174.0) | (61.7, 185.0) 728 | (15.8, 174.0) | (68.8, 185.0) 729 | (22.9, 174.0) | (75.9, 185.0) 730 | (30.0, 174.0) | (83.0, 185.0) 731 | (37.1, 174.0) | (90.1, 185.0) 732 | (44.2, 174.0) | (97.2, 185.0) 733 | (51.3, 174.0) | (104.3, 185.0) 734 | (58.4, 174.0) | (111.4, 185.0) 735 | (65.5, 174.0) | (118.5, 185.0) 736 | (72.6, 174.0) | (125.6, 185.0) 737 | (79.7, 174.0) | (132.7, 185.0) 738 | (86.8, 174.0) | (139.8, 185.0) 739 | (93.9, 174.0) | (146.9, 185.0) 740 | (101.0, 174.0) | (154.0, 185.0) 741 | (108.1, 174.0) | (161.1, 185.0) 742 | (115.2, 174.0) | (168.2, 185.0) 743 | (122.3, 174.0) | (175.3, 185.0) 744 | (129.4, 174.0) | (182.4, 185.0) 745 | (136.5, 174.0) | (189.5, 185.0) 746 | (143.6, 174.0) | (196.6, 185.0) 747 | (150.7, 174.0) | (203.7, 185.0) 748 | (157.8, 174.0) | (210.8, 185.0) 749 | (164.9, 174.0) | (217.9, 185.0) 750 | (164.9, 181.0) | (217.9, 192.0) 751 | (157.8, 181.0) | (210.8, 192.0) 752 | (150.7, 181.0) | (203.7, 192.0) 753 | (143.6, 181.0) | (196.6, 192.0) 754 | (136.5, 181.0) | (189.5, 192.0) 755 | (129.4, 181.0) | (182.4, 192.0) 756 | (122.3, 181.0) | (175.3, 192.0) 757 | (115.2, 181.0) | (168.2, 192.0) 758 | (108.1, 181.0) | (161.1, 192.0) 759 | (101.0, 181.0) | (154.0, 192.0) 760 | (93.9, 181.0) | (146.9, 192.0) 761 | (86.8, 181.0) | (139.8, 192.0) 762 | (79.7, 181.0) | (132.7, 192.0) 763 | (72.6, 181.0) | (125.6, 192.0) 764 | (65.5, 181.0) | (118.5, 192.0) 765 | (58.4, 181.0) | (111.4, 192.0) 766 | (51.3, 181.0) | (104.3, 192.0) 767 | (44.2, 181.0) | (97.2, 192.0) 768 | (37.1, 181.0) | (90.1, 192.0) 769 | (30.0, 181.0) | (83.0, 192.0) 770 | (22.9, 181.0) | (75.9, 192.0) 771 | (15.8, 181.0) | (68.8, 192.0) 772 | (8.7, 181.0) | (61.7, 192.0) 773 | (1.6, 181.0) | (54.6, 192.0) 774 | (-5.5, 181.0) | (47.5, 192.0) 775 | (-12.6, 181.0) | (40.4, 192.0) 776 | (-19.7, 181.0) | (33.3, 192.0) 777 | (-26.8, 181.0) | (26.2, 192.0) 778 | (-33.9, 181.0) | (19.1, 192.0) 779 | (-41.0, 181.0) | (12.0, 192.0) 780 | (-41.0, 188.0) | (12.0, 199.0) 781 | (-33.9, 188.0) | (19.1, 199.0) 782 | (-26.8, 188.0) | (26.2, 199.0) 783 | (-19.7, 188.0) | (33.3, 199.0) 784 | (-12.6, 188.0) | (40.4, 199.0) 785 | (-5.5, 188.0) | (47.5, 199.0) 786 | (1.6, 188.0) | (54.6, 199.0) 787 | (8.7, 188.0) | (61.7, 199.0) 788 | (15.8, 188.0) | (68.8, 199.0) 789 | (22.9, 188.0) | (75.9, 199.0) 790 | (30.0, 188.0) | (83.0, 199.0) 791 | (37.1, 188.0) | (90.1, 199.0) 792 | (44.2, 188.0) | (97.2, 199.0) 793 | (51.3, 188.0) | (104.3, 199.0) 794 | (58.4, 188.0) | (111.4, 199.0) 795 | (65.5, 188.0) | (118.5, 199.0) 796 | (72.6, 188.0) | (125.6, 199.0) 797 | (79.7, 188.0) | (132.7, 199.0) 798 | (86.8, 188.0) | (139.8, 199.0) 799 | (93.9, 188.0) | (146.9, 199.0) 800 | (101.0, 188.0) | (154.0, 199.0) 801 | (108.1, 188.0) | (161.1, 199.0) 802 | (115.2, 188.0) | (168.2, 199.0) 803 | (122.3, 188.0) | (175.3, 199.0) 804 | (129.4, 188.0) | (182.4, 199.0) 805 | (136.5, 188.0) | (189.5, 199.0) 806 | (143.6, 188.0) | (196.6, 199.0) 807 | (150.7, 188.0) | (203.7, 199.0) 808 | (157.8, 188.0) | (210.8, 199.0) 809 | (164.9, 188.0) | (217.9, 199.0) 810 | (164.9, 195.0) | (217.9, 206.0) 811 | (157.8, 195.0) | (210.8, 206.0) 812 | (150.7, 195.0) | (203.7, 206.0) 813 | (143.6, 195.0) | (196.6, 206.0) 814 | (136.5, 195.0) | (189.5, 206.0) 815 | (129.4, 195.0) | (182.4, 206.0) 816 | (122.3, 195.0) | (175.3, 206.0) 817 | (115.2, 195.0) | (168.2, 206.0) 818 | (108.1, 195.0) | (161.1, 206.0) 819 | (101.0, 195.0) | (154.0, 206.0) 820 | (93.9, 195.0) | (146.9, 206.0) 821 | (86.8, 195.0) | (139.8, 206.0) 822 | (79.7, 195.0) | (132.7, 206.0) 823 | (72.6, 195.0) | (125.6, 206.0) 824 | (65.5, 195.0) | (118.5, 206.0) 825 | (58.4, 195.0) | (111.4, 206.0) 826 | (51.3, 195.0) | (104.3, 206.0) 827 | (44.2, 195.0) | (97.2, 206.0) 828 | (37.1, 195.0) | (90.1, 206.0) 829 | (30.0, 195.0) | (83.0, 206.0) 830 | (22.9, 195.0) | (75.9, 206.0) 831 | (15.8, 195.0) | (68.8, 206.0) 832 | (8.7, 195.0) | (61.7, 206.0) 833 | (1.6, 195.0) | (54.6, 206.0) 834 | (-5.5, 195.0) | (47.5, 206.0) 835 | (-12.6, 195.0) | (40.4, 206.0) 836 | (-19.7, 195.0) | (33.3, 206.0) 837 | (-26.8, 195.0) | (26.2, 206.0) 838 | (-33.9, 195.0) | (19.1, 206.0) 839 | (-41.0, 195.0) | (12.0, 206.0) 840 | (-41.0, 202.0) | (12.0, 213.0) 841 | (-33.9, 202.0) | (19.1, 213.0) 842 | (-26.8, 202.0) | (26.2, 213.0) 843 | (-19.7, 202.0) | (33.3, 213.0) 844 | (-12.6, 202.0) | (40.4, 213.0) 845 | (-5.5, 202.0) | (47.5, 213.0) 846 | (1.6, 202.0) | (54.6, 213.0) 847 | (8.7, 202.0) | (61.7, 213.0) 848 | (15.8, 202.0) | (68.8, 213.0) 849 | (22.9, 202.0) | (75.9, 213.0) 850 | (30.0, 202.0) | (83.0, 213.0) 851 | (37.1, 202.0) | (90.1, 213.0) 852 | (44.2, 202.0) | (97.2, 213.0) 853 | (51.3, 202.0) | (104.3, 213.0) 854 | (58.4, 202.0) | (111.4, 213.0) 855 | (65.5, 202.0) | (118.5, 213.0) 856 | (72.6, 202.0) | (125.6, 213.0) 857 | (79.7, 202.0) | (132.7, 213.0) 858 | (86.8, 202.0) | (139.8, 213.0) 859 | (93.9, 202.0) | (146.9, 213.0) 860 | (101.0, 202.0) | (154.0, 213.0) 861 | (108.1, 202.0) | (161.1, 213.0) 862 | (115.2, 202.0) | (168.2, 213.0) 863 | (122.3, 202.0) | (175.3, 213.0) 864 | (129.4, 202.0) | (182.4, 213.0) 865 | (136.5, 202.0) | (189.5, 213.0) 866 | (143.6, 202.0) | (196.6, 213.0) 867 | (150.7, 202.0) | (203.7, 213.0) 868 | (157.8, 202.0) | (210.8, 213.0) 869 | (164.9, 202.0) | (217.9, 213.0) 870 | (164.9, 209.0) | (217.9, 220.0) 871 | (157.8, 209.0) | (210.8, 220.0) 872 | (150.7, 209.0) | (203.7, 220.0) 873 | (143.6, 209.0) | (196.6, 220.0) 874 | (136.5, 209.0) | (189.5, 220.0) 875 | (129.4, 209.0) | (182.4, 220.0) 876 | (122.3, 209.0) | (175.3, 220.0) 877 | (115.2, 209.0) | (168.2, 220.0) 878 | (108.1, 209.0) | (161.1, 220.0) 879 | (101.0, 209.0) | (154.0, 220.0) 880 | (93.9, 209.0) | (146.9, 220.0) 881 | (86.8, 209.0) | (139.8, 220.0) 882 | (79.7, 209.0) | (132.7, 220.0) 883 | (72.6, 209.0) | (125.6, 220.0) 884 | (65.5, 209.0) | (118.5, 220.0) 885 | (58.4, 209.0) | (111.4, 220.0) 886 | (51.3, 209.0) | (104.3, 220.0) 887 | (44.2, 209.0) | (97.2, 220.0) 888 | (37.1, 209.0) | (90.1, 220.0) 889 | (30.0, 209.0) | (83.0, 220.0) 890 | (22.9, 209.0) | (75.9, 220.0) 891 | (15.8, 209.0) | (68.8, 220.0) 892 | (8.7, 209.0) | (61.7, 220.0) 893 | (1.6, 209.0) | (54.6, 220.0) 894 | (-5.5, 209.0) | (47.5, 220.0) 895 | (-12.6, 209.0) | (40.4, 220.0) 896 | (-19.7, 209.0) | (33.3, 220.0) 897 | (-26.8, 209.0) | (26.2, 220.0) 898 | (-33.9, 209.0) | (19.1, 220.0) 899 | (-41.0, 209.0) | (12.0, 220.0) bed_mesh: zero_reference_position is (83.00, 110.00) Starting heater checks for heater_bed Starting heater checks for extruder Stats 175993.6: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=2593 bytes_read=6252 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 upcoming_bytes=0 freq=63998751 HermitCrab2: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1335 bytes_read=5084 bytes_retransmit=0 bytes_invalid=0 send_seq=140 receive_seq=140 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000578 adj=12001082 eddy: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=818 bytes_read=4335 bytes_retransmit=9 bytes_invalid=0 send_seq=103 receive_seq=103 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=11999391 adj=12003803 HBB: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=839 bytes_read=4206 bytes_retransmit=9 bytes_invalid=0 send_seq=102 receive_seq=102 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000155 adj=12000403 HermitCrab2: temp=0.0 btt_eddy_mcu: temp=0.0 btt_eddy: temp=0.0 SKR_Mini_E3: temp=0.0 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=0.0 pwm=0.000 sysload=0.20 cputime=0.738 memavail=7405024 print_time=0.000 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: 140732187736656 webhooks: registering remote method 'reboot_machine' for connection id: 140732187736656 webhooks: registering remote method 'pause_job_queue' for connection id: 140732187736656 webhooks: registering remote method 'start_job_queue' for connection id: 140732187736656 webhooks: registering remote method 'set_wled_state' for connection id: 140732187736656 webhooks: registering remote method 'set_wled' for connection id: 140732187736656 webhooks: registering remote method 'timelapse_newframe' for connection id: 140732187736656 webhooks: registering remote method 'timelapse_saveFrames' for connection id: 140732187736656 webhooks: registering remote method 'timelapse_render' for connection id: 140732187736656 webhooks: registering remote method 'set_device_power' for connection id: 140732187736656 Stats 175994.6: gcodein=0 mcu: mcu_awake=0.017 mcu_task_avg=0.000016 mcu_task_stddev=0.000037 bytes_write=2599 bytes_read=6283 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 upcoming_bytes=0 freq=63998724 HermitCrab2: mcu_awake=0.021 mcu_task_avg=0.000016 mcu_task_stddev=0.000027 bytes_write=1341 bytes_read=5114 bytes_retransmit=0 bytes_invalid=0 send_seq=141 receive_seq=141 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000462 adj=12000748 eddy: mcu_awake=0.003 mcu_task_avg=0.000007 mcu_task_stddev=0.000008 bytes_write=824 bytes_read=4365 bytes_retransmit=9 bytes_invalid=0 send_seq=104 receive_seq=104 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000436 adj=11998234 HBB: mcu_awake=0.003 mcu_task_avg=0.000008 mcu_task_stddev=0.000015 bytes_write=845 bytes_read=4236 bytes_retransmit=9 bytes_invalid=0 send_seq=103 receive_seq=103 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000506 adj=12000430 HermitCrab2: temp=0.0 btt_eddy_mcu: temp=0.0 btt_eddy: temp=0.0 SKR_Mini_E3: temp=0.0 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=0.0 pwm=0.000 sysload=0.20 cputime=0.781 memavail=7402464 print_time=0.000 buffer_time=0.000 print_stall=0 extruder: target=0 temp=0.0 pwm=0.000 Neopixel update did not succeed Stats 175995.6: gcodein=0 mcu: mcu_awake=0.017 mcu_task_avg=0.000016 mcu_task_stddev=0.000037 bytes_write=2795 bytes_read=6520 bytes_retransmit=9 bytes_invalid=0 send_seq=220 receive_seq=220 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998805 HermitCrab2: mcu_awake=0.021 mcu_task_avg=0.000016 mcu_task_stddev=0.000027 bytes_write=1347 bytes_read=5252 bytes_retransmit=0 bytes_invalid=0 send_seq=142 receive_seq=142 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000447 adj=12000571 eddy: mcu_awake=0.003 mcu_task_avg=0.000007 mcu_task_stddev=0.000008 bytes_write=830 bytes_read=4497 bytes_retransmit=9 bytes_invalid=0 send_seq=105 receive_seq=105 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000457 adj=12000254 HBB: mcu_awake=0.003 mcu_task_avg=0.000008 mcu_task_stddev=0.000015 bytes_write=859 bytes_read=4267 bytes_retransmit=9 bytes_invalid=0 send_seq=105 receive_seq=105 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000425 adj=12000935 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.5 btt_eddy: temp=36.6 SKR_Mini_E3: temp=41.7 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=25.7 pwm=0.000 sysload=0.20 cputime=0.844 memavail=7404288 print_time=41.353 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 175996.6: gcodein=0 mcu: mcu_awake=0.017 mcu_task_avg=0.000016 mcu_task_stddev=0.000037 bytes_write=2801 bytes_read=6652 bytes_retransmit=9 bytes_invalid=0 send_seq=221 receive_seq=221 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998822 HermitCrab2: mcu_awake=0.021 mcu_task_avg=0.000016 mcu_task_stddev=0.000027 bytes_write=1353 bytes_read=5390 bytes_retransmit=0 bytes_invalid=0 send_seq=143 receive_seq=143 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000459 adj=12000541 eddy: mcu_awake=0.003 mcu_task_avg=0.000007 mcu_task_stddev=0.000008 bytes_write=836 bytes_read=4600 bytes_retransmit=9 bytes_invalid=0 send_seq=106 receive_seq=106 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000021 adj=12000366 HBB: mcu_awake=0.003 mcu_task_avg=0.000008 mcu_task_stddev=0.000015 bytes_write=865 bytes_read=4283 bytes_retransmit=9 bytes_invalid=0 send_seq=106 receive_seq=106 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000362 adj=12000718 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.5 btt_eddy: temp=36.8 SKR_Mini_E3: temp=41.9 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.19 cputime=0.865 memavail=7403776 print_time=41.353 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 175997.6: gcodein=0 mcu: mcu_awake=0.017 mcu_task_avg=0.000016 mcu_task_stddev=0.000037 bytes_write=2807 bytes_read=6755 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 upcoming_bytes=0 freq=63998771 HermitCrab2: mcu_awake=0.021 mcu_task_avg=0.000016 mcu_task_stddev=0.000027 bytes_write=1359 bytes_read=5513 bytes_retransmit=0 bytes_invalid=0 send_seq=144 receive_seq=144 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000430 adj=12000592 eddy: mcu_awake=0.003 mcu_task_avg=0.000007 mcu_task_stddev=0.000008 bytes_write=842 bytes_read=4703 bytes_retransmit=9 bytes_invalid=0 send_seq=107 receive_seq=107 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000069 adj=11999533 HBB: mcu_awake=0.003 mcu_task_avg=0.000008 mcu_task_stddev=0.000015 bytes_write=871 bytes_read=4299 bytes_retransmit=9 bytes_invalid=0 send_seq=107 receive_seq=107 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000363 adj=12000577 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.8 SKR_Mini_E3: temp=41.8 Raspberry_Pi: temp=72.7 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.19 cputime=0.872 memavail=7404720 print_time=41.353 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 175998.6: gcodein=0 mcu: mcu_awake=0.017 mcu_task_avg=0.000016 mcu_task_stddev=0.000037 bytes_write=3796 bytes_read=7690 bytes_retransmit=9 bytes_invalid=0 send_seq=271 receive_seq=271 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998783 HermitCrab2: mcu_awake=0.021 mcu_task_avg=0.000016 mcu_task_stddev=0.000027 bytes_write=1365 bytes_read=5651 bytes_retransmit=0 bytes_invalid=0 send_seq=145 receive_seq=145 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=33 upcoming_bytes=0 freq=12000396 adj=12000566 eddy: mcu_awake=0.003 mcu_task_avg=0.000007 mcu_task_stddev=0.000008 bytes_write=848 bytes_read=4835 bytes_retransmit=9 bytes_invalid=0 send_seq=108 receive_seq=108 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000269 adj=11999845 HBB: mcu_awake=0.003 mcu_task_avg=0.000008 mcu_task_stddev=0.000015 bytes_write=877 bytes_read=4315 bytes_retransmit=9 bytes_invalid=0 send_seq=108 receive_seq=108 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000605 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.2 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.19 cputime=0.886 memavail=7403504 print_time=45.620 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 175999.6: gcodein=0 mcu: mcu_awake=0.012 mcu_task_avg=0.000025 mcu_task_stddev=0.000098 bytes_write=5150 bytes_read=9446 bytes_retransmit=9 bytes_invalid=0 send_seq=369 receive_seq=369 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998706 HermitCrab2: mcu_awake=0.004 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=2040 bytes_read=6838 bytes_retransmit=0 bytes_invalid=0 send_seq=199 receive_seq=199 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000394 adj=12000501 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=854 bytes_read=4950 bytes_retransmit=9 bytes_invalid=0 send_seq=109 receive_seq=109 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000169 adj=12000560 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=883 bytes_read=4342 bytes_retransmit=9 bytes_invalid=0 send_seq=109 receive_seq=109 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000346 adj=12000573 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.7 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.2 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.19 cputime=0.904 memavail=7405744 print_time=46.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176000.6: gcodein=0 mcu: mcu_awake=0.012 mcu_task_avg=0.000025 mcu_task_stddev=0.000098 bytes_write=7096 bytes_read=12328 bytes_retransmit=9 bytes_invalid=0 send_seq=529 receive_seq=529 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998683 HermitCrab2: mcu_awake=0.004 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=3654 bytes_read=9493 bytes_retransmit=0 bytes_invalid=0 send_seq=334 receive_seq=334 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000369 adj=12000557 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=860 bytes_read=5053 bytes_retransmit=9 bytes_invalid=0 send_seq=110 receive_seq=110 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000266 adj=12000314 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=889 bytes_read=4358 bytes_retransmit=9 bytes_invalid=0 send_seq=110 receive_seq=110 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000341 adj=12000602 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.8 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.19 cputime=0.932 memavail=7404352 print_time=47.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176001.6: gcodein=0 mcu: mcu_awake=0.012 mcu_task_avg=0.000025 mcu_task_stddev=0.000098 bytes_write=9054 bytes_read=15201 bytes_retransmit=9 bytes_invalid=0 send_seq=690 receive_seq=690 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998679 HermitCrab2: mcu_awake=0.004 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=5256 bytes_read=12172 bytes_retransmit=0 bytes_invalid=0 send_seq=468 receive_seq=468 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000353 adj=12000515 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=866 bytes_read=5185 bytes_retransmit=9 bytes_invalid=0 send_seq=111 receive_seq=111 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000140 adj=12000637 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=895 bytes_read=4374 bytes_retransmit=9 bytes_invalid=0 send_seq=111 receive_seq=111 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000345 adj=12000584 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.17 cputime=0.963 memavail=7407392 print_time=48.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176002.6: gcodein=0 mcu: mcu_awake=0.012 mcu_task_avg=0.000025 mcu_task_stddev=0.000098 bytes_write=10546 bytes_read=17091 bytes_retransmit=9 bytes_invalid=0 send_seq=796 receive_seq=796 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998691 HermitCrab2: mcu_awake=0.004 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6237 bytes_read=13822 bytes_retransmit=0 bytes_invalid=0 send_seq=549 receive_seq=549 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000347 adj=12000487 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=872 bytes_read=5288 bytes_retransmit=9 bytes_invalid=0 send_seq=112 receive_seq=112 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000302 adj=12000204 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=901 bytes_read=4390 bytes_retransmit=9 bytes_invalid=0 send_seq=112 receive_seq=112 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000343 adj=12000603 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.2 Raspberry_Pi: temp=72.7 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.17 cputime=0.991 memavail=7407072 print_time=49.225 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176003.6: gcodein=0 mcu: mcu_awake=0.012 mcu_task_avg=0.000025 mcu_task_stddev=0.000098 bytes_write=11809 bytes_read=18579 bytes_retransmit=9 bytes_invalid=0 send_seq=883 receive_seq=883 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998670 HermitCrab2: mcu_awake=0.004 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6628 bytes_read=14564 bytes_retransmit=0 bytes_invalid=0 send_seq=583 receive_seq=583 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000343 adj=12000484 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=878 bytes_read=5391 bytes_retransmit=9 bytes_invalid=0 send_seq=113 receive_seq=113 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000274 adj=12000809 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=907 bytes_read=4406 bytes_retransmit=9 bytes_invalid=0 send_seq=113 receive_seq=113 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000342 adj=12000585 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.8 SKR_Mini_E3: temp=41.8 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.17 cputime=1.018 memavail=7406592 print_time=50.218 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176004.6: gcodein=0 mcu: mcu_awake=0.045 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=12300 bytes_read=19213 bytes_retransmit=9 bytes_invalid=0 send_seq=919 receive_seq=919 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998669 HermitCrab2: mcu_awake=0.038 mcu_task_avg=0.000011 mcu_task_stddev=0.000016 bytes_write=6634 bytes_read=14716 bytes_retransmit=0 bytes_invalid=0 send_seq=584 receive_seq=584 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000347 adj=12000513 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=884 bytes_read=5535 bytes_retransmit=9 bytes_invalid=0 send_seq=114 receive_seq=114 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000203 adj=12000657 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=913 bytes_read=4433 bytes_retransmit=9 bytes_invalid=0 send_seq=114 receive_seq=114 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000343 adj=12000598 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.8 SKR_Mini_E3: temp=42.2 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.17 cputime=1.034 memavail=7406272 print_time=51.218 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 LDC1612 starting 'btt_eddy' measurements Stats 176005.6: gcodein=0 mcu: mcu_awake=0.045 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=13649 bytes_read=19920 bytes_retransmit=9 bytes_invalid=0 send_seq=965 receive_seq=965 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998652 HermitCrab2: mcu_awake=0.038 mcu_task_avg=0.000011 mcu_task_stddev=0.000016 bytes_write=6640 bytes_read=14854 bytes_retransmit=0 bytes_invalid=0 send_seq=585 receive_seq=585 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000352 adj=12000550 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=1028 bytes_read=6127 bytes_retransmit=9 bytes_invalid=0 send_seq=122 receive_seq=122 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000345 adj=12000345 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=919 bytes_read=4449 bytes_retransmit=9 bytes_invalid=0 send_seq=115 receive_seq=115 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000345 adj=12000600 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.17 cputime=1.056 memavail=7406304 print_time=53.179 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176006.6: gcodein=0 mcu: mcu_awake=0.045 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=13796 bytes_read=20212 bytes_retransmit=9 bytes_invalid=0 send_seq=975 receive_seq=975 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998681 HermitCrab2: mcu_awake=0.038 mcu_task_avg=0.000011 mcu_task_stddev=0.000016 bytes_write=6646 bytes_read=14977 bytes_retransmit=0 bytes_invalid=0 send_seq=586 receive_seq=586 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000347 adj=12000611 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=1104 bytes_read=7548 bytes_retransmit=9 bytes_invalid=0 send_seq=133 receive_seq=133 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000346 adj=12001037 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=925 bytes_read=4465 bytes_retransmit=9 bytes_invalid=0 send_seq=116 receive_seq=116 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000346 adj=12000621 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.7 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.2 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.32 cputime=1.073 memavail=7406080 print_time=53.229 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176007.6: gcodein=0 mcu: mcu_awake=0.045 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=15703 bytes_read=22765 bytes_retransmit=9 bytes_invalid=0 send_seq=1118 receive_seq=1118 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998662 HermitCrab2: mcu_awake=0.038 mcu_task_avg=0.000011 mcu_task_stddev=0.000016 bytes_write=6652 bytes_read=15115 bytes_retransmit=0 bytes_invalid=0 send_seq=587 receive_seq=587 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000347 adj=12000564 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=2548 bytes_read=11225 bytes_retransmit=9 bytes_invalid=0 send_seq=258 receive_seq=258 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000345 adj=12001008 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=931 bytes_read=4481 bytes_retransmit=9 bytes_invalid=0 send_seq=117 receive_seq=117 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000347 adj=12000598 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.32 cputime=1.105 memavail=7406080 print_time=54.229 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176008.6: gcodein=0 mcu: mcu_awake=0.045 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=17809 bytes_read=25713 bytes_retransmit=9 bytes_invalid=0 send_seq=1281 receive_seq=1281 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998647 HermitCrab2: mcu_awake=0.038 mcu_task_avg=0.000011 mcu_task_stddev=0.000016 bytes_write=6658 bytes_read=15253 bytes_retransmit=0 bytes_invalid=0 send_seq=588 receive_seq=588 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000345 adj=12000590 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=4220 bytes_read=15248 bytes_retransmit=9 bytes_invalid=0 send_seq=402 receive_seq=402 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000384 adj=12000916 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=937 bytes_read=4497 bytes_retransmit=9 bytes_invalid=0 send_seq=118 receive_seq=118 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000347 adj=12000621 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.2 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=26.3 pwm=0.000 sysload=0.32 cputime=1.139 memavail=7406080 print_time=55.229 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176009.6: gcodein=0 mcu: mcu_awake=0.031 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=19903 bytes_read=28657 bytes_retransmit=9 bytes_invalid=0 send_seq=1443 receive_seq=1443 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998637 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6664 bytes_read=15390 bytes_retransmit=0 bytes_invalid=0 send_seq=589 receive_seq=589 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000341 adj=12000593 eddy: mcu_awake=0.495 mcu_task_avg=0.000126 mcu_task_stddev=0.000158 bytes_write=5909 bytes_read=19261 bytes_retransmit=9 bytes_invalid=0 send_seq=547 receive_seq=547 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000337 adj=12001039 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=943 bytes_read=4524 bytes_retransmit=9 bytes_invalid=0 send_seq=119 receive_seq=119 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000628 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.4 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.32 cputime=1.172 memavail=7405840 print_time=56.229 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176010.6: gcodein=0 mcu: mcu_awake=0.031 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=22442 bytes_read=31395 bytes_retransmit=9 bytes_invalid=0 send_seq=1603 receive_seq=1603 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=31 upcoming_bytes=0 freq=63998631 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6676 bytes_read=15544 bytes_retransmit=0 bytes_invalid=0 send_seq=591 receive_seq=591 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000338 adj=12000587 eddy: mcu_awake=0.495 mcu_task_avg=0.000126 mcu_task_stddev=0.000158 bytes_write=7456 bytes_read=23054 bytes_retransmit=9 bytes_invalid=0 send_seq=679 receive_seq=679 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000302 adj=12000715 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=949 bytes_read=4540 bytes_retransmit=9 bytes_invalid=0 send_seq=120 receive_seq=120 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000653 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=37.1 SKR_Mini_E3: temp=42.4 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.32 cputime=1.242 memavail=7404832 print_time=60.009 buffer_time=2.994 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176011.6: gcodein=0 mcu: mcu_awake=0.031 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=22591 bytes_read=31711 bytes_retransmit=9 bytes_invalid=0 send_seq=1612 receive_seq=1612 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998651 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6682 bytes_read=15682 bytes_retransmit=0 bytes_invalid=0 send_seq=592 receive_seq=592 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000337 adj=12000590 eddy: mcu_awake=0.495 mcu_task_avg=0.000126 mcu_task_stddev=0.000158 bytes_write=7532 bytes_read=24565 bytes_retransmit=9 bytes_invalid=0 send_seq=690 receive_seq=690 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000339 adj=12000475 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=955 bytes_read=4556 bytes_retransmit=9 bytes_invalid=0 send_seq=121 receive_seq=121 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000611 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.5 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.29 cputime=1.259 memavail=7405904 print_time=60.028 buffer_time=2.012 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176012.6: gcodein=0 mcu: mcu_awake=0.031 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=22709 bytes_read=31998 bytes_retransmit=9 bytes_invalid=0 send_seq=1621 receive_seq=1621 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998652 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6688 bytes_read=15805 bytes_retransmit=0 bytes_invalid=0 send_seq=593 receive_seq=593 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000339 adj=12000571 eddy: mcu_awake=0.495 mcu_task_avg=0.000126 mcu_task_stddev=0.000158 bytes_write=7608 bytes_read=26076 bytes_retransmit=9 bytes_invalid=0 send_seq=701 receive_seq=701 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000363 adj=12000592 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=961 bytes_read=4572 bytes_retransmit=9 bytes_invalid=0 send_seq=122 receive_seq=122 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000598 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.1 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.6 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.29 cputime=1.276 memavail=7404464 print_time=60.028 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176013.6: gcodein=0 mcu: mcu_awake=0.031 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=22970 bytes_read=32343 bytes_retransmit=9 bytes_invalid=0 send_seq=1636 receive_seq=1636 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998648 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6694 bytes_read=15943 bytes_retransmit=0 bytes_invalid=0 send_seq=594 receive_seq=594 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000336 adj=12000577 eddy: mcu_awake=0.495 mcu_task_avg=0.000126 mcu_task_stddev=0.000158 bytes_write=7696 bytes_read=27649 bytes_retransmit=9 bytes_invalid=0 send_seq=713 receive_seq=713 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000389 adj=12000678 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=967 bytes_read=4588 bytes_retransmit=9 bytes_invalid=0 send_seq=123 receive_seq=123 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000352 adj=12000597 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.6 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.29 cputime=1.293 memavail=7403408 print_time=60.228 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 probe at -40.000,105.000 is z=1.525839 Stats 176014.6: gcodein=0 mcu: mcu_awake=0.027 mcu_task_avg=0.000013 mcu_task_stddev=0.000013 bytes_write=24944 bytes_read=34692 bytes_retransmit=9 bytes_invalid=0 send_seq=1768 receive_seq=1768 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=31 upcoming_bytes=0 freq=63998639 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6700 bytes_read=16095 bytes_retransmit=0 bytes_invalid=0 send_seq=595 receive_seq=595 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000335 adj=12000572 eddy: mcu_awake=0.672 mcu_task_avg=0.000149 mcu_task_stddev=0.000161 bytes_write=8996 bytes_read=31058 bytes_retransmit=9 bytes_invalid=0 send_seq=825 receive_seq=825 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000377 adj=12000774 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=973 bytes_read=4615 bytes_retransmit=9 bytes_invalid=0 send_seq=124 receive_seq=124 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000602 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.6 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.2 pwm=0.000 sysload=0.29 cputime=1.329 memavail=7403408 print_time=64.007 buffer_time=2.988 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176015.6: gcodein=0 mcu: mcu_awake=0.027 mcu_task_avg=0.000013 mcu_task_stddev=0.000013 bytes_write=25093 bytes_read=34979 bytes_retransmit=9 bytes_invalid=0 send_seq=1777 receive_seq=1777 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998656 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6706 bytes_read=16218 bytes_retransmit=0 bytes_invalid=0 send_seq=596 receive_seq=596 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000333 adj=12000578 eddy: mcu_awake=0.672 mcu_task_avg=0.000149 mcu_task_stddev=0.000161 bytes_write=9072 bytes_read=32569 bytes_retransmit=9 bytes_invalid=0 send_seq=836 receive_seq=836 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000390 adj=12000662 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=979 bytes_read=4631 bytes_retransmit=9 bytes_invalid=0 send_seq=125 receive_seq=125 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000606 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.8 SKR_Mini_E3: temp=42.8 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.29 cputime=1.347 memavail=7403424 print_time=64.025 buffer_time=2.006 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176016.6: gcodein=0 mcu: mcu_awake=0.027 mcu_task_avg=0.000013 mcu_task_stddev=0.000013 bytes_write=25211 bytes_read=35280 bytes_retransmit=9 bytes_invalid=0 send_seq=1786 receive_seq=1786 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998648 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6712 bytes_read=16356 bytes_retransmit=0 bytes_invalid=0 send_seq=597 receive_seq=597 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000332 adj=12000560 eddy: mcu_awake=0.672 mcu_task_avg=0.000149 mcu_task_stddev=0.000161 bytes_write=9148 bytes_read=34109 bytes_retransmit=9 bytes_invalid=0 send_seq=847 receive_seq=847 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000399 adj=12000698 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=985 bytes_read=4647 bytes_retransmit=9 bytes_invalid=0 send_seq=126 receive_seq=126 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000351 adj=12000594 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.1 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.8 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.27 cputime=1.364 memavail=7403424 print_time=64.025 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176017.6: gcodein=0 mcu: mcu_awake=0.027 mcu_task_avg=0.000013 mcu_task_stddev=0.000013 bytes_write=25478 bytes_read=35640 bytes_retransmit=9 bytes_invalid=0 send_seq=1801 receive_seq=1801 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998641 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6718 bytes_read=16494 bytes_retransmit=0 bytes_invalid=0 send_seq=598 receive_seq=598 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000333 adj=12000561 eddy: mcu_awake=0.672 mcu_task_avg=0.000149 mcu_task_stddev=0.000161 bytes_write=9248 bytes_read=35658 bytes_retransmit=9 bytes_invalid=0 send_seq=860 receive_seq=860 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000420 adj=12000740 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=991 bytes_read=4663 bytes_retransmit=9 bytes_invalid=0 send_seq=127 receive_seq=127 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000353 adj=12000601 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.0 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.27 cputime=1.383 memavail=7403424 print_time=64.225 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 probe at 160.000,105.000 is z=1.519644 Calculating bed tilt with: [[-39.99999999998236, 105.00000000000001, 1.525839125000014], [159.99999999994543, 105.00000000000001, 1.5196441600000254]] Coordinate descent initial error: 0.0010535534028729514 Coordinate descent best_err: 1.6627216043969565e-10 rounds: 207 Calculated bed tilt parameters: {'x_adjust': -3.0894019984030455e-05, 'y_adjust': -5.061907417551828e-05, 'z_adjust': 1.5299060625587226} Making the following Z adjustments: stepper_z = 0.026785 stepper_z1 = 0.019834 Retries: 0/15 Probed points range: 0.006195 tolerance: 0.005000 Stats 176018.6: gcodein=0 mcu: mcu_awake=0.027 mcu_task_avg=0.000013 mcu_task_stddev=0.000013 bytes_write=27524 bytes_read=37955 bytes_retransmit=9 bytes_invalid=0 send_seq=1935 receive_seq=1935 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=54 upcoming_bytes=0 freq=63998635 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6724 bytes_read=16617 bytes_retransmit=0 bytes_invalid=0 send_seq=599 receive_seq=599 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000334 adj=12000570 eddy: mcu_awake=0.672 mcu_task_avg=0.000149 mcu_task_stddev=0.000161 bytes_write=10543 bytes_read=39060 bytes_retransmit=9 bytes_invalid=0 send_seq=971 receive_seq=971 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000398 adj=12000833 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=997 bytes_read=4679 bytes_retransmit=9 bytes_invalid=0 send_seq=128 receive_seq=128 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000353 adj=12000612 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.0 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.27 cputime=1.422 memavail=7405456 print_time=68.114 buffer_time=3.094 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176019.6: gcodein=0 mcu: mcu_awake=0.023 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=27696 bytes_read=38270 bytes_retransmit=9 bytes_invalid=0 send_seq=1944 receive_seq=1944 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998657 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6730 bytes_read=16769 bytes_retransmit=0 bytes_invalid=0 send_seq=600 receive_seq=600 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000333 adj=12000588 eddy: mcu_awake=0.669 mcu_task_avg=0.000173 mcu_task_stddev=0.000163 bytes_write=10619 bytes_read=40616 bytes_retransmit=9 bytes_invalid=0 send_seq=982 receive_seq=982 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000384 adj=12000653 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1003 bytes_read=4706 bytes_retransmit=9 bytes_invalid=0 send_seq=129 receive_seq=129 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000617 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.1 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.7 pwm=0.000 sysload=0.27 cputime=1.439 memavail=7404816 print_time=68.114 buffer_time=2.093 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176020.6: gcodein=0 mcu: mcu_awake=0.023 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=27814 bytes_read=38564 bytes_retransmit=9 bytes_invalid=0 send_seq=1953 receive_seq=1953 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998650 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6736 bytes_read=16907 bytes_retransmit=0 bytes_invalid=0 send_seq=601 receive_seq=601 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000334 adj=12000569 eddy: mcu_awake=0.669 mcu_task_avg=0.000173 mcu_task_stddev=0.000163 bytes_write=10695 bytes_read=42127 bytes_retransmit=9 bytes_invalid=0 send_seq=993 receive_seq=993 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000390 adj=12000573 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1009 bytes_read=4722 bytes_retransmit=9 bytes_invalid=0 send_seq=130 receive_seq=130 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000608 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.8 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.2 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.27 cputime=1.457 memavail=7403600 print_time=68.133 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176021.6: gcodein=0 mcu: mcu_awake=0.023 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=28031 bytes_read=38859 bytes_retransmit=9 bytes_invalid=0 send_seq=1965 receive_seq=1965 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998646 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6742 bytes_read=17030 bytes_retransmit=0 bytes_invalid=0 send_seq=602 receive_seq=602 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000332 adj=12000577 eddy: mcu_awake=0.669 mcu_task_avg=0.000173 mcu_task_stddev=0.000163 bytes_write=10771 bytes_read=43638 bytes_retransmit=9 bytes_invalid=0 send_seq=1004 receive_seq=1004 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000406 adj=12000607 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1015 bytes_read=4738 bytes_retransmit=9 bytes_invalid=0 send_seq=131 receive_seq=131 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000613 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.0 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.25 cputime=1.474 memavail=7405312 print_time=68.233 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176022.6: gcodein=0 mcu: mcu_awake=0.023 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=29595 bytes_read=41085 bytes_retransmit=9 bytes_invalid=0 send_seq=2094 receive_seq=2094 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998643 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6748 bytes_read=17168 bytes_retransmit=0 bytes_invalid=0 send_seq=603 receive_seq=603 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000332 adj=12000574 eddy: mcu_awake=0.669 mcu_task_avg=0.000173 mcu_task_stddev=0.000163 bytes_write=12046 bytes_read=47026 bytes_retransmit=9 bytes_invalid=0 send_seq=1116 receive_seq=1116 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000416 adj=12000679 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1021 bytes_read=4754 bytes_retransmit=9 bytes_invalid=0 send_seq=132 receive_seq=132 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000614 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.1 btt_eddy: temp=37.0 SKR_Mini_E3: temp=43.2 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=25.7 pwm=0.000 sysload=0.25 cputime=1.507 memavail=7404544 print_time=69.090 buffer_time=0.067 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 probe at -40.000,105.000 is z=1.503344 Stats 176023.6: gcodein=0 mcu: mcu_awake=0.023 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=30107 bytes_read=41409 bytes_retransmit=9 bytes_invalid=0 send_seq=2109 receive_seq=2109 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998649 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6754 bytes_read=17306 bytes_retransmit=0 bytes_invalid=0 send_seq=604 receive_seq=604 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000331 adj=12000573 eddy: mcu_awake=0.669 mcu_task_avg=0.000173 mcu_task_stddev=0.000163 bytes_write=12159 bytes_read=48542 bytes_retransmit=9 bytes_invalid=0 send_seq=1128 receive_seq=1128 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000425 adj=12000731 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1027 bytes_read=4770 bytes_retransmit=9 bytes_invalid=0 send_seq=133 receive_seq=133 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000354 adj=12000618 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.1 btt_eddy: temp=37.0 SKR_Mini_E3: temp=43.4 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.25 cputime=1.528 memavail=7404576 print_time=72.155 buffer_time=2.131 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176024.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=30225 bytes_read=41710 bytes_retransmit=9 bytes_invalid=0 send_seq=2118 receive_seq=2118 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998645 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6760 bytes_read=17443 bytes_retransmit=0 bytes_invalid=0 send_seq=605 receive_seq=605 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000330 adj=12000567 eddy: mcu_awake=0.668 mcu_task_avg=0.000185 mcu_task_stddev=0.000161 bytes_write=12235 bytes_read=50069 bytes_retransmit=9 bytes_invalid=0 send_seq=1139 receive_seq=1139 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000428 adj=12000760 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1033 bytes_read=4797 bytes_retransmit=9 bytes_invalid=0 send_seq=134 receive_seq=134 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000604 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=37.0 SKR_Mini_E3: temp=43.7 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.25 cputime=1.546 memavail=7406496 print_time=72.174 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176025.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=30370 bytes_read=42016 bytes_retransmit=9 bytes_invalid=0 send_seq=2128 receive_seq=2128 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998642 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6766 bytes_read=17596 bytes_retransmit=0 bytes_invalid=0 send_seq=606 receive_seq=606 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000331 adj=12000565 eddy: mcu_awake=0.668 mcu_task_avg=0.000185 mcu_task_stddev=0.000161 bytes_write=12311 bytes_read=51609 bytes_retransmit=9 bytes_invalid=0 send_seq=1150 receive_seq=1150 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000439 adj=12000785 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1039 bytes_read=4813 bytes_retransmit=9 bytes_invalid=0 send_seq=135 receive_seq=135 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000616 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.8 SKR_Mini_E3: temp=43.7 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.25 cputime=1.563 memavail=7404608 print_time=72.224 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176026.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=32102 bytes_read=44377 bytes_retransmit=9 bytes_invalid=0 send_seq=2260 receive_seq=2260 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998645 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6772 bytes_read=17719 bytes_retransmit=0 bytes_invalid=0 send_seq=607 receive_seq=607 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000330 adj=12000576 eddy: mcu_awake=0.668 mcu_task_avg=0.000185 mcu_task_stddev=0.000161 bytes_write=13598 bytes_read=55026 bytes_retransmit=9 bytes_invalid=0 send_seq=1262 receive_seq=1262 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000426 adj=12000854 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1045 bytes_read=4829 bytes_retransmit=9 bytes_invalid=0 send_seq=136 receive_seq=136 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000627 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.5 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.31 cputime=1.596 memavail=7405536 print_time=73.138 buffer_time=0.112 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 probe at 160.000,105.000 is z=1.501937 Calculating bed tilt with: [[-39.99999999998237, 105.00000000000001, 1.5033439851843624], [159.9999999999454, 105.00000000000001, 1.501937151851034]] Coordinate descent initial error: 1.493479420719992e-05 Coordinate descent best_err: 2.0830701022871593e-10 rounds: 192 Calculated bed tilt parameters: {'x_adjust': -6.945558791594154e-06, 'y_adjust': -9.62572942404104e-06, 'z_adjust': 1.504062940044104} Making the following Z adjustments: stepper_z = 0.003526 stepper_z1 = 0.001963 Retries: 1/15 Probed points range: 0.001407 tolerance: 0.005000 LDC1612 finished 'btt_eddy' measurements Stats 176027.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=32412 bytes_read=44679 bytes_retransmit=9 bytes_invalid=0 send_seq=2272 receive_seq=2272 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998649 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6778 bytes_read=17842 bytes_retransmit=0 bytes_invalid=0 send_seq=608 receive_seq=608 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000329 adj=12000563 eddy: mcu_awake=0.668 mcu_task_avg=0.000185 mcu_task_stddev=0.000161 bytes_write=13633 bytes_read=55451 bytes_retransmit=9 bytes_invalid=0 send_seq=1267 receive_seq=1267 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000407 adj=12000751 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1051 bytes_read=4845 bytes_retransmit=9 bytes_invalid=0 send_seq=137 receive_seq=137 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000621 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.6 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.31 cputime=1.616 memavail=7405216 print_time=74.142 buffer_time=0.114 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176028.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000014 bytes_write=32530 bytes_read=44980 bytes_retransmit=9 bytes_invalid=0 send_seq=2281 receive_seq=2281 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998644 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6784 bytes_read=17995 bytes_retransmit=0 bytes_invalid=0 send_seq=609 receive_seq=609 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000329 adj=12000555 eddy: mcu_awake=0.668 mcu_task_avg=0.000185 mcu_task_stddev=0.000161 bytes_write=13639 bytes_read=55583 bytes_retransmit=9 bytes_invalid=0 send_seq=1268 receive_seq=1268 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000389 adj=12000570 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1063 bytes_read=4877 bytes_retransmit=9 bytes_invalid=0 send_seq=139 receive_seq=139 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000607 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=37.0 SKR_Mini_E3: temp=43.8 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.31 cputime=1.628 memavail=7406112 print_time=74.142 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176029.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=32648 bytes_read=45297 bytes_retransmit=9 bytes_invalid=0 send_seq=2290 receive_seq=2290 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998643 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6790 bytes_read=18132 bytes_retransmit=0 bytes_invalid=0 send_seq=610 receive_seq=610 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000329 adj=12000561 eddy: mcu_awake=0.387 mcu_task_avg=0.000166 mcu_task_stddev=0.000163 bytes_write=13645 bytes_read=55702 bytes_retransmit=9 bytes_invalid=0 send_seq=1269 receive_seq=1269 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000374 adj=12000444 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1069 bytes_read=4904 bytes_retransmit=9 bytes_invalid=0 send_seq=140 receive_seq=140 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000612 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.7 btt_eddy: temp=37.0 SKR_Mini_E3: temp=43.7 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.31 cputime=1.639 memavail=7404192 print_time=74.142 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176030.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=32766 bytes_read=45584 bytes_retransmit=9 bytes_invalid=0 send_seq=2299 receive_seq=2299 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998637 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6796 bytes_read=18255 bytes_retransmit=0 bytes_invalid=0 send_seq=611 receive_seq=611 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000328 adj=12000568 eddy: mcu_awake=0.387 mcu_task_avg=0.000166 mcu_task_stddev=0.000163 bytes_write=13651 bytes_read=55805 bytes_retransmit=9 bytes_invalid=0 send_seq=1270 receive_seq=1270 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000385 adj=12000368 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1075 bytes_read=4920 bytes_retransmit=9 bytes_invalid=0 send_seq=141 receive_seq=141 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000614 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.6 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.31 cputime=1.650 memavail=7405792 print_time=74.142 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 LDC1612 starting 'btt_eddy' measurements Stats 176031.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=33817 bytes_read=45960 bytes_retransmit=9 bytes_invalid=0 send_seq=2323 receive_seq=2323 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998636 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6802 bytes_read=18408 bytes_retransmit=0 bytes_invalid=0 send_seq=612 receive_seq=612 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000328 adj=12000577 eddy: mcu_awake=0.387 mcu_task_avg=0.000166 mcu_task_stddev=0.000163 bytes_write=13861 bytes_read=56842 bytes_retransmit=9 bytes_invalid=0 send_seq=1290 receive_seq=1290 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000378 adj=12000541 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1081 bytes_read=4936 bytes_retransmit=9 bytes_invalid=0 send_seq=142 receive_seq=142 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000621 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=37.0 SKR_Mini_E3: temp=44.0 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.28 cputime=1.670 memavail=7403888 print_time=78.982 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Probe triggered prior to movement Stats 176032.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=34152 bytes_read=46414 bytes_retransmit=9 bytes_invalid=0 send_seq=2345 receive_seq=2345 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998636 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6808 bytes_read=18531 bytes_retransmit=0 bytes_invalid=0 send_seq=613 receive_seq=613 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000327 adj=12000577 eddy: mcu_awake=0.387 mcu_task_avg=0.000166 mcu_task_stddev=0.000163 bytes_write=13977 bytes_read=58388 bytes_retransmit=9 bytes_invalid=0 send_seq=1305 receive_seq=1305 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000390 adj=12000527 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1087 bytes_read=4952 bytes_retransmit=9 bytes_invalid=0 send_seq=143 receive_seq=143 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000616 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.1 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.0 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.28 cputime=1.690 memavail=7401120 print_time=79.220 buffer_time=0.190 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 LDC1612 finished 'btt_eddy' measurements Stats 176033.6: gcodein=0 mcu: mcu_awake=0.014 mcu_task_avg=0.000013 mcu_task_stddev=0.000012 bytes_write=34270 bytes_read=46701 bytes_retransmit=9 bytes_invalid=0 send_seq=2354 receive_seq=2354 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998636 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000019 bytes_write=6814 bytes_read=18654 bytes_retransmit=0 bytes_invalid=0 send_seq=614 receive_seq=614 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000327 adj=12000573 eddy: mcu_awake=0.387 mcu_task_avg=0.000166 mcu_task_stddev=0.000163 bytes_write=13998 bytes_read=58518 bytes_retransmit=9 bytes_invalid=0 send_seq=1308 receive_seq=1308 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000406 adj=12000651 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1093 bytes_read=4968 bytes_retransmit=9 bytes_invalid=0 send_seq=144 receive_seq=144 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000614 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.1 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.28 cputime=1.702 memavail=7399264 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Transition to shutdown state: Shutdown due to webhooks request Dumping gcode input 0 blocks Dumping 20 requests for client 140732187736656 Received 175994.162545: b'{"id": 140736219391376, "method": "objects/query", "params": {"objects": {"configfile": null}}}' Received 175994.163801: b'{"id": 140736221131856, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "idle_timeout": null, "display_status": null, "heaters": null, "temperature_sensor HermitCrab2": null, "fan": null, "heater_fan hotend_fan": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "heater_bed": null, "print_stats": null, "virtual_sdcard": null, "toolhead": null, "extruder": null, "gcode": null, "configfile": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "neopixel matchstick": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "gcode_macro FILAMENT_RUNOUT": null, "fan_generic 4W_FAN": null, "neopixel hotend_rgb": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "gcode_move": null, "bed_mesh": null, "probe": null, "probe_eddy_current btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "neopixel HBB_LED": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "temperature_host Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "bed_screws": null, "screws_tilt_adjust": null, "exclude_object": null, "pause_resume": null, "save_variables": null, "motion_report": null, "query_endstops": null, "system_stats": null, "manual_probe": null}, "response_template": {"method": "process_status_update"}}}' Received 175994.346506: b'{"id": 140736220314960, "method": "objects/subscribe", "params": {"objects": {"gcode": null, "webhooks": null, "configfile": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "idle_timeout": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "display_status": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "neopixel matchstick": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "gcode_macro FILAMENT_RUNOUT": null, "heaters": null, "temperature_sensor HermitCrab2": null, "fan": null, "heater_fan hotend_fan": null, "fan_generic 4W_FAN": null, "neopixel hotend_rgb": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "gcode_move": null, "bed_mesh": null, "probe": null, "probe_eddy_current btt_eddy": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "neopixel HBB_LED": null, "temperature_sensor SKR_Mini_E3": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "temperature_host Raspberry_Pi": null, "temperature_sensor Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "heater_bed": null, "bed_screws": null, "screws_tilt_adjust": null, "exclude_object": null, "pause_resume": null, "save_variables": null, "print_stats": null, "virtual_sdcard": null, "motion_report": null, "query_endstops": null, "system_stats": null, "manual_probe": null, "toolhead": null, "extruder": null}, "response_template": {"method": "process_status_update"}}}' Received 175994.347282: b'{"id": 140736258102352, "method": "gcode/help", "params": {}}' Received 175994.353104: b'{"id": 140736219570896, "method": "objects/query", "params": {"objects": {"bed_mesh": null, "configfile": null, "display_status": null, "extruder": null, "fan": null, "gcode_move": null, "heater_bed": null, "idle_timeout": null, "pause_resume": null, "print_stats": null, "toolhead": null, "virtual_sdcard": null, "webhooks": null, "motion_report": null, "firmware_retraction": null, "exclude_object": null, "manual_probe": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "fan_generic 4W_FAN": null, "heater_fan hotend_fan": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "neopixel matchstick": null, "neopixel hotend_rgb": null, "neopixel HBB_LED": null}}}' Received 175994.506606: b'{"id": 140736219568336, "method": "objects/query", "params": {"objects": {}}}' Received 175994.606748: b'{"id": 140736218666576, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "print_stats": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "heater_bed": null, "extruder": null, "gcode": null, "configfile": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "idle_timeout": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "display_status": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "neopixel matchstick": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "gcode_macro FILAMENT_RUNOUT": null, "heaters": null, "fan": null, "heater_fan hotend_fan": null, "fan_generic 4W_FAN": null, "neopixel hotend_rgb": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "gcode_move": null, "bed_mesh": null, "probe": null, "probe_eddy_current btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "neopixel HBB_LED": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "temperature_host Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "bed_screws": null, "screws_tilt_adjust": null, "exclude_object": null, "pause_resume": null, "save_variables": null, "virtual_sdcard": null, "motion_report": null, "query_endstops": null, "system_stats": null, "manual_probe": null, "toolhead": null}, "response_template": {"method": "process_status_update"}}}' Received 175994.835865: b'{"id": 140736218456656, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "print_stats": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "heater_bed": null, "extruder": null, "gcode": null, "configfile": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "idle_timeout": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "display_status": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "neopixel matchstick": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "gcode_macro FILAMENT_RUNOUT": null, "heaters": null, "fan": null, "heater_fan hotend_fan": null, "fan_generic 4W_FAN": null, "neopixel hotend_rgb": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "gcode_move": null, "bed_mesh": null, "probe": null, "probe_eddy_current btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "neopixel HBB_LED": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "temperature_host Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "bed_screws": null, "screws_tilt_adjust": null, "exclude_object": null, "pause_resume": null, "save_variables": null, "virtual_sdcard": null, "motion_report": null, "query_endstops": null, "system_stats": null, "manual_probe": null, "toolhead": null}, "response_template": {"method": "process_status_update"}}}' Received 175994.838900: b'{"id": 140736248117712, "method": "info", "params": {}}' Received 175994.841290: b'{"id": 140736248116880, "method": "objects/query", "params": {"objects": {"configfile": null}}}' Received 175995.101342: b'{"id": 140736247919248, "method": "objects/subscribe", "params": {"objects": {"display_status": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "gcode_move": null, "print_stats": null, "virtual_sdcard": null, "toolhead": null, "webhooks": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "heater_bed": null, "extruder": null, "gcode": null, "configfile": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "idle_timeout": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "neopixel matchstick": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "gcode_macro FILAMENT_RUNOUT": null, "heaters": null, "fan": null, "heater_fan hotend_fan": null, "fan_generic 4W_FAN": null, "neopixel hotend_rgb": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "bed_mesh": null, "probe": null, "probe_eddy_current btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "neopixel HBB_LED": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "temperature_host Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "bed_screws": null, "screws_tilt_adjust": null, "exclude_object": null, "pause_resume": null, "save_variables": null, "motion_report": null, "query_endstops": null, "system_stats": null, "manual_probe": null}, "response_template": {"method": "process_status_update"}}}' Received 175995.102242: b'{"id": 140736218669200, "method": "objects/query", "params": {"objects": {"extruder": ["can_extrude"]}}}' Received 175995.112126: b'{"id": 140736218670928, "method": "gcode/help", "params": {}}' Received 175995.123799: b'{"id": 140736219364112, "method": "objects/query", "params": {"objects": {"bed_mesh": null, "configfile": null, "display_status": null, "extruder": null, "fan": null, "gcode_move": null, "heater_bed": null, "idle_timeout": null, "pause_resume": null, "print_stats": null, "toolhead": null, "virtual_sdcard": null, "webhooks": null, "motion_report": null, "firmware_retraction": null, "exclude_object": null, "manual_probe": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "fan_generic 4W_FAN": null, "heater_fan hotend_fan": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "neopixel matchstick": null, "neopixel hotend_rgb": null, "neopixel HBB_LED": null}}}' Received 175995.347977: b'{"id": 140736248607568, "method": "objects/subscribe", "params": {"objects": {"bed_mesh": null, "configfile": null, "display_status": null, "fan": null, "gcode_move": null, "idle_timeout": null, "pause_resume": null, "print_stats": null, "toolhead": null, "virtual_sdcard": null, "webhooks": null, "firmware_retraction": ["retract_length", "retract_speed", "unretract_extra_length", "unretract_speed"], "motion_report": null, "exclude_object": null, "manual_probe": null, "screws_tilt_adjust": null, "extruder": null, "heater_bed": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "fan_generic 4W_FAN": null, "heater_fan hotend_fan": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "neopixel matchstick": null, "neopixel hotend_rgb": null, "neopixel HBB_LED": null, "gcode": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "gcode_macro FILAMENT_RUNOUT": null, "heaters": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "probe": null, "probe_eddy_current btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "temperature_host Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "bed_screws": null, "save_variables": null, "query_endstops": null, "system_stats": null}, "response_template": {"method": "process_status_update"}}}' Received 175995.592279: b'{"id": 140736248005456, "method": "objects/subscribe", "params": {"objects": {"bed_mesh": null, "configfile": null, "display_status": null, "fan": null, "gcode_move": null, "idle_timeout": null, "pause_resume": null, "print_stats": null, "toolhead": null, "virtual_sdcard": null, "webhooks": null, "firmware_retraction": ["unretract_extra_length", "unretract_speed", "retract_speed", "retract_length"], "motion_report": null, "exclude_object": null, "manual_probe": null, "screws_tilt_adjust": null, "extruder": null, "heater_bed": null, "temperature_sensor HermitCrab2": null, "temperature_sensor btt_eddy_mcu": null, "temperature_sensor btt_eddy": null, "temperature_sensor SKR_Mini_E3": null, "temperature_sensor Raspberry_Pi": null, "controller_fan SKR_FAN1": null, "controller_fan SKR_FAN2": null, "fan_generic 4W_FAN": null, "heater_fan hotend_fan": null, "filament_switch_sensor bttsfs_switch": null, "filament_motion_sensor encoder_sensor": null, "neopixel matchstick": null, "neopixel hotend_rgb": null, "neopixel HBB_LED": null, "gcode": null, "mcu": null, "mcu HermitCrab2": null, "mcu eddy": null, "mcu HBB": null, "gcode_macro M420": null, "gcode_macro M900": null, "gcode_macro G27": null, "gcode_macro G29": null, "gcode_macro PRINT_START": null, "gcode_macro PRINT_END": null, "gcode_macro REMOVE_PRINT": null, "gcode_macro PAUSE": null, "gcode_macro RESUME": null, "gcode_macro CANCEL_PRINT": null, "gcode_macro COLOR_CHANGE": null, "gcode_macro M600": null, "gcode_macro M601": null, "gcode_macro M602": null, "gcode_macro M24": null, "gcode_macro M25": null, "gcode_macro SAFE_RETRACT": null, "gcode_macro WLED_ON": null, "gcode_macro WLED_CALIBRATE": null, "gcode_macro WLED_CONTROL": null, "gcode_macro WLED_OFF": null, "gcode_macro SET_WLED": null, "gcode_macro POWER_ON_PRINTER": null, "gcode_macro POWER_OFF_PRINTER": null, "gcode_macro GREASE_WHEELS": null, "gcode_macro UP_AND_DOWN": null, "gcode_macro TEST_SPEED": null, "gcode_macro CG28": null, "gcode_macro CQGL": null, "gcode_macro CZ_TILT_ADJUST": null, "gcode_macro HOME_IF_NEEDED": null, "gcode_macro LAZY_HOME": null, "gcode_macro CHECK_HOME": null, "gcode_macro M116": null, "gcode_macro M1187": null, "gcode_macro M1178": null, "gcode_macro WIPE_NOZZLE": null, "gcode_macro CLEAN_NOZZLE": null, "gcode_macro G12": null, "gcode_macro m300": null, "gcode_macro BEEP": null, "gcode_macro EXTRUSION_PID_CALIBRATE": null, "gcode_macro BED_PID_CALIBRATE": null, "gcode_macro ZOFFSET_CALIBRATE": null, "gcode_macro ZOFFSET_CHECK": null, "gcode_macro LOAD_FILAMENT": null, "gcode_macro UNLOAD_FILAMENT": null, "gcode_macro GET_TIMELAPSE_SETUP": null, "gcode_macro _SET_TIMELAPSE_SETUP": null, "gcode_macro TIMELAPSE_TAKE_FRAME": null, "gcode_macro _TIMELAPSE_NEW_FRAME": null, "gcode_macro HYPERLAPSE": null, "gcode_macro TIMELAPSE_RENDER": null, "gcode_macro TEST_STREAM_DELAY": null, "gcode_macro LIGHT_SWITCH": null, "gcode_macro LIGHTS_RED": null, "gcode_macro LIGHTS_GREEN": null, "gcode_button light_switch": null, "gcode_macro _KAMP_Settings": null, "gcode_macro LINE_PURGE": null, "gcode_macro VORON_PURGE": null, "gcode_macro SMART_PARK": null, "gcode_macro FILAMENT_RUNOUT": null, "heaters": null, "gcode_macro HOTEND_LED_BLINK": null, "gcode_macro HOTEND_LED_BREATHE": null, "stepper_enable": null, "tmc2209 extruder": null, "probe": null, "probe_eddy_current btt_eddy": null, "gcode_button key1": null, "gcode_button key2": null, "gcode_button key3": null, "gcode_button key4": null, "gcode_button key5": null, "gcode_button key6": null, "gcode_button key7": null, "temperature_host Raspberry_Pi": null, "tmc2209 stepper_x": null, "tmc2209 stepper_y": null, "tmc2209 stepper_z": null, "tmc2209 stepper_z1": null, "z_tilt": null, "bed_screws": null, "save_variables": null, "query_endstops": null, "system_stats": null}, "response_template": {"method": "process_status_update"}}}' Received 175997.854000: b'{"id": 140736248564176, "method": "gcode/script", "params": {"script": "G28"}}' Received 176001.818652: b'{"id": 140736248568592, "method": "gcode/script", "params": {"script": "Z_TILT_ADJUST"}}' Received 176030.968368: b'{"id": 140736247121296, "method": "gcode/script", "params": {"script": "BED_MESH_CALIBRATE METHOD=rapid_scan PROFILE=rapid-test-1"}}' Received 176033.976385: b'{"id": 140736248572944, "method": "emergency_stop", "params": {}}' gcode state: absolute_coord=True absolute_extrude=True base_position=[0.0, 0.0, 0.0, 0.0] last_position=[-40.9999999999826, 6.000000000026958, 1.4999115146338944, 0.0] homing_position=[0.0, 0.0, 0.0, 0.0] speed_factor=0.016666666666666666 extrude_factor=1.0 speed=25.0 Reactor garbage collection: (176030.969578392, 176010.176164256, 0.0) Requested toolhead position at shutdown time 80.424668: (-40.9999999999826, 6.000000000026958, 1.4999115146338944) MCU 'HermitCrab2' shutdown: Command request clocksync state: mcu_freq=12000000 last_clock=955480350 clock_est=(176011.443 694332927 12000327.146) min_half_rtt=0.000104 min_rtt_time=175999.731 time_avg=176011.443(224.111) clock_avg=694332927.183(2689409731.489) pred_variance=25601456.735 clock_adj=(0.032 12000573.000) Dumping serial stats: bytes_write=6820 bytes_read=18748 bytes_retransmit=0 bytes_invalid=0 send_seq=615 receive_seq=615 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 Dumping send queue 100 messages Sent 0 176001.908642 176001.908456 12: seq: 13, trsync_set_timeout oid=6 clock=580219197 Sent 1 176001.916143 176001.915957 12: seq: 14, trsync_set_timeout oid=6 clock=580309203 Sent 2 176001.923642 176001.923456 12: seq: 15, trsync_set_timeout oid=6 clock=580399207 Sent 3 176001.931143 176001.930957 12: seq: 16, trsync_set_timeout oid=6 clock=580489212 Sent 4 176001.938757 176001.938571 12: seq: 17, trsync_set_timeout oid=6 clock=580579215 Sent 5 176001.946152 176001.945966 12: seq: 18, trsync_set_timeout oid=6 clock=580669222 Sent 6 176001.953703 176001.953517 12: seq: 19, trsync_set_timeout oid=6 clock=580759225 Sent 7 176001.961159 176001.960973 12: seq: 1a, trsync_set_timeout oid=6 clock=580849229 Sent 8 176001.968643 176001.968457 12: seq: 1b, trsync_set_timeout oid=6 clock=580939232 Sent 9 176001.976160 176001.975974 12: seq: 1c, trsync_set_timeout oid=6 clock=581029238 Sent 10 176001.983645 176001.983459 12: seq: 1d, trsync_set_timeout oid=6 clock=581119243 Sent 11 176001.991156 176001.990970 12: seq: 1e, trsync_set_timeout oid=6 clock=581209247 Sent 12 176001.998676 176001.998490 12: seq: 1f, trsync_set_timeout oid=6 clock=581299250 Sent 13 176002.006164 176002.005978 12: seq: 10, trsync_set_timeout oid=6 clock=581389247 Sent 14 176002.013653 176002.013467 12: seq: 11, trsync_set_timeout oid=6 clock=581479305 Sent 15 176002.021158 176002.020972 12: seq: 12, trsync_set_timeout oid=6 clock=581569265 Sent 16 176002.028662 176002.028476 12: seq: 13, trsync_set_timeout oid=6 clock=581659268 Sent 17 176002.036149 176002.035963 12: seq: 14, trsync_set_timeout oid=6 clock=581749274 Sent 18 176002.043643 176002.043457 12: seq: 15, trsync_set_timeout oid=6 clock=581839278 Sent 19 176002.051162 176002.050976 12: seq: 16, trsync_set_timeout oid=6 clock=581929284 Sent 20 176002.058684 176002.058498 12: seq: 17, trsync_set_timeout oid=6 clock=582019286 Sent 21 176002.066153 176002.065967 12: seq: 18, trsync_set_timeout oid=6 clock=582109292 Sent 22 176002.073664 176002.073478 12: seq: 19, trsync_set_timeout oid=6 clock=582199296 Sent 23 176002.081147 176002.080961 12: seq: 1a, trsync_set_timeout oid=6 clock=582289301 Sent 24 176002.088913 176002.088727 12: seq: 1b, trsync_set_timeout oid=6 clock=582379304 Sent 25 176002.096169 176002.095983 12: seq: 1c, trsync_set_timeout oid=6 clock=582469311 Sent 26 176002.103694 176002.103508 12: seq: 1d, trsync_set_timeout oid=6 clock=582559314 Sent 27 176002.111152 176002.110966 12: seq: 1e, trsync_set_timeout oid=6 clock=582649319 Sent 28 176002.118703 176002.118517 12: seq: 1f, trsync_set_timeout oid=6 clock=582739322 Sent 29 176002.125984 176002.125877 8: seq: 10, trsync_trigger oid=6 reason=2 Sent 30 176002.126466 176002.126264 14: seq: 11, endstop_home oid=5 clock=0 sample_ticks=0 sample_count=0 rest_ticks=0 pin_value=0 trsync_oid=0 trigger_reason=0 Sent 31 176002.126720 176002.126613 8: seq: 12, trsync_trigger oid=6 reason=2 Sent 32 176002.132210 176002.132111 7: seq: 13, endstop_query_state oid=5 Sent 33 176002.312010 176002.311475 38: seq: 14, trsync_start oid=6 report_clock=587710459 report_ticks=90000 expire_reason=4, trsync_set_timeout oid=6 clock=588010459, endstop_home oid=5 clock=587710459 sample_ticks=180 sample_count=4 rest_ticks=6001 pin_value=1 trsync_oid=6 trigger_reason=1 Sent 34 176002.569193 176002.569007 12: seq: 15, trsync_set_timeout oid=6 clock=588145194 Sent 35 176002.576674 176002.576488 12: seq: 16, trsync_set_timeout oid=6 clock=588235197 Sent 36 176002.584212 176002.584026 12: seq: 17, trsync_set_timeout oid=6 clock=588325203 Sent 37 176002.593013 176002.592827 12: seq: 18, trsync_set_timeout oid=6 clock=588415208 Sent 38 176002.599230 176002.599044 12: seq: 19, trsync_set_timeout oid=6 clock=588505212 Sent 39 176002.606756 176002.606570 12: seq: 1a, trsync_set_timeout oid=6 clock=588595215 Sent 40 176002.614193 176002.614007 12: seq: 1b, trsync_set_timeout oid=6 clock=588685221 Sent 41 176002.621700 176002.621514 12: seq: 1c, trsync_set_timeout oid=6 clock=588775225 Sent 42 176002.629183 176002.628997 12: seq: 1d, trsync_set_timeout oid=6 clock=588865230 Sent 43 176002.636683 176002.636497 12: seq: 1e, trsync_set_timeout oid=6 clock=588955234 Sent 44 176002.644191 176002.644005 12: seq: 1f, trsync_set_timeout oid=6 clock=589045237 Sent 45 176002.651657 176002.651471 12: seq: 10, trsync_set_timeout oid=6 clock=589135245 Sent 46 176002.659180 176002.658994 12: seq: 11, trsync_set_timeout oid=6 clock=589225248 Sent 47 176002.666714 176002.666528 12: seq: 12, trsync_set_timeout oid=6 clock=589315252 Sent 48 176002.674187 176002.674001 12: seq: 13, trsync_set_timeout oid=6 clock=589405255 Sent 49 176002.681673 176002.681487 12: seq: 14, trsync_set_timeout oid=6 clock=589495261 Sent 50 176002.684601 176002.684510 6: seq: 15, get_clock Sent 51 176002.689197 176002.689011 12: seq: 16, trsync_set_timeout oid=6 clock=589585668 Sent 52 176002.696675 176002.696489 12: seq: 17, trsync_set_timeout oid=6 clock=589675673 Sent 53 176002.704172 176002.703986 12: seq: 18, trsync_set_timeout oid=6 clock=589765676 Sent 54 176002.711678 176002.711492 12: seq: 19, trsync_set_timeout oid=6 clock=589855682 Sent 55 176002.719172 176002.718986 12: seq: 1a, trsync_set_timeout oid=6 clock=589945686 Sent 56 176002.726748 176002.726562 12: seq: 1b, trsync_set_timeout oid=6 clock=590035691 Sent 57 176002.734175 176002.733989 12: seq: 1c, trsync_set_timeout oid=6 clock=590125693 Sent 58 176002.741708 176002.741522 12: seq: 1d, trsync_set_timeout oid=6 clock=590215699 Sent 59 176002.749182 176002.748996 12: seq: 1e, trsync_set_timeout oid=6 clock=590305705 Sent 60 176002.756704 176002.756518 12: seq: 1f, trsync_set_timeout oid=6 clock=590395710 Sent 61 176002.764170 176002.763984 12: seq: 10, trsync_set_timeout oid=6 clock=590485713 Sent 62 176002.772635 176002.772449 12: seq: 11, trsync_set_timeout oid=6 clock=590575717 Sent 63 176002.779247 176002.779061 12: seq: 12, trsync_set_timeout oid=6 clock=590665721 Sent 64 176002.782235 176002.782128 8: seq: 13, trsync_trigger oid=6 reason=2 Sent 65 176002.782619 176002.782417 14: seq: 14, endstop_home oid=5 clock=0 sample_ticks=0 sample_count=0 rest_ticks=0 pin_value=0 trsync_oid=0 trigger_reason=0 Sent 66 176002.782726 176002.782579 8: seq: 15, trsync_trigger oid=6 reason=2 Sent 67 176002.788119 176002.788020 7: seq: 16, endstop_query_state oid=5 Sent 68 176003.668653 176003.668562 6: seq: 17, get_clock Sent 69 176004.653197 176004.653106 6: seq: 18, get_clock Sent 70 176005.637818 176005.637727 6: seq: 19, get_clock Sent 71 176006.622236 176006.622145 6: seq: 1a, get_clock Sent 72 176007.607041 176007.606950 6: seq: 1b, get_clock Sent 73 176008.591850 176008.591759 6: seq: 1c, get_clock Sent 74 176009.576261 176009.576170 6: seq: 1d, get_clock Sent 75 176010.560795 176010.560704 6: seq: 1e, get_clock Sent 76 176011.545581 176011.545490 6: seq: 1f, get_clock Sent 77 176012.530523 176012.530432 6: seq: 10, get_clock Sent 78 176013.514780 176013.514689 6: seq: 11, get_clock Sent 79 176014.499628 176014.499537 6: seq: 12, get_clock Sent 80 176015.483877 176015.483786 6: seq: 13, get_clock Sent 81 176016.468812 176016.468721 6: seq: 14, get_clock Sent 82 176017.452831 176017.452740 6: seq: 15, get_clock Sent 83 176018.437006 176018.436915 6: seq: 16, get_clock Sent 84 176019.421191 176019.421100 6: seq: 17, get_clock Sent 85 176020.406111 176020.406020 6: seq: 18, get_clock Sent 86 176021.391013 176021.390922 6: seq: 19, get_clock Sent 87 176022.375391 176022.375300 6: seq: 1a, get_clock Sent 88 176023.359768 176023.359677 6: seq: 1b, get_clock Sent 89 176024.344353 176024.344262 6: seq: 1c, get_clock Sent 90 176025.328376 176025.328285 6: seq: 1d, get_clock Sent 91 176026.312518 176026.312427 6: seq: 1e, get_clock Sent 92 176027.297323 176027.297232 6: seq: 1f, get_clock Sent 93 176028.281389 176028.281298 6: seq: 10, get_clock Sent 94 176029.265685 176029.265594 6: seq: 11, get_clock Sent 95 176030.250433 176030.250342 6: seq: 12, get_clock Sent 96 176031.234812 176031.234721 6: seq: 13, get_clock Sent 97 176032.219720 176032.219629 6: seq: 14, get_clock Sent 98 176033.204240 176033.204149 6: seq: 15, get_clock Sent 99 176033.978063 176033.977972 6: seq: 16, emergency_stop Dumping receive queue 100 messages Receive: 0 176022.878564 176022.375391 15: seq: 1b, analog_in_state oid=12 next_clock=835081912 value=30992 Receive: 1 176023.138586 176022.375391 15: seq: 1b, analog_in_state oid=8 next_clock=838201912 value=30745 Receive: 2 176023.178553 176022.375391 15: seq: 1b, analog_in_state oid=12 next_clock=838681912 value=30993 Receive: 3 176023.360010 176023.359768 11: seq: 1c, clock clock=837343603 Receive: 4 176023.438538 176023.359768 15: seq: 1c, analog_in_state oid=8 next_clock=841801912 value=30745 Receive: 5 176023.478564 176023.359768 15: seq: 1c, analog_in_state oid=12 next_clock=842281912 value=30993 Receive: 6 176023.587534 176023.359768 17: seq: 1c, counter_state oid=2 next_clock=840091912 count=1 count_clock=59861896 Receive: 7 176023.738583 176023.359768 15: seq: 1c, analog_in_state oid=8 next_clock=845401912 value=30737 Receive: 8 176023.778531 176023.359768 15: seq: 1c, analog_in_state oid=12 next_clock=845881912 value=30993 Receive: 9 176024.038547 176023.359768 15: seq: 1c, analog_in_state oid=8 next_clock=849001912 value=30743 Receive: 10 176024.078522 176023.359768 15: seq: 1c, analog_in_state oid=12 next_clock=849481912 value=30993 Receive: 11 176024.338515 176023.359768 15: seq: 1c, analog_in_state oid=8 next_clock=852601912 value=30743 Receive: 12 176024.344576 176024.344353 11: seq: 1d, clock clock=849158799 Receive: 13 176024.378732 176024.344353 15: seq: 1d, analog_in_state oid=12 next_clock=853081912 value=30994 Receive: 14 176024.481301 176024.344353 14: seq: 1d, stats count=237 sum=32656 sumsq=68259 Receive: 15 176024.587977 176024.344353 17: seq: 1d, counter_state oid=2 next_clock=852097912 count=1 count_clock=59861896 Receive: 16 176024.638508 176024.344353 15: seq: 1d, analog_in_state oid=8 next_clock=856201912 value=30743 Receive: 17 176024.678504 176024.344353 15: seq: 1d, analog_in_state oid=12 next_clock=856681912 value=30993 Receive: 18 176024.938530 176024.344353 15: seq: 1d, analog_in_state oid=8 next_clock=859801912 value=30743 Receive: 19 176024.978528 176024.344353 15: seq: 1d, analog_in_state oid=12 next_clock=860281912 value=30993 Receive: 20 176025.238540 176024.344353 15: seq: 1d, analog_in_state oid=8 next_clock=863401912 value=30746 Receive: 21 176025.278544 176024.344353 15: seq: 1d, analog_in_state oid=12 next_clock=863881912 value=30992 Receive: 22 176025.328643 176025.328376 11: seq: 1e, clock clock=860967891 Receive: 23 176025.538487 176025.328376 15: seq: 1e, analog_in_state oid=8 next_clock=867001912 value=30744 Receive: 24 176025.578473 176025.328376 15: seq: 1e, analog_in_state oid=12 next_clock=867481912 value=30993 Receive: 25 176025.588492 176025.328376 17: seq: 1e, counter_state oid=2 next_clock=864103912 count=1 count_clock=59861896 Receive: 26 176025.838487 176025.328376 15: seq: 1e, analog_in_state oid=8 next_clock=870601912 value=30746 Receive: 27 176025.878472 176025.328376 15: seq: 1e, analog_in_state oid=12 next_clock=871081912 value=30993 Receive: 28 176026.138478 176025.328376 15: seq: 1e, analog_in_state oid=8 next_clock=874201912 value=30738 Receive: 29 176026.178495 176025.328376 15: seq: 1e, analog_in_state oid=12 next_clock=874681912 value=30993 Receive: 30 176026.312765 176026.312518 11: seq: 1f, clock clock=872777364 Receive: 31 176026.438453 176026.312518 15: seq: 1f, analog_in_state oid=8 next_clock=877801912 value=30747 Receive: 32 176026.478462 176026.312518 15: seq: 1f, analog_in_state oid=12 next_clock=878281912 value=30992 Receive: 33 176026.588952 176026.312518 17: seq: 1f, counter_state oid=2 next_clock=876109912 count=1 count_clock=59861896 Receive: 34 176026.738476 176026.312518 15: seq: 1f, analog_in_state oid=8 next_clock=881401912 value=30742 Receive: 35 176026.778458 176026.312518 15: seq: 1f, analog_in_state oid=12 next_clock=881881912 value=30994 Receive: 36 176027.038450 176026.312518 15: seq: 1f, analog_in_state oid=8 next_clock=885001912 value=30742 Receive: 37 176027.078445 176026.312518 15: seq: 1f, analog_in_state oid=12 next_clock=885481912 value=30992 Receive: 38 176027.297579 176027.297323 11: seq: 10, clock clock=884595433 Receive: 39 176027.338441 176027.297323 15: seq: 10, analog_in_state oid=8 next_clock=888601912 value=30744 Receive: 40 176027.378733 176027.297323 15: seq: 10, analog_in_state oid=12 next_clock=889081912 value=30993 Receive: 41 176027.589404 176027.297323 17: seq: 10, counter_state oid=2 next_clock=888115912 count=1 count_clock=59861896 Receive: 42 176027.638433 176027.297323 15: seq: 10, analog_in_state oid=8 next_clock=892201912 value=30740 Receive: 43 176027.678442 176027.297323 15: seq: 10, analog_in_state oid=12 next_clock=892681912 value=30993 Receive: 44 176027.938419 176027.297323 15: seq: 10, analog_in_state oid=8 next_clock=895801912 value=30740 Receive: 45 176027.978446 176027.297323 15: seq: 10, analog_in_state oid=12 next_clock=896281912 value=30993 Receive: 46 176028.238405 176027.297323 15: seq: 10, analog_in_state oid=8 next_clock=899401912 value=30742 Receive: 47 176028.278409 176027.297323 15: seq: 10, analog_in_state oid=12 next_clock=899881912 value=30993 Receive: 48 176028.281646 176028.281389 11: seq: 11, clock clock=896404549 Receive: 49 176028.538405 176028.281389 15: seq: 11, analog_in_state oid=8 next_clock=903001912 value=30747 Receive: 50 176028.578401 176028.281389 15: seq: 11, analog_in_state oid=12 next_clock=903481912 value=30996 Receive: 51 176028.589868 176028.281389 17: seq: 11, counter_state oid=2 next_clock=900121912 count=1 count_clock=59861896 Receive: 52 176028.838397 176028.281389 15: seq: 11, analog_in_state oid=8 next_clock=906601912 value=30748 Receive: 53 176028.878400 176028.281389 15: seq: 11, analog_in_state oid=12 next_clock=907081912 value=30993 Receive: 54 176029.138414 176028.281389 15: seq: 11, analog_in_state oid=8 next_clock=910201912 value=30746 Receive: 55 176029.178392 176028.281389 15: seq: 11, analog_in_state oid=12 next_clock=910681912 value=30992 Receive: 56 176029.265952 176029.265685 11: seq: 12, clock clock=908216523 Receive: 57 176029.438392 176029.265685 15: seq: 12, analog_in_state oid=8 next_clock=913801912 value=30742 Receive: 58 176029.478404 176029.265685 15: seq: 12, analog_in_state oid=12 next_clock=914281912 value=30992 Receive: 59 176029.481197 176029.265685 14: seq: 12, stats count=234 sum=32399 sumsq=67375 Receive: 60 176029.590348 176029.265685 17: seq: 12, counter_state oid=2 next_clock=912127912 count=1 count_clock=59861896 Receive: 61 176029.738368 176029.265685 15: seq: 12, analog_in_state oid=8 next_clock=917401912 value=30745 Receive: 62 176029.780616 176029.265685 15: seq: 12, analog_in_state oid=12 next_clock=917881912 value=30994 Receive: 63 176030.038361 176029.265685 15: seq: 12, analog_in_state oid=8 next_clock=921001912 value=30745 Receive: 64 176030.078368 176029.265685 15: seq: 12, analog_in_state oid=12 next_clock=921481912 value=30993 Receive: 65 176030.250659 176030.250433 11: seq: 13, clock clock=920033746 Receive: 66 176030.338361 176030.250433 15: seq: 13, analog_in_state oid=8 next_clock=924601912 value=30741 Receive: 67 176030.378761 176030.250433 15: seq: 13, analog_in_state oid=12 next_clock=925081912 value=30992 Receive: 68 176030.591183 176030.250433 17: seq: 13, counter_state oid=2 next_clock=924133912 count=1 count_clock=59861896 Receive: 69 176030.638358 176030.250433 15: seq: 13, analog_in_state oid=8 next_clock=928201912 value=30746 Receive: 70 176030.678383 176030.250433 15: seq: 13, analog_in_state oid=12 next_clock=928681912 value=30993 Receive: 71 176030.938364 176030.250433 15: seq: 13, analog_in_state oid=8 next_clock=931801912 value=30748 Receive: 72 176030.978364 176030.250433 15: seq: 13, analog_in_state oid=12 next_clock=932281912 value=30993 Receive: 73 176031.235057 176031.234812 11: seq: 14, clock clock=931846568 Receive: 74 176031.238322 176031.234812 15: seq: 14, analog_in_state oid=8 next_clock=935401912 value=30741 Receive: 75 176031.278321 176031.234812 15: seq: 14, analog_in_state oid=12 next_clock=935881912 value=30994 Receive: 76 176031.538324 176031.234812 15: seq: 14, analog_in_state oid=8 next_clock=939001912 value=30749 Receive: 77 176031.578313 176031.234812 15: seq: 14, analog_in_state oid=12 next_clock=939481912 value=30993 Receive: 78 176031.591278 176031.234812 17: seq: 14, counter_state oid=2 next_clock=936139912 count=1 count_clock=59861896 Receive: 79 176031.838314 176031.234812 15: seq: 14, analog_in_state oid=8 next_clock=942601912 value=30748 Receive: 80 176031.878307 176031.234812 15: seq: 14, analog_in_state oid=12 next_clock=943081912 value=30994 Receive: 81 176032.138345 176031.234812 15: seq: 14, analog_in_state oid=8 next_clock=946201912 value=30742 Receive: 82 176032.178335 176031.234812 15: seq: 14, analog_in_state oid=12 next_clock=946681912 value=30993 Receive: 83 176032.219980 176032.219720 11: seq: 15, clock clock=943665781 Receive: 84 176032.438299 176032.219720 15: seq: 15, analog_in_state oid=8 next_clock=949801912 value=30744 Receive: 85 176032.478300 176032.219720 15: seq: 15, analog_in_state oid=12 next_clock=950281912 value=30993 Receive: 86 176032.591788 176032.219720 17: seq: 15, counter_state oid=2 next_clock=948145912 count=1 count_clock=59861896 Receive: 87 176032.738294 176032.219720 15: seq: 15, analog_in_state oid=8 next_clock=953401912 value=30749 Receive: 88 176032.780757 176032.219720 15: seq: 15, analog_in_state oid=12 next_clock=953881912 value=30993 Receive: 89 176033.038279 176032.219720 15: seq: 15, analog_in_state oid=8 next_clock=957001912 value=30745 Receive: 90 176033.078284 176032.219720 15: seq: 15, analog_in_state oid=12 next_clock=957481912 value=30992 Receive: 91 176033.204465 176033.204240 11: seq: 16, clock clock=955480350 Receive: 92 176033.338273 176033.204240 15: seq: 16, analog_in_state oid=8 next_clock=960601912 value=30739 Receive: 93 176033.378818 176033.204240 15: seq: 16, analog_in_state oid=12 next_clock=961081912 value=30992 Receive: 94 176033.592231 176033.204240 17: seq: 16, counter_state oid=2 next_clock=960151912 count=1 count_clock=59861896 Receive: 95 176033.638290 176033.204240 15: seq: 16, analog_in_state oid=8 next_clock=964201912 value=30741 Receive: 96 176033.678285 176033.204240 15: seq: 16, analog_in_state oid=12 next_clock=964681912 value=30994 Receive: 97 176033.938264 176033.204240 15: seq: 16, analog_in_state oid=8 next_clock=967801912 value=30745 Receive: 98 176033.978400 176033.204240 15: seq: 16, analog_in_state oid=12 next_clock=968281912 value=30993 Receive: 99 176033.978627 176033.978063 12: seq: 17, shutdown clock=964766618 static_string_id=Command request MCU 'HBB' shutdown: Command request clocksync state: mcu_freq=12000000 last_clock=958702865 clock_est=(176011.979 700422290 12000355.572) min_half_rtt=0.000051 min_rtt_time=176007.905 time_avg=176011.979(214.764) clock_avg=700422290.067(2577238842.604) pred_variance=26459206.987 clock_adj=(0.061 12000615.750) Dumping serial stats: bytes_write=1099 bytes_read=4991 bytes_retransmit=9 bytes_invalid=0 send_seq=145 receive_seq=145 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 Dumping send queue 100 messages Sent 0 175992.722374 175992.722374 9: seq: 1d, identify offset=1280 count=40 Sent 1 175992.722561 175992.722561 9: seq: 1e, identify offset=1320 count=40 Sent 2 175992.722778 175992.722778 9: seq: 1f, identify offset=1360 count=40 Sent 3 175992.722998 175992.722998 9: seq: 10, identify offset=1400 count=40 Sent 4 175992.723189 175992.723189 9: seq: 11, identify offset=1440 count=40 Sent 5 175992.723365 175992.723365 9: seq: 12, identify offset=1480 count=40 Sent 6 175992.723583 175992.723583 9: seq: 13, identify offset=1520 count=40 Sent 7 175992.723760 175992.723760 9: seq: 14, identify offset=1560 count=40 Sent 8 175992.723961 175992.723961 9: seq: 15, identify offset=1600 count=40 Sent 9 175992.724126 175992.724126 9: seq: 16, identify offset=1640 count=40 Sent 10 175992.724288 175992.724288 9: seq: 17, identify offset=1680 count=40 Sent 11 175992.724502 175992.724502 9: seq: 18, identify offset=1720 count=40 Sent 12 175992.724679 175992.724679 9: seq: 19, identify offset=1760 count=40 Sent 13 175992.724877 175992.724877 9: seq: 1a, identify offset=1800 count=40 Sent 14 175992.725071 175992.725071 9: seq: 1b, identify offset=1840 count=40 Sent 15 175992.725266 175992.725266 9: seq: 1c, identify offset=1880 count=40 Sent 16 175992.725445 175992.725445 9: seq: 1d, identify offset=1920 count=40 Sent 17 175992.725637 175992.725637 9: seq: 1e, identify offset=1960 count=40 Sent 18 175992.725807 175992.725807 9: seq: 1f, identify offset=2000 count=40 Sent 19 175992.726007 175992.726007 9: seq: 10, identify offset=2040 count=40 Sent 20 175992.726168 175992.726168 9: seq: 11, identify offset=2080 count=40 Sent 21 175992.726365 175992.726365 9: seq: 12, identify offset=2120 count=40 Sent 22 175992.726565 175992.726565 9: seq: 13, identify offset=2160 count=40 Sent 23 175992.726779 175992.726779 9: seq: 14, identify offset=2200 count=40 Sent 24 175992.727005 175992.727005 9: seq: 15, identify offset=2240 count=40 Sent 25 175992.727195 175992.727195 9: seq: 16, identify offset=2280 count=40 Sent 26 175992.727414 175992.727414 9: seq: 17, identify offset=2320 count=40 Sent 27 175992.727624 175992.727624 9: seq: 18, identify offset=2360 count=40 Sent 28 175992.727814 175992.727814 9: seq: 19, identify offset=2400 count=40 Sent 29 175992.728004 175992.728004 9: seq: 1a, identify offset=2440 count=40 Sent 30 175992.728706 175992.728706 9: seq: 1b, identify offset=2480 count=40 Sent 31 175992.728984 175992.728984 9: seq: 1c, identify offset=2520 count=40 Sent 32 175992.729168 175992.729168 9: seq: 1d, identify offset=2560 count=40 Sent 33 175992.729369 175992.729369 9: seq: 1e, identify offset=2600 count=40 Sent 34 175992.729550 175992.729550 9: seq: 1f, identify offset=2640 count=40 Sent 35 175992.729743 175992.729743 9: seq: 10, identify offset=2680 count=40 Sent 36 175992.729984 175992.729984 9: seq: 11, identify offset=2720 count=40 Sent 37 175992.730170 175992.730170 9: seq: 12, identify offset=2760 count=40 Sent 38 175992.730361 175992.730361 9: seq: 13, identify offset=2800 count=40 Sent 39 175992.730561 175992.730561 9: seq: 14, identify offset=2840 count=40 Sent 40 175992.730765 175992.730765 9: seq: 15, identify offset=2880 count=40 Sent 41 175992.730994 175992.730994 9: seq: 16, identify offset=2920 count=40 Sent 42 175992.731184 175992.731184 9: seq: 17, identify offset=2950 count=40 Sent 43 175992.732726 175992.732726 6: seq: 18, get_uptime Sent 44 175992.783115 175992.783115 6: seq: 19, get_clock Sent 45 175992.833939 175992.833939 6: seq: 1a, get_clock Sent 46 175992.884406 175992.884406 6: seq: 1b, get_clock Sent 47 175992.934781 175992.934781 6: seq: 1c, get_clock Sent 48 175992.985239 175992.985239 6: seq: 1d, get_clock Sent 49 175993.035654 175993.035654 6: seq: 1e, get_clock Sent 50 175993.086761 175993.086761 6: seq: 1f, get_clock Sent 51 175993.137185 175993.137185 6: seq: 10, get_clock Sent 52 175993.138202 175993.138202 6: seq: 11, get_clock Sent 53 175993.142307 175993.142307 6: seq: 12, get_config Sent 54 175993.142923 175993.142923 52: seq: 13, buttons_add oid=1 pos=0 pin=gpio25 pull_up=0, buttons_add oid=1 pos=1 pin=gpio26 pull_up=0, buttons_add oid=1 pos=2 pin=gpio27 pull_up=0, buttons_add oid=1 pos=3 pin=gpio19 pull_up=0, buttons_add oid=1 pos=4 pin=gpio18 pull_up=0, buttons_add oid=1 pos=5 pin=gpio13 pull_up=0, buttons_add oid=1 pos=6 pin=gpio12 pull_up=0, buttons_query oid=1 clock=491409573 rest_ticks=24000 retransmit_count=50 invert=0 Sent 55 175993.247920 175993.247920 14: seq: 14, neopixel_update oid=0 pos=0 data=b'\x00\x00\x00\x00\x00' Sent 56 175993.253468 175993.253468 27: seq: 15, neopixel_update oid=0 pos=5 data=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', neopixel_send oid=0 Sent 57 175994.123024 175994.123024 6: seq: 16, get_clock Sent 58 175994.564247 175994.564247 8: seq: 17, buttons_ack oid=1 count=1 Sent 59 175995.107478 175995.107478 6: seq: 18, get_clock Sent 60 175996.091556 175996.091556 6: seq: 19, get_clock Sent 61 175997.075471 175997.075471 6: seq: 1a, get_clock Sent 62 175998.060160 175998.060160 6: seq: 1b, get_clock Sent 63 175999.044612 175999.044612 6: seq: 1c, get_clock Sent 64 176000.028976 176000.028976 6: seq: 1d, get_clock Sent 65 176001.013699 176001.013699 6: seq: 1e, get_clock Sent 66 176001.998644 176001.998644 6: seq: 1f, get_clock Sent 67 176002.983011 176002.983011 6: seq: 10, get_clock Sent 68 176003.967118 176003.967118 6: seq: 11, get_clock Sent 69 176004.951329 176004.951329 6: seq: 12, get_clock Sent 70 176005.936265 176005.936265 6: seq: 13, get_clock Sent 71 176006.920636 176006.920636 6: seq: 14, get_clock Sent 72 176007.905483 176007.905483 6: seq: 15, get_clock Sent 73 176008.890363 176008.890363 6: seq: 16, get_clock Sent 74 176009.875266 176009.875266 6: seq: 17, get_clock Sent 75 176010.859543 176010.859543 6: seq: 18, get_clock Sent 76 176011.844477 176011.844477 6: seq: 19, get_clock Sent 77 176012.828509 176012.828509 6: seq: 1a, get_clock Sent 78 176013.812637 176013.812637 6: seq: 1b, get_clock Sent 79 176014.796866 176014.796866 6: seq: 1c, get_clock Sent 80 176015.781686 176015.781686 6: seq: 1d, get_clock Sent 81 176016.765713 176016.765713 6: seq: 1e, get_clock Sent 82 176017.749740 176017.749740 6: seq: 1f, get_clock Sent 83 176018.733804 176018.733804 6: seq: 10, get_clock Sent 84 176019.718556 176019.718556 6: seq: 11, get_clock Sent 85 176020.703263 176020.703263 6: seq: 12, get_clock Sent 86 176021.687364 176021.687364 6: seq: 13, get_clock Sent 87 176022.672222 176022.672222 6: seq: 14, get_clock Sent 88 176023.656961 176023.656961 6: seq: 15, get_clock Sent 89 176024.641520 176024.641520 6: seq: 16, get_clock Sent 90 176025.625877 176025.625877 6: seq: 17, get_clock Sent 91 176026.610657 176026.610657 6: seq: 18, get_clock Sent 92 176027.594832 176027.594832 6: seq: 19, get_clock Sent 93 176028.579760 176028.579760 6: seq: 1a, get_clock Sent 94 176029.564143 176029.564143 6: seq: 1b, get_clock Sent 95 176030.548821 176030.548821 6: seq: 1c, get_clock Sent 96 176031.533593 176031.533593 6: seq: 1d, get_clock Sent 97 176032.517694 176032.517694 6: seq: 1e, get_clock Sent 98 176033.501948 176033.501948 6: seq: 1f, get_clock Sent 99 176033.977981 176033.977981 6: seq: 10, emergency_stop Dumping receive queue 100 messages Receive: 0 175992.723915 175992.723760 49: seq: 15, identify_response offset=1560 data=b'\x03\xc21\x99!\t&\x1b\x08yIP!\xd0\\\xd4k\xf57\x0b\x81\xca@`[\xfa\xd9\x84pU 7\xfdf\xf8\xa8e\xbe\xa6=' Receive: 1 175992.724083 175992.723961 49: seq: 16, identify_response offset=1600 data=b'\xa6\x9f(\x04{\x08\x14)\xa5\x9fU\x08W\x06\xda@T$H\xc6\xf5/\x1f\xaf\xdf\xe7\x7f\xff|\xf3+V>\x91\xfaw\xb6\xb8\xbd\xfe' Receive: 2 175992.724244 175992.724126 49: seq: 17, identify_response offset=1640 data=b'\x02G\x86>\x89T+\xed\xd3?o\xc9R\x12,\xf0\xef\xee\xaf\xee\xef\xf2\xbb/\xb7w\xbf\xe6\xef\xae\xeenp9\xc3\xe5\x9bO\x9fn' Receive: 3 175992.724450 175992.724288 49: seq: 18, identify_response offset=1680 data=b">\xe7\xef>\xde\xff#\xbf\xf9\xf1'X\x8f\xbfbE2A\x8d\xa4\xaax\xd5\x8a\xd3\x99\xb7\x1e\xa2\x0c(CGFS-\x80\xdc\xa4\xfc" Receive: 4 175992.724633 175992.724502 49: seq: 19, identify_response offset=1720 data=b'\x1b\xf9\xb5\xa4\x11\xd5\x1dZ\xf7)\xa7F%\xcfhtPE\x8aV\xdb\r\x8d\x1eT\r\xa8\x951\xa6GP\xedbz\x05\x15,\xa6g' Receive: 5 175992.724832 175992.724679 49: seq: 1a, identify_response offset=1760 data=b'P\x95bz\x07\x95F\xb9\tp\xf7\xc6G\xdc\xdf\xdc\x02]W\xf7_>+R\x01\r\xa54\x8b\xcb\x7fGg\xcb\xe8?_g\xd1\x0c' Receive: 6 175992.725028 175992.724877 49: seq: 1b, identify_response offset=1800 data=b'\xaa]\xd5p\x8c\x97\xcb\xa5"\xad\x90i\xb4ZW\x8a\xb8\xb1\xe6i\x14\'\x80Y\xa2OiNhm\x8c\xd4\xa2\xe6\x84\xd6\xab\x84F\xc4' Receive: 7 175992.725223 175992.725071 49: seq: 1c, identify_response offset=1840 data=b'\t\xad\x1b\x14r\x90\xc2\x94F\x98\xcb\xe0\x8d\x90\x84\t\xf4\xb9\x03\xd4\xbc\xb9\xa84\x05Ly\xc3\x1de\xba\xd4"\xbb\xaaE!\xb10\x06' Receive: 8 175992.725403 175992.725266 49: seq: 1d, identify_response offset=1880 data=b'\xd1b\xc4fE\x8d^\xfe\x95\x1d\n\xa9\xd6x[<\xd4\xbc\xa2\xae\xcb\x95\xde4\xd5cE\xfc\xba.Z\xd6v#\x83X\xc00\x9e2' Receive: 9 175992.725580 175992.725445 49: seq: 1e, identify_response offset=1920 data=b'H\x01(\xee3\xe5\xd2\xd9\xf3A\xc0\x98\\\xb3d=\x04\x17x\x92\x12\x168\xfb\xe7\x11\x93\x1e&\xc5\x1en\x85\x12\xa6\x18\x99\x90\x16\x11' Receive: 10 175992.725761 175992.725637 49: seq: 1f, identify_response offset=1960 data=b"\xea\xe6PU\xab\x81%\x82\xa2['!\xd2\xaa\xca\x8fT\xf6\x08\xcf\xf1\x96\x99\x86\x87=\x0f\x0c\xbc\xa6V0\xeb\x8bA\xc2\x96*\x80\x94" Receive: 11 175992.725963 175992.725807 49: seq: 10, identify_response offset=2000 data=b'\xc6\x98\x8d\x81C\x9a&G\xa5;?S\x9a\xc8LO\xd4\xb5h)[\xa3\xda\xc0@\xe9.\xb3\x92\x84[\x030|\xach8\xa4z\xd4' Receive: 12 175992.726125 175992.726007 49: seq: 11, identify_response offset=2040 data=b':1\x9b\xd80TRO\xbd[\x9a\xee\x89\x1b$\x18\xb6\xdcP\x0b\xdd\xb6m\xd0\xd9\x96\x1c%3G\xfb\xbaD\xb3H-=\xac\x80o' Receive: 13 175992.726322 175992.726168 49: seq: 12, identify_response offset=2080 data=b"\x8c\xd4\x13\xd5\xde\xacb'M\xa1\x83\x9dk\x7f\xd1\xc4I\x0c\xae\xde\xba\xce\xe5\xcb\x83\xe8\xf5m+\x8f\x8eY\xae\xee\xc1`\xb9~[\xbc" Receive: 14 175992.726522 175992.726365 49: seq: 13, identify_response offset=2120 data=b'\xa0\x12n\x0cc\xa9Uv\x0b\x85r\xb1\xe7\xa0o%dVF4@\xdb\xad\x90\x92\xc3\x93P\x98US\x8d\xaa\n\x871\x11e:\xc6' Receive: 15 175992.726733 175992.726565 49: seq: 14, identify_response offset=2160 data=b'+\xad\xe6O\x1c%\x829\xe8\xb7\x0f\x1c\x8a\xa1R\xba\xa9\xa1\xb1St\x8b\x1cW\xb99\x83\xd1\xb0\xab\xbbgJ\xee?\x80B\x17\x8c\xc8' Receive: 16 175992.726953 175992.726779 49: seq: 15, identify_response offset=2200 data=b'A\xdbQ\x8e\x00SV\xb5\xd1B\xf6\xdeS\x92K]\x02\xbd\n\xb8\xb8\xe5\xa5\xf2\x98\xca\xac\xd0\x9c*\xb1\x83\xbc\x10^\xb6\xb6\x01\xba\xba' Receive: 17 175992.727149 175992.727005 49: seq: 16, identify_response offset=2240 data=b'\x1b\xba\x06\x0ev\xc81\xb8\x139\x875$\xfc\xa9E\xc9\xe9\xcb\xc3g\xae\x89\x01\xb2\xf0\x90\x05\xec\x0b\xd4U\xac.\xee,\xc0\x11W\xd8' Receive: 18 175992.727371 175992.727195 49: seq: 17, identify_response offset=2280 data=b"\xb3\xa8kH\xa9J\x0e\xbb~3\x95\x92Dw\xd2r\xe6;'0\x0f\xbb\x03;#\xd9)\x04\x10B4Sc\xd6\x8cq\x00S\xeeL" Receive: 19 175992.727581 175992.727414 49: seq: 18, identify_response offset=2320 data=b'\xc3T\xb5n\xe02e\x99\xcaU\xf8\x9f1\xee\xb4\xa9\x8e]\xc7v\x85\xa2\x8e(\xc3N\xd5\xbd\xafJ\xe8\x12\x00P\xb5\x88\xa9\xb1{\xaf' Receive: 20 175992.727771 175992.727624 49: seq: 19, identify_response offset=2360 data=b"\xf8\x81'!\x9b\x94\\yG\xf5\x95\x07*\xf9\xa9}\x04P\xa1\xdc\x17~<\xf0\xd6\xa5\xdb\x00\x1d#]\x86\xa4Wv\x832?\xc8>" Receive: 21 175992.727962 175992.727814 49: seq: 1a, identify_response offset=2400 data=b'%+\xa5\x96\xa3\xeb\xa2\x92\x93\xe9\xda\x1a\xfc\xd2\x13\\\x80\xbeQ\xbb\x1bK\x10\x05\x1b\xa6\x93b\xfaf\x12t\xb6.\xd9Gpx\x10\x10' Receive: 22 175992.728288 175992.728004 49: seq: 1b, identify_response offset=2440 data=b'\x1f0\x8f\xddagS\xfe\x89\xd2e]\x9c2\x0c-\xfayXU\x9f\xab\xacG\xd4\x1f\xb1*\ng\x12\xbbF-\x18=\xa9F\t\xdb' Receive: 23 175992.728922 175992.728706 49: seq: 1c, identify_response offset=2480 data=b'\xca_\xc3\x0e\xf8b\xf5a\xe2\xc3\xd5\xf5{\xea7\x9b\x8e\xab\xaa*\x90ku1`,\xc0*\xeaD\xea\x8c\xa2"|\xb0\x7f\xad})' Receive: 24 175992.729123 175992.728984 49: seq: 1d, identify_response offset=2520 data=b'\x99\x0b\x16\x0c\x10j\x8ez\xbc\x18k GX\xc6\x9b4U\x91LO2\x15\xcch\x92\xa5J\xee0\xc9\xb25\x8c\x97_\xe1&\xd4\xf7' Receive: 25 175992.729325 175992.729168 49: seq: 1e, identify_response offset=2560 data=b'\x16%\xb8\xf8\xe9\xc3\x17\xf6\xd3\xa7_\x9e0\x93\x03\x8e\xf7\xe0$8}\xbe3m\xa0Y[D\x19w~\xaa\xee>O\xbc\xcfp\xb3#' Receive: 26 175992.729498 175992.729369 49: seq: 1f, identify_response offset=2600 data=b'\x85\xd7\xe4aj\x87\xea\xaas\xf5\xddH\xd5\xd7\xae\x8c\xd9\xda^3\x04&\xdd\rU\x85\x8ej\x9a\xe2\x9a\x91\xbe\xaa\x1e\xc1\x8f\xe4\xb6\x9e' Receive: 27 175992.729697 175992.729550 49: seq: 10, identify_response offset=2640 data=b'\x87\xd3\xaa_\xaezG\xdfC[\x9f\xd0\x83\xdc\xbd~\x8eQ\xc3t\xaa%(\xbem?"\xaf\x19\xa9Yb\xaa\xfe\xa9,U\xc7\x15\xc9C\xef\x01h\xfaM\xff\xedJ\xd9\x0b\x989d\\' Receive: 30 175992.730319 175992.730170 49: seq: 13, identify_response offset=2760 data=b'P\xcc\xfb\xc5\xb5\xc4\xb0\xdb\x96<\xe8f\x9ec]\xec\x9f\x99u\xb8\\\xbbG7\xa9L\tK\xad\x12\xff\xca\x87I\xb9\xff\x8az\x86\x90' Receive: 31 175992.730518 175992.730361 49: seq: 14, identify_response offset=2800 data=b'\xc3\x80\xef\xc8M\xcc\x91ZaU\xd9\xee\xbc\xa6ir\x9ef\xe1\xf6T\xff\xe4H\x90~\x8fl&\xd1x\xde\xb0\xf8C\rP-\x07p' Receive: 32 175992.730722 175992.730561 49: seq: 15, identify_response offset=2840 data=b"\x1e*w\xdb\xac)\xcd\x94Nq\xe5\xd4\xe8\x1f\xf9\x1b\xe9g\xe4z\x10A\x83\x82\xda\xc6\x02\x950\t\x9c\xc8\\\xa2'm{\xa2\x08\xa0" Receive: 33 175992.730951 175992.730765 49: seq: 16, identify_response offset=2880 data=b'\xc5\x9c\xb8\xbe\xc51\t\xd8\xb1 \xf4S\xbf\x17\xe1T\xad,lc\xe4t\x9b\xdc\xd3\x04G\x06 \x04G\x1e\x7f\x04G=\xff\x04G^\xfe\x04G\x8a\xbe' Receive: 44 176031.556158 176031.479670 61: seq: 19, sensor_bulk_data oid=1 sequence=10 data=b'\x04G\x9c\x9d\x04G\xcc\x9b\x04G\xe0\xbd\x04H\x02Z\x04H)\xde\x04H>\x9c\x04Hf\xbb\x04H\x8e\xd9\x04H\xba\x9c\x04H\xe2\xbb\x04H\xf4\x96\x04I&\x1b\x04I:\x12' Receive: 45 176031.581113 176031.579962 17: seq: 1a, sensor_bulk_status oid=1 clock=935822188 query_ticks=1554 next_sequence=11 buffered=24 possible_overflows=0 Receive: 46 176031.608201 176031.579962 61: seq: 1a, sensor_bulk_data oid=1 sequence=11 data=b'\x04I]2\x04I\x96\x98\x04I\xbb\x0e\x04I\xec\x97\x04J\r\x9e\x04J7\x0f\x04J`\xbc\x04J\x95\xb3\x04J\xb3\xd9\x04J\xae\x15\x04J\x91\x80\x04Jv<\x04J\x85/' Receive: 47 176031.662173 176031.579962 61: seq: 1a, sensor_bulk_data oid=1 sequence=12 data=b'\x04J\x8a\xf3\x04J\x9f\xaa\x04J\x9c\xc8\x04J\x9bw\x04J\xa3U\x04J\x8b\xbc\x04J\x92\xd1\x04J\x9bw\x04J\x98\x95\x04J\xa1<\x04J\xa7\x00\x04J\x92\xd1\x04J\x92\xd1' Receive: 48 176031.682122 176031.680375 17: seq: 1b, sensor_bulk_status oid=1 clock=937034298 query_ticks=1554 next_sequence=13 buffered=20 possible_overflows=0 Receive: 49 176031.714169 176031.680375 61: seq: 1b, sensor_bulk_data oid=1 sequence=13 data=b'\x04J\x9bw\x04J\xa0s\x04J\xa9\x19\x04J\x9d\x91\x04J\x97\xcd\x04J\x9bw\x04J\xa0s\x04J\xa4\xa6\x04J\xadL\x04J\xa9\xe2\x04J\x9d\x91\x04J\xa3U\x04J\xac\xc4' Receive: 50 176031.766164 176031.680375 61: seq: 1b, sensor_bulk_data oid=1 sequence=14 data=b'\x04J\xa3U\x04J\xab3\x04J\xa0s\x04J\xa5o\x04J\xae\x15\x04J\xa5o\x04J\xb5\xf3\x04J\xaaj\x04J\xa1<\x04J\xa7\x00\x04J\xaaj\x04J\xaaj\x04J\xaff' Receive: 51 176031.782129 176031.781096 17: seq: 1c, sensor_bulk_status oid=1 clock=938234892 query_ticks=1554 next_sequence=15 buffered=12 possible_overflows=0 Receive: 52 176031.789120 176031.781096 14: seq: 1c, analog_in_state oid=3 next_clock=941843042 value=6770 Receive: 53 176031.799144 176031.781096 15: seq: 1c, analog_in_state oid=4 next_clock=941963042 value=30417 Receive: 54 176031.820179 176031.781096 61: seq: 1c, sensor_bulk_data oid=1 sequence=15 data=b'\x04J\xb3\x11\x04J\xa8Q\x04J\x9f\xaa\x04J\xadL\x04J\xae\x15\x04J\xb9\x9e\x04J\xa7\x88\x04J\xb5\xf3\x04J\xb3\x11\x04J\xb3\x11\x04J\xb0\xf7\x04J\xb3\x11\x04J\xb5*' Receive: 55 176031.872209 176031.781096 61: seq: 1c, sensor_bulk_data oid=1 sequence=16 data=b'\x04J\xb8\x0c\x04J\xc4^\x04J\xb3\x11\x04J\xbf\xea\x04J\xb5*\x04J\xb8\xd5\x04J\xbd\xd0\x04J\xbe\x99\x04J\xc7\xc7\x04J\xc8\x90\x04J\xbd\xd0\x04J\xb0.\x04J\xc2\xcc' Receive: 56 176031.883131 176031.881687 17: seq: 1d, sensor_bulk_status oid=1 clock=939446519 query_ticks=1554 next_sequence=17 buffered=8 possible_overflows=0 Receive: 57 176031.905252 176031.904466 11: seq: 1e, clock clock=939722524 Receive: 58 176031.926180 176031.904466 61: seq: 1e, sensor_bulk_data oid=1 sequence=17 data=b'\x04J\xc5\xae\x04J\xc0\xb3\x04J\xbc\x80\x04J\xc3\x95\x04J\xbd\xd0\x04J\xbb\xb7\x04J\xd3P\x04J\xbb\xb7\x04J\xc0\xb3\x04J\xc2\xcc\x04J\xb8\xd5\x04J\xb5\xf3\x04J\xc3\x95' Receive: 59 176031.978188 176031.904466 61: seq: 1e, sensor_bulk_data oid=1 sequence=18 data=b'\x04J\xd17\x04J\xc2\xcc\x04J\xba\xee\x04J\xb8\x0c\x04J\xbd\xd0\x04J\xbe\x99\x04J\xc4^\x04J\xbfb\x04J\xb8\x0c\x04J\xba%\x04J\xbf\xea\x04J\xc3\x95\x04J\xc5\xae' Receive: 60 176031.983135 176031.981719 17: seq: 1f, sensor_bulk_status oid=1 clock=940646630 query_ticks=1554 next_sequence=19 buffered=4 possible_overflows=0 Receive: 61 176032.032176 176031.981719 61: seq: 1f, sensor_bulk_data oid=1 sequence=19 data=b'\x04J\xc2\xcc\x04J\xbf\xea\x04J\xc3\x95\x04J\xceU\x04J\xc2\xcc\x04J\xc1{\x04J\xc0\xb3\x04J\xc3\x95\x04J\xcf\x1e\x04J\xc4^\x04J\xbd\xd0\x04J\xc3\x95\x04J\xc8\x90' Receive: 62 176032.084161 176032.082700 17: seq: 10, sensor_bulk_status oid=1 clock=941858741 query_ticks=1554 next_sequence=20 buffered=52 possible_overflows=0 Receive: 63 176032.084282 176032.082700 61: seq: 10, sensor_bulk_data oid=1 sequence=20 data=b'\x04J\xcbr\x04J\xc2\xcc\x04J\xc6w\x04J\xd0n\x04J\xc1{\x04J\xc4^\x04J\xb8\x0c\x04J\xca\xa9\x04J\xca"\x04J\xd17\x04J\xd4\x19\x04J\xd6\xfb\x04J\xc2\xcc' Receive: 64 176032.089145 176032.082700 14: seq: 10, analog_in_state oid=3 next_clock=945443042 value=6768 Receive: 65 176032.099146 176032.082700 15: seq: 10, analog_in_state oid=4 next_clock=945563042 value=30426 Receive: 66 176032.136228 176032.082700 61: seq: 10, sensor_bulk_data oid=1 sequence=21 data=b'\x04J\xc6w\x04J\xb8\xd5\x04J\xb0\xf7\x04J\xc6w\x04J\xd0n\x04J\xdc\xc0\x04J\xcd\x8c\x04J\xd17\x04J\xca"\x04J\xd9\xde\x04J\xc5\xae\x04J\xd62\x04J\xc8\x90' Receive: 67 176032.184202 176032.182922 17: seq: 11, sensor_bulk_status oid=1 clock=943058848 query_ticks=1554 next_sequence=22 buffered=44 possible_overflows=0 Receive: 68 176032.190179 176032.182922 61: seq: 11, sensor_bulk_data oid=1 sequence=22 data=b'\x04J\xd3P\x04J\xceU\x04J\xdb\xf7\x04J\xe0\xf2\x04J\xdb\xf7\x04J\xde\xd9\x04J\xdb.\x04J\xde\x10\x04J\xd9\x15\x04J\xceU\x04J\xd3P\x04J\xe3\x0b\x04J\xdb.' Receive: 69 176032.242197 176032.182922 61: seq: 11, sensor_bulk_data oid=1 sequence=23 data=b'\x04J\xe0)\x04J\xdb\xf7\x04J\xdb.\x04J\xe6\xb7\x04J\xe5\xed\x04J\xd0n\x04J\xd4\x19\x04J\xd17\x04J\xe1\xbb\x04J\xde\xd9\x04J\xf2@\x04J\xf1w\x04J\xde\xd9' Receive: 70 176032.284199 176032.283006 17: seq: 12, sensor_bulk_status oid=1 clock=944258961 query_ticks=1554 next_sequence=24 buffered=40 possible_overflows=0 Receive: 71 176032.296186 176032.283006 61: seq: 12, sensor_bulk_data oid=1 sequence=24 data=b'\x04J\xe8\xd0\x04J\xddG\x04J\xdb.\x04J\xd9\xde\x04J\xdb\xf7\x04J\xf1w\x04J\xeb\xb2\x04J\xf4Y\x04J\xdb.\x04J\xf0\xad\x04J\xe6\xb7\x04J\xec{\x04J\xec{' Receive: 72 176032.348219 176032.283006 61: seq: 12, sensor_bulk_data oid=1 sequence=25 data=b'\x04J\xea\xe9\x04J\xeb\xb2\x04J\xf9T\x04J\xf5\xa8\x04J\xfa\xa4\x04J\xfc7\x04J\xfeO\x04J\xf9T\x04K\x04\xde\x04J\xf7;\x04J\xff\x19\x04K\x04\x14\x04K\x06\xf6' Receive: 73 176032.385161 176032.384001 17: seq: 13, sensor_bulk_status oid=1 clock=945471070 query_ticks=1554 next_sequence=26 buffered=36 possible_overflows=0 Receive: 74 176032.389153 176032.384001 14: seq: 13, analog_in_state oid=3 next_clock=949043042 value=6768 Receive: 75 176032.399163 176032.384001 15: seq: 13, analog_in_state oid=4 next_clock=949163042 value=30429 Receive: 76 176032.402188 176032.384001 61: seq: 13, sensor_bulk_data oid=1 sequence=26 data=b'\x04K\x06-\x04K\t\x0f\x04K\x15\xe8\x04K\x0b(\x04K\x11\xb6\x04J\xfbm\x04K\x11\xb6\x04K\t\x0f\x04K\x0f\x9e\x04K\x15c\x04K\t\x0f\x04K\t\xd9\x04K\t\xd9' Receive: 77 176032.454211 176032.384001 61: seq: 13, sensor_bulk_data oid=1 sequence=27 data=b'\x04K\x12\x80\x04K\x0b\xf2\x04K\x04\xde\x04J\xf8\x8b\x04J\xff\x19\x04K\n\xa2\x04J\xfeO\x04J\xf5\xa8\x04J\xe6\xb7\x04J\xe4\x9e\x04J\xe3\x0b\x04J\xe3\x0b\x04J\xe5\xed' Receive: 78 176032.485161 176032.484197 17: seq: 14, sensor_bulk_status oid=1 clock=946672389 query_ticks=1554 next_sequence=28 buffered=28 possible_overflows=0 Receive: 79 176032.506202 176032.484197 61: seq: 14, sensor_bulk_data oid=1 sequence=28 data=b'\x04J\xe7\x80\x04J\xd5i\x04J\xd8K\x04J\xd4\x19\x04J\xd6\xfb\x04J\xd5i\x04J\xde\x10\x04J\xde\x10\x04J\xc2\xcc\x04J\xc5\xae\x04J\xc8\x90\x04J\xdb.\x04J\xd4\xe2' Receive: 80 176032.516210 176032.484197 14: seq: 14, trsync_state oid=2 can_trigger=1 trigger_reason=0 clock=947054225 Receive: 81 176032.520216 176032.516221 14: seq: 15, trsync_state oid=2 can_trigger=0 trigger_reason=1 clock=947097876 Receive: 82 176032.521152 176032.520225 10: seq: 16, trsync_state oid=2 can_trigger=0 trigger_reason=1 clock=0 Receive: 83 176032.521246 176032.520543 13: seq: 18, ldc1612_home_state oid=1 homing=0 trigger_clock=947097841 Receive: 84 176032.522204 176032.521350 10: seq: 19, trsync_state oid=2 can_trigger=0 trigger_reason=1 clock=0 Receive: 85 176032.560207 176032.521350 61: seq: 19, sensor_bulk_data oid=1 sequence=29 data=b'\x04J\xd5i\x04J\xd5i\x04J\xdb.\x04J\xcbr\x04J\xd7\xc5\x04J\xd6\xfb\x04J\xc5\xae\x04J\xd3P\x04J\xd2\x00\x04J\xdb\xf7\x04J\xd3P\x04J\xceU\x04J\xca\xa9' Receive: 86 176032.586181 176032.584553 17: seq: 1a, sensor_bulk_status oid=1 clock=947883291 query_ticks=1554 next_sequence=30 buffered=24 possible_overflows=0 Receive: 87 176032.689185 176032.586593 14: seq: 1b, analog_in_state oid=3 next_clock=952643042 value=6773 Receive: 88 176032.699182 176032.586593 15: seq: 1b, analog_in_state oid=4 next_clock=952763042 value=30431 Receive: 89 176032.890234 176032.889399 11: seq: 1c, clock clock=951543606 Receive: 90 176032.989202 176032.889399 14: seq: 1c, analog_in_state oid=3 next_clock=956243042 value=6769 Receive: 91 176032.999190 176032.889399 15: seq: 1c, analog_in_state oid=4 next_clock=956363042 value=30425 Receive: 92 176033.289232 176032.889399 14: seq: 1c, analog_in_state oid=3 next_clock=959843042 value=6770 Receive: 93 176033.299215 176032.889399 15: seq: 1c, analog_in_state oid=4 next_clock=959963042 value=30430 Receive: 94 176033.589240 176032.889399 14: seq: 1c, analog_in_state oid=3 next_clock=963443042 value=6770 Receive: 95 176033.599244 176032.889399 15: seq: 1c, analog_in_state oid=4 next_clock=963563042 value=30424 Receive: 96 176033.875292 176033.874381 11: seq: 1d, clock clock=963364686 Receive: 97 176033.889291 176033.874381 14: seq: 1d, analog_in_state oid=3 next_clock=967043042 value=6771 Receive: 98 176033.899251 176033.874381 15: seq: 1d, analog_in_state oid=4 next_clock=967163042 value=30422 Receive: 99 176033.978611 176033.978022 12: seq: 1e, shutdown clock=964600803 static_string_id=Command request MCU 'mcu' shutdown: Command request clocksync state: mcu_freq=64000000 last_clock=5125441328 clock_est=(176011.633 3717133270 63998633.819) min_half_rtt=0.000056 min_rtt_time=176013.950 time_avg=176011.633(234.070) clock_avg=3717133270.704(14980170279.665) pred_variance=704218653.998 Dumping serial stats: bytes_write=34282 bytes_read=46787 bytes_retransmit=9 bytes_invalid=0 send_seq=2356 receive_seq=2356 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 Dumping send queue 100 messages Sent 0 176026.445848 176026.445848 8: seq: 10, reset_step_clock oid=7 clock=0 Sent 1 176026.447637 176026.447637 7: seq: 11, stepper_get_position oid=9 Sent 2 176026.447998 176026.447998 14: seq: 12, tmcuart_send oid=1 write=b'\xea\x1bH\xad\xa3' read=10 Sent 3 176026.452353 176026.452353 8: seq: 13, reset_step_clock oid=9 clock=0 Sent 4 176026.688757 176026.688757 63: seq: 14, set_next_step_dir oid=7 dir=1, set_next_step_dir oid=9 dir=0, queue_step oid=7 interval=401741280 count=1 add=0, queue_step oid=7 interval=36040 count=2 add=-9539, queue_step oid=9 interval=401741280 count=1 add=0, queue_step oid=9 interval=36040 count=2 add=-9539, queue_step oid=7 interval=19194 count=7 add=-1315, queue_step oid=9 interval=19194 count=7 add=-1315 Sent 5 176026.690918 176026.690918 61: seq: 15, queue_step oid=7 interval=10760 count=14 add=-259, queue_step oid=9 interval=10760 count=14 add=-259, queue_step oid=7 interval=8000 count=4015 add=0, queue_step oid=9 interval=8000 count=4015 add=0, queue_step oid=7 interval=8000 count=1524 add=0, queue_step oid=9 interval=8000 count=1524 add=0, queue_step oid=7 interval=8009 count=114 add=0, queue_step oid=9 interval=8009 count=114 add=0 Sent 6 176026.691328 176026.691328 61: seq: 16, queue_step oid=7 interval=9037 count=10 add=438, queue_step oid=9 interval=9037 count=10 add=438, queue_step oid=7 interval=14554 count=4 add=2440, queue_step oid=9 interval=14554 count=4 add=2440, queue_step oid=7 interval=26459 count=2 add=19391, queue_step oid=9 interval=26459 count=2 add=19391, queue_step oid=7 interval=2483643 count=1 add=0 Sent 7 176026.746754 176026.746754 13: seq: 17, get_clock, queue_step oid=7 interval=36068 count=1 add=0 Sent 8 176026.992024 176026.992024 14: seq: 18, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10 Sent 9 176026.996244 176026.996244 14: seq: 19, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 10 176027.013476 176027.013476 14: seq: 1a, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 11 176027.017626 176027.017626 14: seq: 1b, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 12 176027.021743 176027.021743 14: seq: 1c, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 13 176027.025898 176027.025898 14: seq: 1d, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 14 176027.103219 176027.103219 14: seq: 1e, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 15 176027.107372 176027.107372 14: seq: 1f, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 16 176027.731455 176027.731455 6: seq: 10, get_clock Sent 17 176027.992159 176027.992159 14: seq: 11, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10 Sent 18 176027.996321 176027.996321 14: seq: 12, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 19 176028.013567 176028.013567 14: seq: 13, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 20 176028.017717 176028.017717 14: seq: 14, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 21 176028.021860 176028.021860 14: seq: 15, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 22 176028.025981 176028.025981 14: seq: 16, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 23 176028.103422 176028.103422 14: seq: 17, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 24 176028.107627 176028.107627 14: seq: 18, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 25 176028.715734 176028.715734 6: seq: 19, get_clock Sent 26 176028.993224 176028.993224 14: seq: 1a, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10 Sent 27 176028.997338 176028.997338 14: seq: 1b, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 28 176029.014568 176029.014568 14: seq: 1c, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 29 176029.018778 176029.018778 14: seq: 1d, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 30 176029.022885 176029.022885 14: seq: 1e, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 31 176029.027036 176029.027036 14: seq: 1f, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 32 176029.104285 176029.104285 14: seq: 10, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 33 176029.108373 176029.108373 14: seq: 11, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 34 176029.700145 176029.700145 6: seq: 12, get_clock Sent 35 176029.993712 176029.993712 14: seq: 13, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10 Sent 36 176029.997966 176029.997966 14: seq: 14, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 37 176030.015224 176030.015224 14: seq: 15, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 38 176030.019339 176030.019339 14: seq: 16, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 39 176030.023520 176030.023520 14: seq: 17, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 40 176030.027629 176030.027629 14: seq: 18, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 41 176030.104925 176030.104925 14: seq: 19, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 42 176030.109067 176030.109067 14: seq: 1a, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 43 176030.684794 176030.684794 6: seq: 1b, get_clock Sent 44 176030.978524 176030.978524 62: seq: 1c, set_next_step_dir oid=4 dir=1, set_next_step_dir oid=2 dir=1, queue_step oid=2 interval=377465036 count=1 add=0, set_next_step_dir oid=9 dir=1, queue_step oid=9 interval=228673136 count=1 add=0, set_next_step_dir oid=7 dir=0, queue_step oid=7 interval=226153425 count=1 add=0, queue_step oid=7 interval=36040 count=2 add=-9539, queue_step oid=9 interval=36040 count=2 add=-9539 Sent 45 176030.978524 176030.978524 61: seq: 1d, queue_step oid=7 interval=19194 count=7 add=-1315, queue_step oid=9 interval=19194 count=7 add=-1315, queue_step oid=7 interval=10766 count=17 add=-262, queue_step oid=9 interval=10766 count=17 add=-262, queue_step oid=7 interval=6689 count=35 add=-70, queue_step oid=9 interval=6689 count=35 add=-70, queue_step oid=7 interval=4478 count=38 add=-19, queue_step oid=9 interval=4478 count=38 add=-19 Sent 46 176030.978524 176030.978524 61: seq: 1e, queue_step oid=7 interval=4000 count=5430 add=0, queue_step oid=9 interval=4000 count=5430 add=0, queue_step oid=4 interval=1592764143 count=1 add=0, queue_step oid=4 interval=285069 count=1 add=0, queue_step oid=2 interval=199991 count=1 add=0, queue_step oid=7 interval=4064 count=40 add=38, queue_step oid=9 interval=4064 count=40 add=38, queue_step oid=4 interval=198715 count=1 add=0 Sent 47 176030.978524 176030.978524 58: seq: 1f, queue_step oid=2 interval=139941 count=2 add=-23601, queue_step oid=7 interval=5765 count=22 add=131, queue_step oid=9 interval=5765 count=22 add=131, queue_step oid=4 interval=161574 count=3 add=-26263, queue_step oid=7 interval=10018 count=5 add=0, queue_step oid=9 interval=10018 count=5 add=0, queue_step oid=2 interval=99064 count=2 add=-18669 Sent 48 176030.978524 176030.978524 63: seq: 10, queue_step oid=2 interval=64192 count=5 add=-4755, queue_step oid=4 interval=92802 count=4 add=-7462, queue_step oid=2 interval=43849 count=7 add=-1749, queue_step oid=4 interval=67321 count=5 add=-3083, queue_step oid=2 interval=32641 count=13 add=-766, queue_step oid=4 interval=52411 count=11 add=-1460, queue_step oid=2 interval=23119 count=21 add=-297 Sent 49 176030.978524 176030.978524 58: seq: 11, queue_step oid=4 interval=36901 count=15 add=-609, queue_step oid=2 interval=17361 count=29 add=-138, queue_step oid=4 interval=28248 count=22 add=-288, queue_step oid=2 interval=13643 count=43 add=-68, queue_step oid=4 interval=22274 count=32 add=-146, queue_step oid=2 interval=10919 count=60 add=-36, queue_step oid=2 interval=8912 count=83 add=-20 Sent 50 176030.978524 176030.978524 62: seq: 12, queue_step oid=4 interval=17958 count=40 add=-82, queue_step oid=2 interval=7387 count=101 add=-12, queue_step oid=4 interval=14940 count=53 add=-48, queue_step oid=2 interval=6296 count=110 add=-8, queue_step oid=4 interval=12588 count=70 add=-29, queue_step oid=2 interval=5495 count=164 add=-5, queue_step oid=4 interval=10704 count=90 add=-18, queue_step oid=2 interval=4772 count=127 add=-4 Sent 51 176030.978524 176030.978524 61: seq: 13, queue_step oid=4 interval=9208 count=103 add=-12, queue_step oid=2 interval=4353 count=150 add=-3, queue_step oid=4 interval=8069 count=134 add=-8, queue_step oid=2 interval=3961 count=238 add=-2, queue_step oid=2 interval=3559 count=142 add=-2, queue_step oid=4 interval=7100 count=106 add=-6, queue_step oid=2 interval=3319 count=132 add=-1, queue_step oid=4 interval=6574 count=165 add=-3 Sent 52 176030.978524 176030.978524 61: seq: 14, queue_step oid=2 interval=3126 count=131 add=0, queue_step oid=2 interval=3038 count=145 add=0, queue_step oid=2 interval=2987 count=272 add=0, queue_step oid=4 interval=6175 count=196 add=-1, queue_step oid=2 interval=2972 count=2571 add=0, queue_step oid=4 interval=6036 count=2080 add=0, queue_step oid=2 interval=2973 count=3519 add=0, queue_step oid=4 interval=6035 count=2713 add=0 Sent 53 176030.978935 176030.978935 61: seq: 15, queue_step oid=2 interval=2972 count=2574 add=0, queue_step oid=2 interval=2973 count=1224 add=0, queue_step oid=4 interval=6035 count=1161 add=0, queue_step oid=2 interval=2973 count=2294 add=0, queue_step oid=2 interval=2972 count=178 add=0, queue_step oid=4 interval=6115 count=152 add=1, queue_step oid=2 interval=3034 count=184 add=0, queue_step oid=2 interval=3073 count=165 add=1 Sent 54 176030.978935 176030.978935 61: seq: 16, queue_step oid=4 interval=6369 count=128 add=3, queue_step oid=2 interval=3220 count=166 add=1, queue_step oid=4 interval=6839 count=106 add=5, queue_step oid=2 interval=3456 count=151 add=1, queue_step oid=2 interval=3651 count=149 add=2, queue_step oid=4 interval=7454 count=126 add=8, queue_step oid=2 interval=3888 count=146 add=3, queue_step oid=4 interval=8563 count=97 add=12 Sent 55 176030.979002 176030.979002 58: seq: 17, queue_step oid=2 interval=4288 count=154 add=3, queue_step oid=2 interval=4820 count=138 add=4, queue_step oid=4 interval=9837 count=81 add=19, queue_step oid=2 interval=5462 count=116 add=6, queue_step oid=4 interval=11512 count=63 add=31, queue_step oid=2 interval=6240 count=107 add=10, queue_step oid=4 interval=13613 count=50 add=54, queue_step oid=2 interval=7415 count=81 add=17 Sent 56 176030.979002 176030.979002 57: seq: 18, queue_step oid=4 interval=16533 count=35 add=97, queue_step oid=2 interval=8943 count=58 add=30, queue_step oid=4 interval=20136 count=26 add=188, queue_step oid=2 interval=10832 count=45 add=58, queue_step oid=4 interval=25291 count=18 add=385, queue_step oid=2 interval=13698 count=29 add=117, queue_step oid=4 interval=32825 count=11 add=836 Sent 57 176030.979002 176030.979002 61: seq: 19, queue_step oid=2 interval=17324 count=20 add=261, queue_step oid=4 interval=42552 count=7 add=2010, queue_step oid=2 interval=22840 count=13 add=631, queue_step oid=4 interval=57576 count=7 add=3995, queue_step oid=2 interval=32281 count=7 add=1644, queue_step oid=2 interval=45425 count=5 add=2921, queue_step oid=4 interval=90334 count=3 add=10728 Sent 58 176030.979072 176030.979072 64: seq: 1a, queue_step oid=2 interval=62400 count=3 add=7862, queue_step oid=4 interval=133549 count=1 add=0, queue_step oid=2 interval=91726 count=2 add=28183, queue_step oid=4 interval=170205 count=1 add=0, queue_step oid=2 interval=186345 count=1 add=0, queue_step oid=4 interval=249889 count=1 add=0, queue_step oid=2 interval=286350 count=1 add=0, queue_step oid=4 interval=369526 count=1 add=0 Sent 59 176030.994496 176030.994496 38: seq: 1b, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10, trsync_start oid=8 report_clock=758894567 report_ticks=480000 expire_reason=4, stepper_stop_on_trigger oid=7 trsync_oid=8, stepper_stop_on_trigger oid=9 trsync_oid=8, trsync_set_timeout oid=8 clock=760254567 Sent 60 176030.998647 176030.998647 14: seq: 1c, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 61 176031.015873 176031.015873 14: seq: 1d, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 62 176031.020000 176031.020000 14: seq: 1e, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 63 176031.024117 176031.024117 14: seq: 1f, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 64 176031.028246 176031.028246 14: seq: 10, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 65 176031.105584 176031.105584 14: seq: 11, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 66 176031.109704 176031.109704 14: seq: 12, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 67 176031.669167 176031.669167 6: seq: 13, get_clock Sent 68 176031.994640 176031.994640 14: seq: 14, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10 Sent 69 176031.998741 176031.998741 14: seq: 15, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 70 176032.017046 176032.017046 14: seq: 16, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 71 176032.021193 176032.021193 14: seq: 17, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 72 176032.025293 176032.025293 14: seq: 18, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 73 176032.029451 176032.029451 14: seq: 19, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 74 176032.106610 176032.106610 14: seq: 1a, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 75 176032.110689 176032.110689 14: seq: 1b, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 76 176032.367790 176032.367790 21: seq: 1c, queue_step oid=7 interval=60992706 count=1 add=0, queue_step oid=9 interval=60992706 count=1 add=0 Sent 77 176032.417690 176032.417690 60: seq: 1d, queue_step oid=7 interval=32881 count=3 add=-6781, queue_step oid=9 interval=32881 count=3 add=-6781, queue_step oid=7 interval=17036 count=8 add=-1045, queue_step oid=9 interval=17036 count=8 add=-1045, queue_step oid=7 interval=10177 count=12 add=-253, queue_step oid=9 interval=10177 count=12 add=-253, queue_step oid=7 interval=8001 count=606 add=0 Sent 78 176032.417690 176032.417690 12: seq: 1e, queue_step oid=9 interval=8001 count=606 add=0 Sent 79 176032.467946 176032.467946 19: seq: 1f, queue_step oid=7 interval=8001 count=400 add=0, queue_step oid=9 interval=8001 count=400 add=0 Sent 80 176032.517671 176032.517671 19: seq: 10, queue_step oid=7 interval=8000 count=400 add=0, queue_step oid=9 interval=8000 count=400 add=0 Sent 81 176032.520308 176032.520308 8: seq: 11, trsync_trigger oid=8 reason=2 Sent 82 176032.520415 176032.520415 17: seq: 12, queue_step oid=7 interval=8059 count=1 add=0, queue_step oid=9 interval=8059 count=1 add=0 Sent 83 176032.522281 176032.522281 8: seq: 13, trsync_trigger oid=8 reason=2 Sent 84 176032.522497 176032.522497 7: seq: 14, stepper_get_position oid=7 Sent 85 176032.522781 176032.522781 14: seq: 15, tmcuart_send oid=1 write=b'\xea\x0bH-\x8e' read=10 Sent 86 176032.526877 176032.526877 7: seq: 16, stepper_get_position oid=9 Sent 87 176032.527129 176032.527129 14: seq: 17, tmcuart_send oid=1 write=b'\xea\x1bH\xad\xa3' read=10 Sent 88 176032.531185 176032.531185 11: seq: 18, reset_step_clock oid=7 clock=0, reset_step_clock oid=9 clock=0 Sent 89 176032.653613 176032.653613 6: seq: 19, get_clock Sent 90 176032.994925 176032.994925 14: seq: 1a, tmcuart_send oid=1 write=b'\xea\x13\xe8-\xcc' read=10 Sent 91 176032.999028 176032.999028 14: seq: 1b, tmcuart_send oid=1 write=b'\xea\x13(\xa0\xee' read=10 Sent 92 176033.017199 176033.017199 14: seq: 1c, tmcuart_send oid=1 write=b'\xea\x0b\xe8\xad\xba' read=10 Sent 93 176033.021293 176033.021293 14: seq: 1d, tmcuart_send oid=1 write=b'\xea\x1b\xe8-\x97' read=10 Sent 94 176033.025360 176033.025360 14: seq: 1e, tmcuart_send oid=1 write=b'\xea\x0b( \x98' read=10 Sent 95 176033.029494 176033.029494 14: seq: 1f, tmcuart_send oid=1 write=b'\xea\x1b(\xa0\xb5' read=10 Sent 96 176033.106841 176033.106841 14: seq: 10, tmcuart_send oid=1 write=b'\xea\x03\xe8\xad\xe1' read=10 Sent 97 176033.110918 176033.110918 14: seq: 11, tmcuart_send oid=1 write=b'\xea\x03( \xc3' read=10 Sent 98 176033.637899 176033.637899 6: seq: 12, get_clock Sent 99 176033.977538 176033.977538 6: seq: 13, emergency_stop Dumping receive queue 100 messages Receive: 0 176028.021669 176028.017717 18: seq: 15, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 1 176028.025827 176028.021860 18: seq: 16, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 2 176028.029950 176028.025981 18: seq: 17, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 3 176028.107372 176028.103422 18: seq: 18, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 4 176028.111570 176028.107627 18: seq: 19, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 5 176028.270021 176028.107627 14: seq: 19, analog_in_state oid=11 next_clock=505672704 value=7788 Receive: 6 176028.300010 176028.107627 15: seq: 19, analog_in_state oid=14 next_clock=507592704 value=31224 Receive: 7 176028.570027 176028.107627 14: seq: 19, analog_in_state oid=11 next_clock=524872704 value=7787 Receive: 8 176028.600016 176028.107627 15: seq: 19, analog_in_state oid=14 next_clock=526792704 value=31226 Receive: 9 176028.715872 176028.715734 11: seq: 1a, clock clock=515462758 Receive: 10 176028.852979 176028.715734 15: seq: 1a, stats count=1092 sum=895860 sumsq=5565505 Receive: 11 176028.870008 176028.715734 14: seq: 1a, analog_in_state oid=11 next_clock=544072704 value=7785 Receive: 12 176028.900489 176028.715734 15: seq: 1a, analog_in_state oid=14 next_clock=545992704 value=31227 Receive: 13 176028.997157 176028.993224 18: seq: 1b, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 14 176029.001248 176028.997338 18: seq: 1c, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 15 176029.018495 176029.014568 18: seq: 1d, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 16 176029.022731 176029.018778 18: seq: 1e, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 17 176029.026882 176029.022885 18: seq: 1f, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 18 176029.030988 176029.027036 18: seq: 10, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 19 176029.108227 176029.104285 18: seq: 11, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 20 176029.112311 176029.108373 18: seq: 12, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 21 176029.170038 176029.108373 14: seq: 12, analog_in_state oid=11 next_clock=563272704 value=7785 Receive: 22 176029.200039 176029.108373 15: seq: 12, analog_in_state oid=14 next_clock=565192704 value=31222 Receive: 23 176029.470045 176029.108373 14: seq: 12, analog_in_state oid=11 next_clock=582472704 value=7785 Receive: 24 176029.500053 176029.108373 15: seq: 12, analog_in_state oid=14 next_clock=584392704 value=31229 Receive: 25 176029.700267 176029.700145 11: seq: 13, clock clock=578462499 Receive: 26 176029.770058 176029.700145 14: seq: 13, analog_in_state oid=11 next_clock=601672704 value=7783 Receive: 27 176029.800096 176029.700145 15: seq: 13, analog_in_state oid=14 next_clock=603592704 value=31226 Receive: 28 176029.997684 176029.993712 18: seq: 14, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x080\x96' Receive: 29 176030.001932 176029.997966 18: seq: 15, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 30 176030.019169 176030.015224 18: seq: 16, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 31 176030.023320 176030.019339 18: seq: 17, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 32 176030.027471 176030.023520 18: seq: 18, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 33 176030.031576 176030.027629 18: seq: 19, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 34 176030.070041 176030.027629 14: seq: 19, analog_in_state oid=11 next_clock=620872704 value=7785 Receive: 35 176030.100076 176030.027629 15: seq: 19, analog_in_state oid=14 next_clock=622792704 value=31234 Receive: 36 176030.108895 176030.104925 18: seq: 1a, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 37 176030.113026 176030.109067 18: seq: 1b, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 38 176030.370076 176030.109067 14: seq: 1b, analog_in_state oid=11 next_clock=640072704 value=7781 Receive: 39 176030.400134 176030.109067 15: seq: 1b, analog_in_state oid=14 next_clock=641992704 value=31235 Receive: 40 176030.670079 176030.109067 14: seq: 1b, analog_in_state oid=11 next_clock=659272704 value=7784 Receive: 41 176030.685563 176030.684794 11: seq: 1c, clock clock=641479931 Receive: 42 176030.700090 176030.684794 15: seq: 1c, analog_in_state oid=14 next_clock=661192704 value=31231 Receive: 43 176030.970106 176030.684794 14: seq: 1c, analog_in_state oid=11 next_clock=678472704 value=7785 Receive: 44 176030.998492 176030.994496 18: seq: 1c, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 45 176031.000134 176030.998647 15: seq: 1d, analog_in_state oid=14 next_clock=680392704 value=31233 Receive: 46 176031.002611 176030.998647 18: seq: 1d, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 47 176031.019830 176031.015873 18: seq: 1e, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 48 176031.023967 176031.020000 18: seq: 1f, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 49 176031.028098 176031.024117 18: seq: 10, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 50 176031.032226 176031.028246 18: seq: 11, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 51 176031.109520 176031.105584 18: seq: 12, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 52 176031.113626 176031.109704 18: seq: 13, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 53 176031.270122 176031.109704 14: seq: 13, analog_in_state oid=11 next_clock=697672704 value=7786 Receive: 54 176031.300123 176031.109704 15: seq: 13, analog_in_state oid=14 next_clock=699592704 value=31230 Receive: 55 176031.570125 176031.109704 14: seq: 13, analog_in_state oid=11 next_clock=716872704 value=7793 Receive: 56 176031.600195 176031.109704 15: seq: 13, analog_in_state oid=14 next_clock=718792704 value=31224 Receive: 57 176031.669316 176031.669167 11: seq: 14, clock clock=704478622 Receive: 58 176031.870155 176031.669167 14: seq: 14, analog_in_state oid=11 next_clock=736072704 value=7789 Receive: 59 176031.900155 176031.669167 15: seq: 14, analog_in_state oid=14 next_clock=737992704 value=31235 Receive: 60 176031.998546 176031.994640 18: seq: 15, tmcuart_response oid=1 read=b'\n\xfa\xef-\xa0$\x02\x08\xa0\x9e' Receive: 61 176032.002670 176031.998741 18: seq: 16, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 62 176032.021012 176032.017046 18: seq: 17, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 63 176032.025134 176032.021193 18: seq: 18, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 64 176032.029265 176032.025293 18: seq: 19, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 65 176032.033419 176032.029451 18: seq: 1a, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 66 176032.110541 176032.106610 18: seq: 1b, tmcuart_response oid=1 read=b'\n\xfa\xef-\xa0$\x02\x08\xa0\x9e' Receive: 67 176032.114665 176032.110689 18: seq: 1c, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 68 176032.170166 176032.110689 14: seq: 1c, analog_in_state oid=11 next_clock=755272704 value=7789 Receive: 69 176032.200173 176032.110689 15: seq: 1c, analog_in_state oid=14 next_clock=757192704 value=31209 Receive: 70 176032.470089 176032.467946 14: seq: 10, analog_in_state oid=11 next_clock=774472704 value=7793 Receive: 71 176032.500097 176032.467946 15: seq: 10, analog_in_state oid=14 next_clock=776392704 value=31226 Receive: 72 176032.519609 176032.517671 14: seq: 11, trsync_state oid=8 can_trigger=1 trigger_reason=0 clock=758895031 Receive: 73 176032.520445 176032.520308 10: seq: 12, trsync_state oid=8 can_trigger=0 trigger_reason=2 clock=0 Receive: 74 176032.522414 176032.522281 10: seq: 14, trsync_state oid=8 can_trigger=0 trigger_reason=2 clock=0 Receive: 75 176032.522652 176032.522497 8: seq: 15, stepper_position oid=7 pos=72 Receive: 76 176032.526701 176032.522781 18: seq: 16, tmcuart_response oid=1 read=b'\n\xfaO-\x80\x00\x12\x08)\x88' Receive: 77 176032.527014 176032.526877 9: seq: 17, stepper_position oid=9 pos=-59 Receive: 78 176032.531046 176032.527129 18: seq: 18, tmcuart_response oid=1 read=b'\n\xfaO-\x80\x00\n\x083\xe6' Receive: 79 176032.653788 176032.653613 11: seq: 1a, clock clock=767481682 Receive: 80 176032.770113 176032.653613 14: seq: 1a, analog_in_state oid=11 next_clock=793672704 value=7792 Receive: 81 176032.800118 176032.653613 15: seq: 1a, analog_in_state oid=14 next_clock=795592704 value=31226 Receive: 82 176032.998857 176032.994925 18: seq: 1b, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 83 176033.002970 176032.999028 18: seq: 1c, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 84 176033.021115 176033.017199 18: seq: 1d, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 85 176033.025215 176033.021293 18: seq: 1e, tmcuart_response oid=1 read=b'\n\xfa\xef-\xc00\x02\x08\xa0\x91' Receive: 86 176033.029310 176033.025360 18: seq: 1f, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 87 176033.033460 176033.029494 18: seq: 10, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 88 176033.070114 176033.029494 14: seq: 10, analog_in_state oid=11 next_clock=812872704 value=7791 Receive: 89 176033.100110 176033.029494 15: seq: 10, analog_in_state oid=14 next_clock=814792704 value=31233 Receive: 90 176033.110771 176033.106841 18: seq: 11, tmcuart_response oid=1 read=b'\n\xfa\xef-\xe0$\x02\x08\xa0\x95' Receive: 91 176033.114838 176033.110918 18: seq: 12, tmcuart_response oid=1 read=b'\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 92 176033.370132 176033.110918 14: seq: 12, analog_in_state oid=11 next_clock=832072704 value=7795 Receive: 93 176033.400120 176033.110918 15: seq: 12, analog_in_state oid=14 next_clock=833992704 value=31222 Receive: 94 176033.638031 176033.637899 11: seq: 13, clock clock=830474032 Receive: 95 176033.670158 176033.637899 14: seq: 13, analog_in_state oid=11 next_clock=851272704 value=7792 Receive: 96 176033.700153 176033.637899 15: seq: 13, analog_in_state oid=14 next_clock=853192704 value=31226 Receive: 97 176033.953063 176033.637899 15: seq: 13, stats count=473 sum=469089 sumsq=4714979 Receive: 98 176033.970140 176033.637899 14: seq: 13, analog_in_state oid=11 next_clock=870472704 value=7791 Receive: 99 176033.977901 176033.977538 12: seq: 14, shutdown clock=852211431 static_string_id=Command request Stats 176034.6: gcodein=0 mcu: mcu_awake=0.007 mcu_task_avg=0.000015 mcu_task_stddev=0.000020 bytes_write=34310 bytes_read=46840 bytes_retransmit=9 bytes_invalid=0 send_seq=2358 receive_seq=2358 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998633 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000020 bytes_write=6826 bytes_read=18808 bytes_retransmit=0 bytes_invalid=0 send_seq=616 receive_seq=616 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000327 adj=12000573 eddy: mcu_awake=0.216 mcu_task_avg=0.000191 mcu_task_stddev=0.000160 bytes_write=14010 bytes_read=58649 bytes_retransmit=9 bytes_invalid=0 send_seq=1310 receive_seq=1310 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000423 adj=12000795 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1105 bytes_read=5007 bytes_retransmit=9 bytes_invalid=0 send_seq=146 receive_seq=146 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000615 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.0 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=25.6 pwm=0.000 sysload=0.28 cputime=1.724 memavail=7398592 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176035.6: gcodein=0 mcu: mcu_awake=0.007 mcu_task_avg=0.000015 mcu_task_stddev=0.000020 bytes_write=34344 bytes_read=46982 bytes_retransmit=9 bytes_invalid=0 send_seq=2361 receive_seq=2361 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998627 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000020 bytes_write=6832 bytes_read=18914 bytes_retransmit=0 bytes_invalid=0 send_seq=617 receive_seq=617 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000327 adj=12000585 eddy: mcu_awake=0.216 mcu_task_avg=0.000191 mcu_task_stddev=0.000160 bytes_write=14016 bytes_read=58752 bytes_retransmit=9 bytes_invalid=0 send_seq=1311 receive_seq=1311 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000423 adj=12000919 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1111 bytes_read=5023 bytes_retransmit=9 bytes_invalid=0 send_seq=147 receive_seq=147 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000616 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.8 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.9 Raspberry_Pi: temp=72.7 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.28 cputime=1.731 memavail=7400448 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176036.6: gcodein=0 mcu: mcu_awake=0.007 mcu_task_avg=0.000015 mcu_task_stddev=0.000020 bytes_write=34378 bytes_read=47109 bytes_retransmit=9 bytes_invalid=0 send_seq=2364 receive_seq=2364 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998623 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000020 bytes_write=6838 bytes_read=19020 bytes_retransmit=0 bytes_invalid=0 send_seq=618 receive_seq=618 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000590 eddy: mcu_awake=0.216 mcu_task_avg=0.000191 mcu_task_stddev=0.000160 bytes_write=14022 bytes_read=58855 bytes_retransmit=9 bytes_invalid=0 send_seq=1312 receive_seq=1312 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000431 adj=12000869 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1117 bytes_read=5039 bytes_retransmit=9 bytes_invalid=0 send_seq=148 receive_seq=148 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000623 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.1 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.26 cputime=1.737 memavail=7400128 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176037.6: gcodein=0 mcu: mcu_awake=0.007 mcu_task_avg=0.000015 mcu_task_stddev=0.000020 bytes_write=34418 bytes_read=47266 bytes_retransmit=9 bytes_invalid=0 send_seq=2368 receive_seq=2368 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998622 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000020 bytes_write=6844 bytes_read=19156 bytes_retransmit=0 bytes_invalid=0 send_seq=619 receive_seq=619 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000589 eddy: mcu_awake=0.216 mcu_task_avg=0.000191 mcu_task_stddev=0.000160 bytes_write=14028 bytes_read=58987 bytes_retransmit=9 bytes_invalid=0 send_seq=1313 receive_seq=1313 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000421 adj=12000908 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1123 bytes_read=5055 bytes_retransmit=9 bytes_invalid=0 send_seq=149 receive_seq=149 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000635 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.2 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.26 cputime=1.744 memavail=7399680 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176038.6: gcodein=0 mcu: mcu_awake=0.007 mcu_task_avg=0.000015 mcu_task_stddev=0.000020 bytes_write=34452 bytes_read=47408 bytes_retransmit=9 bytes_invalid=0 send_seq=2371 receive_seq=2371 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998618 HermitCrab2: mcu_awake=0.003 mcu_task_avg=0.000012 mcu_task_stddev=0.000020 bytes_write=6850 bytes_read=19262 bytes_retransmit=0 bytes_invalid=0 send_seq=620 receive_seq=620 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000585 eddy: mcu_awake=0.216 mcu_task_avg=0.000191 mcu_task_stddev=0.000160 bytes_write=14034 bytes_read=59090 bytes_retransmit=9 bytes_invalid=0 send_seq=1314 receive_seq=1314 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000430 adj=12000756 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1129 bytes_read=5071 bytes_retransmit=9 bytes_invalid=0 send_seq=150 receive_seq=150 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000628 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.8 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.1 Raspberry_Pi: temp=73.2 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.26 cputime=1.751 memavail=7399680 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.2 pwm=0.000 Stats 176039.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000010 bytes_write=34486 bytes_read=47549 bytes_retransmit=9 bytes_invalid=0 send_seq=2374 receive_seq=2374 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998614 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6856 bytes_read=19382 bytes_retransmit=0 bytes_invalid=0 send_seq=621 receive_seq=621 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000589 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14040 bytes_read=59205 bytes_retransmit=9 bytes_invalid=0 send_seq=1315 receive_seq=1315 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000441 adj=12000839 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1135 bytes_read=5098 bytes_retransmit=9 bytes_invalid=0 send_seq=151 receive_seq=151 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000355 adj=12000635 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=37.0 SKR_Mini_E3: temp=44.1 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.26 cputime=1.758 memavail=7399680 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176040.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000010 bytes_write=34520 bytes_read=47690 bytes_retransmit=9 bytes_invalid=0 send_seq=2377 receive_seq=2377 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998611 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6862 bytes_read=19518 bytes_retransmit=0 bytes_invalid=0 send_seq=622 receive_seq=622 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000594 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14046 bytes_read=59337 bytes_retransmit=9 bytes_invalid=0 send_seq=1316 receive_seq=1316 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000436 adj=12000913 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1141 bytes_read=5114 bytes_retransmit=9 bytes_invalid=0 send_seq=152 receive_seq=152 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000638 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.2 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.26 cputime=1.766 memavail=7399680 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176041.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000010 bytes_write=34554 bytes_read=47832 bytes_retransmit=9 bytes_invalid=0 send_seq=2380 receive_seq=2380 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998608 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6868 bytes_read=19624 bytes_retransmit=0 bytes_invalid=0 send_seq=623 receive_seq=623 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000596 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14052 bytes_read=59440 bytes_retransmit=9 bytes_invalid=0 send_seq=1317 receive_seq=1317 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000428 adj=12000811 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1147 bytes_read=5130 bytes_retransmit=9 bytes_invalid=0 send_seq=153 receive_seq=153 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000651 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.3 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.24 cputime=1.774 memavail=7399680 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176042.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000010 bytes_write=34588 bytes_read=47959 bytes_retransmit=9 bytes_invalid=0 send_seq=2383 receive_seq=2383 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998606 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6874 bytes_read=19730 bytes_retransmit=0 bytes_invalid=0 send_seq=624 receive_seq=624 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000598 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14058 bytes_read=59557 bytes_retransmit=9 bytes_invalid=0 send_seq=1318 receive_seq=1318 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000417 adj=12000709 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1153 bytes_read=5146 bytes_retransmit=9 bytes_invalid=0 send_seq=154 receive_seq=154 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000647 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.9 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.24 cputime=1.782 memavail=7398960 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176043.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000010 bytes_write=34622 bytes_read=48100 bytes_retransmit=9 bytes_invalid=0 send_seq=2386 receive_seq=2386 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998604 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6880 bytes_read=19866 bytes_retransmit=0 bytes_invalid=0 send_seq=625 receive_seq=625 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000597 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14064 bytes_read=59675 bytes_retransmit=9 bytes_invalid=0 send_seq=1319 receive_seq=1319 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000411 adj=12000594 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1159 bytes_read=5162 bytes_retransmit=9 bytes_invalid=0 send_seq=155 receive_seq=155 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000643 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=44.1 Raspberry_Pi: temp=72.2 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.24 cputime=1.791 memavail=7402048 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176044.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34656 bytes_read=48256 bytes_retransmit=9 bytes_invalid=0 send_seq=2389 receive_seq=2389 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998601 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6886 bytes_read=19972 bytes_retransmit=0 bytes_invalid=0 send_seq=626 receive_seq=626 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000597 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14070 bytes_read=59790 bytes_retransmit=9 bytes_invalid=0 send_seq=1320 receive_seq=1320 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000404 adj=12000563 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1165 bytes_read=5189 bytes_retransmit=9 bytes_invalid=0 send_seq=156 receive_seq=156 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000356 adj=12000640 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.1 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.9 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.24 cputime=1.799 memavail=7400704 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176045.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34690 bytes_read=48383 bytes_retransmit=9 bytes_invalid=0 send_seq=2392 receive_seq=2392 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998600 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6892 bytes_read=20092 bytes_retransmit=0 bytes_invalid=0 send_seq=627 receive_seq=627 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000598 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14076 bytes_read=59907 bytes_retransmit=9 bytes_invalid=0 send_seq=1321 receive_seq=1321 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000395 adj=12000517 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1171 bytes_read=5205 bytes_retransmit=9 bytes_invalid=0 send_seq=157 receive_seq=157 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000641 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.9 Raspberry_Pi: temp=71.6 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.24 cputime=1.808 memavail=7402736 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176046.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34724 bytes_read=48524 bytes_retransmit=9 bytes_invalid=0 send_seq=2395 receive_seq=2395 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998598 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6898 bytes_read=20228 bytes_retransmit=0 bytes_invalid=0 send_seq=628 receive_seq=628 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000596 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14082 bytes_read=60025 bytes_retransmit=9 bytes_invalid=0 send_seq=1322 receive_seq=1322 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000407 adj=12000468 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1177 bytes_read=5221 bytes_retransmit=9 bytes_invalid=0 send_seq=158 receive_seq=158 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000359 adj=12000657 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.7 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.7 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.30 cputime=1.816 memavail=7402640 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176047.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34758 bytes_read=48666 bytes_retransmit=9 bytes_invalid=0 send_seq=2398 receive_seq=2398 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998597 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6904 bytes_read=20334 bytes_retransmit=0 bytes_invalid=0 send_seq=629 receive_seq=629 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000595 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14088 bytes_read=60128 bytes_retransmit=9 bytes_invalid=0 send_seq=1323 receive_seq=1323 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000415 adj=12000643 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1183 bytes_read=5237 bytes_retransmit=9 bytes_invalid=0 send_seq=159 receive_seq=159 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000658 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=40.7 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.6 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.30 cputime=1.824 memavail=7402416 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176048.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34792 bytes_read=48793 bytes_retransmit=9 bytes_invalid=0 send_seq=2401 receive_seq=2401 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998595 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6910 bytes_read=20440 bytes_retransmit=0 bytes_invalid=0 send_seq=630 receive_seq=630 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000594 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14094 bytes_read=60245 bytes_retransmit=9 bytes_invalid=0 send_seq=1324 receive_seq=1324 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000418 adj=12000737 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1189 bytes_read=5253 bytes_retransmit=9 bytes_invalid=0 send_seq=160 receive_seq=160 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000647 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.5 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.30 cputime=1.832 memavail=7402416 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176049.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34826 bytes_read=48948 bytes_retransmit=9 bytes_invalid=0 send_seq=2404 receive_seq=2404 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998594 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6916 bytes_read=20576 bytes_retransmit=0 bytes_invalid=0 send_seq=631 receive_seq=631 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000604 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14100 bytes_read=60375 bytes_retransmit=9 bytes_invalid=0 send_seq=1325 receive_seq=1325 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000408 adj=12000764 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1195 bytes_read=5280 bytes_retransmit=9 bytes_invalid=0 send_seq=161 receive_seq=161 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000643 HermitCrab2: temp=33.1 btt_eddy_mcu: temp=41.1 btt_eddy: temp=37.0 SKR_Mini_E3: temp=43.4 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.30 cputime=1.840 memavail=7402768 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176050.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34860 bytes_read=49090 bytes_retransmit=9 bytes_invalid=0 send_seq=2407 receive_seq=2407 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998598 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6922 bytes_read=20696 bytes_retransmit=0 bytes_invalid=0 send_seq=632 receive_seq=632 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000603 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14106 bytes_read=60478 bytes_retransmit=9 bytes_invalid=0 send_seq=1326 receive_seq=1326 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000417 adj=12000633 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1201 bytes_read=5296 bytes_retransmit=9 bytes_invalid=0 send_seq=162 receive_seq=162 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000637 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.7 btt_eddy: temp=36.6 SKR_Mini_E3: temp=43.3 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=26.3 pwm=0.000 sysload=0.30 cputime=1.848 memavail=7401680 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176051.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34894 bytes_read=49217 bytes_retransmit=9 bytes_invalid=0 send_seq=2410 receive_seq=2410 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998597 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6928 bytes_read=20802 bytes_retransmit=0 bytes_invalid=0 send_seq=633 receive_seq=633 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000588 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14112 bytes_read=60595 bytes_retransmit=9 bytes_invalid=0 send_seq=1327 receive_seq=1327 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000411 adj=12000730 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1207 bytes_read=5312 bytes_retransmit=9 bytes_invalid=0 send_seq=163 receive_seq=163 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000630 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.5 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.27 cputime=1.857 memavail=7400384 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176052.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34928 bytes_read=49358 bytes_retransmit=9 bytes_invalid=0 send_seq=2413 receive_seq=2413 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998595 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6934 bytes_read=20938 bytes_retransmit=0 bytes_invalid=0 send_seq=634 receive_seq=634 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000589 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14124 bytes_read=60729 bytes_retransmit=9 bytes_invalid=0 send_seq=1329 receive_seq=1329 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000414 adj=12000652 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1213 bytes_read=5328 bytes_retransmit=9 bytes_invalid=0 send_seq=164 receive_seq=164 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000627 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.7 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.0 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.27 cputime=1.865 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176053.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34962 bytes_read=49500 bytes_retransmit=9 bytes_invalid=0 send_seq=2416 receive_seq=2416 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998594 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6940 bytes_read=21044 bytes_retransmit=0 bytes_invalid=0 send_seq=635 receive_seq=635 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000596 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14130 bytes_read=60832 bytes_retransmit=9 bytes_invalid=0 send_seq=1330 receive_seq=1330 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000421 adj=12000699 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1219 bytes_read=5344 bytes_retransmit=9 bytes_invalid=0 send_seq=165 receive_seq=165 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000627 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.9 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.27 cputime=1.872 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176054.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34968 bytes_read=49617 bytes_retransmit=9 bytes_invalid=0 send_seq=2417 receive_seq=2417 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998595 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6946 bytes_read=21150 bytes_retransmit=0 bytes_invalid=0 send_seq=636 receive_seq=636 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000593 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14136 bytes_read=60961 bytes_retransmit=9 bytes_invalid=0 send_seq=1331 receive_seq=1331 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000413 adj=12000778 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1225 bytes_read=5371 bytes_retransmit=9 bytes_invalid=0 send_seq=166 receive_seq=166 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000625 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.8 btt_eddy: temp=36.9 SKR_Mini_E3: temp=43.0 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.27 cputime=1.880 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176055.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34974 bytes_read=49734 bytes_retransmit=9 bytes_invalid=0 send_seq=2418 receive_seq=2418 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998594 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6952 bytes_read=21300 bytes_retransmit=0 bytes_invalid=0 send_seq=637 receive_seq=637 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000593 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14142 bytes_read=61079 bytes_retransmit=9 bytes_invalid=0 send_seq=1332 receive_seq=1332 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000412 adj=12000659 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1231 bytes_read=5387 bytes_retransmit=9 bytes_invalid=0 send_seq=167 receive_seq=167 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000620 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.9 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.27 cputime=1.888 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176056.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34980 bytes_read=49852 bytes_retransmit=9 bytes_invalid=0 send_seq=2419 receive_seq=2419 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998595 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6958 bytes_read=21406 bytes_retransmit=0 bytes_invalid=0 send_seq=638 receive_seq=638 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000599 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14148 bytes_read=61182 bytes_retransmit=9 bytes_invalid=0 send_seq=1333 receive_seq=1333 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000423 adj=12000651 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1237 bytes_read=5403 bytes_retransmit=9 bytes_invalid=0 send_seq=168 receive_seq=168 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000627 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.6 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.25 cputime=1.895 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176057.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34986 bytes_read=49955 bytes_retransmit=9 bytes_invalid=0 send_seq=2420 receive_seq=2420 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998595 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6964 bytes_read=21512 bytes_retransmit=0 bytes_invalid=0 send_seq=639 receive_seq=639 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000590 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14154 bytes_read=61314 bytes_retransmit=9 bytes_invalid=0 send_seq=1334 receive_seq=1334 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000414 adj=12000791 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1243 bytes_read=5419 bytes_retransmit=9 bytes_invalid=0 send_seq=169 receive_seq=169 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000626 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.6 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.25 cputime=1.903 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176058.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000010 bytes_write=34992 bytes_read=50072 bytes_retransmit=9 bytes_invalid=0 send_seq=2421 receive_seq=2421 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6970 bytes_read=21648 bytes_retransmit=0 bytes_invalid=0 send_seq=640 receive_seq=640 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000594 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14160 bytes_read=61417 bytes_retransmit=9 bytes_invalid=0 send_seq=1335 receive_seq=1335 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000425 adj=12000651 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1249 bytes_read=5435 bytes_retransmit=9 bytes_invalid=0 send_seq=170 receive_seq=170 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000624 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.5 Raspberry_Pi: temp=70.5 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.25 cputime=1.911 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176059.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=34998 bytes_read=50204 bytes_retransmit=9 bytes_invalid=0 send_seq=2422 receive_seq=2422 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6976 bytes_read=21754 bytes_retransmit=0 bytes_invalid=0 send_seq=641 receive_seq=641 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000594 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14166 bytes_read=61532 bytes_retransmit=9 bytes_invalid=0 send_seq=1336 receive_seq=1336 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000419 adj=12000795 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1255 bytes_read=5462 bytes_retransmit=9 bytes_invalid=0 send_seq=171 receive_seq=171 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000634 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.6 Raspberry_Pi: temp=71.0 heater_bed: target=0 temp=26.2 pwm=0.000 sysload=0.25 cputime=1.918 memavail=7400336 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176060.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35004 bytes_read=50307 bytes_retransmit=9 bytes_invalid=0 send_seq=2423 receive_seq=2423 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998594 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6982 bytes_read=21874 bytes_retransmit=0 bytes_invalid=0 send_seq=642 receive_seq=642 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000589 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14172 bytes_read=61664 bytes_retransmit=9 bytes_invalid=0 send_seq=1337 receive_seq=1337 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000409 adj=12000692 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1261 bytes_read=5478 bytes_retransmit=9 bytes_invalid=0 send_seq=172 receive_seq=172 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000627 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.8 btt_eddy: temp=37.0 SKR_Mini_E3: temp=42.4 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=26.2 pwm=0.000 sysload=0.25 cputime=1.926 memavail=7402032 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176061.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35010 bytes_read=50439 bytes_retransmit=9 bytes_invalid=0 send_seq=2424 receive_seq=2424 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6988 bytes_read=22010 bytes_retransmit=0 bytes_invalid=0 send_seq=643 receive_seq=643 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000604 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14178 bytes_read=61767 bytes_retransmit=9 bytes_invalid=0 send_seq=1338 receive_seq=1338 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000407 adj=12000580 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1267 bytes_read=5494 bytes_retransmit=9 bytes_invalid=0 send_seq=173 receive_seq=173 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000621 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.7 btt_eddy: temp=36.8 SKR_Mini_E3: temp=42.4 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.23 cputime=1.934 memavail=7400528 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176062.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35016 bytes_read=50542 bytes_retransmit=9 bytes_invalid=0 send_seq=2425 receive_seq=2425 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998592 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=6994 bytes_read=22116 bytes_retransmit=0 bytes_invalid=0 send_seq=644 receive_seq=644 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000607 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14184 bytes_read=61870 bytes_retransmit=9 bytes_invalid=0 send_seq=1339 receive_seq=1339 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000418 adj=12000569 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1273 bytes_read=5510 bytes_retransmit=9 bytes_invalid=0 send_seq=174 receive_seq=174 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000619 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=26.1 pwm=0.000 sysload=0.23 cputime=1.941 memavail=7402224 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176063.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35022 bytes_read=50645 bytes_retransmit=9 bytes_invalid=0 send_seq=2426 receive_seq=2426 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998592 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7000 bytes_read=22222 bytes_retransmit=0 bytes_invalid=0 send_seq=645 receive_seq=645 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000609 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14190 bytes_read=62002 bytes_retransmit=9 bytes_invalid=0 send_seq=1340 receive_seq=1340 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000414 adj=12000732 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1279 bytes_read=5526 bytes_retransmit=9 bytes_invalid=0 send_seq=175 receive_seq=175 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000626 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.1 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.23 cputime=1.949 memavail=7400880 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176064.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35028 bytes_read=50791 bytes_retransmit=9 bytes_invalid=0 send_seq=2427 receive_seq=2427 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998591 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7006 bytes_read=22358 bytes_retransmit=0 bytes_invalid=0 send_seq=646 receive_seq=646 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000600 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14196 bytes_read=62117 bytes_retransmit=9 bytes_invalid=0 send_seq=1341 receive_seq=1341 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000424 adj=12000675 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1285 bytes_read=5553 bytes_retransmit=9 bytes_invalid=0 send_seq=176 receive_seq=176 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000624 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=42.1 Raspberry_Pi: temp=68.8 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.23 cputime=1.957 memavail=7400880 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176065.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35034 bytes_read=50894 bytes_retransmit=9 bytes_invalid=0 send_seq=2428 receive_seq=2428 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998591 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7012 bytes_read=22478 bytes_retransmit=0 bytes_invalid=0 send_seq=647 receive_seq=647 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000606 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14202 bytes_read=62220 bytes_retransmit=9 bytes_invalid=0 send_seq=1342 receive_seq=1342 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000415 adj=12000796 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1291 bytes_read=5569 bytes_retransmit=9 bytes_invalid=0 send_seq=177 receive_seq=177 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000622 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=41.9 Raspberry_Pi: temp=67.8 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.23 cputime=1.965 memavail=7400880 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176066.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35040 bytes_read=50997 bytes_retransmit=9 bytes_invalid=0 send_seq=2429 receive_seq=2429 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998591 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7018 bytes_read=22584 bytes_retransmit=0 bytes_invalid=0 send_seq=648 receive_seq=648 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000326 adj=12000599 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14208 bytes_read=62352 bytes_retransmit=9 bytes_invalid=0 send_seq=1343 receive_seq=1343 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000407 adj=12000669 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1297 bytes_read=5585 bytes_retransmit=9 bytes_invalid=0 send_seq=178 receive_seq=178 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000358 adj=12000619 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.8 btt_eddy: temp=37.0 SKR_Mini_E3: temp=41.9 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.21 cputime=1.973 memavail=7400656 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176067.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35046 bytes_read=51129 bytes_retransmit=9 bytes_invalid=0 send_seq=2430 receive_seq=2430 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998591 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7024 bytes_read=22720 bytes_retransmit=0 bytes_invalid=0 send_seq=649 receive_seq=649 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000594 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14214 bytes_read=62455 bytes_retransmit=9 bytes_invalid=0 send_seq=1344 receive_seq=1344 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000417 adj=12000571 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1303 bytes_read=5601 bytes_retransmit=9 bytes_invalid=0 send_seq=179 receive_seq=179 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000625 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=41.8 Raspberry_Pi: temp=70.0 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.21 cputime=1.981 memavail=7400656 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176068.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35052 bytes_read=51232 bytes_retransmit=9 bytes_invalid=0 send_seq=2431 receive_seq=2431 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998591 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7030 bytes_read=22826 bytes_retransmit=0 bytes_invalid=0 send_seq=650 receive_seq=650 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000587 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14220 bytes_read=62558 bytes_retransmit=9 bytes_invalid=0 send_seq=1345 receive_seq=1345 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000422 adj=12000724 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1309 bytes_read=5617 bytes_retransmit=9 bytes_invalid=0 send_seq=180 receive_seq=180 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000622 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.9 btt_eddy: temp=36.9 SKR_Mini_E3: temp=41.9 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=25.8 pwm=0.000 sysload=0.21 cputime=1.989 memavail=7404272 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176069.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35058 bytes_read=51349 bytes_retransmit=9 bytes_invalid=0 send_seq=2432 receive_seq=2432 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998591 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7036 bytes_read=22932 bytes_retransmit=0 bytes_invalid=0 send_seq=651 receive_seq=651 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000583 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14226 bytes_read=62702 bytes_retransmit=9 bytes_invalid=0 send_seq=1346 receive_seq=1346 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000427 adj=12000763 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1315 bytes_read=5644 bytes_retransmit=9 bytes_invalid=0 send_seq=181 receive_seq=181 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000618 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.9 SKR_Mini_E3: temp=41.8 Raspberry_Pi: temp=68.8 heater_bed: target=0 temp=25.7 pwm=0.000 sysload=0.21 cputime=1.997 memavail=7404272 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176070.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35064 bytes_read=51481 bytes_retransmit=9 bytes_invalid=0 send_seq=2433 receive_seq=2433 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7042 bytes_read=23082 bytes_retransmit=0 bytes_invalid=0 send_seq=652 receive_seq=652 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000325 adj=12000582 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14232 bytes_read=62805 bytes_retransmit=9 bytes_invalid=0 send_seq=1347 receive_seq=1347 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000434 adj=12000810 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1321 bytes_read=5660 bytes_retransmit=9 bytes_invalid=0 send_seq=182 receive_seq=182 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000619 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.1 btt_eddy: temp=36.9 SKR_Mini_E3: temp=41.4 Raspberry_Pi: temp=68.8 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.21 cputime=2.005 memavail=7404272 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176071.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35070 bytes_read=51584 bytes_retransmit=9 bytes_invalid=0 send_seq=2434 receive_seq=2434 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7054 bytes_read=23204 bytes_retransmit=0 bytes_invalid=0 send_seq=654 receive_seq=654 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000576 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14238 bytes_read=62908 bytes_retransmit=9 bytes_invalid=0 send_seq=1348 receive_seq=1348 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000434 adj=12000875 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1327 bytes_read=5676 bytes_retransmit=9 bytes_invalid=0 send_seq=183 receive_seq=183 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000614 HermitCrab2: temp=32.9 btt_eddy_mcu: temp=41.0 btt_eddy: temp=37.0 SKR_Mini_E3: temp=41.7 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=26.0 pwm=0.000 sysload=0.20 cputime=2.013 memavail=7404272 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176072.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35076 bytes_read=51687 bytes_retransmit=9 bytes_invalid=0 send_seq=2435 receive_seq=2435 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7060 bytes_read=23310 bytes_retransmit=0 bytes_invalid=0 send_seq=655 receive_seq=655 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000573 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14244 bytes_read=63040 bytes_retransmit=9 bytes_invalid=0 send_seq=1349 receive_seq=1349 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000431 adj=12000820 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1333 bytes_read=5692 bytes_retransmit=9 bytes_invalid=0 send_seq=184 receive_seq=184 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000620 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=41.0 btt_eddy: temp=36.6 SKR_Mini_E3: temp=41.4 Raspberry_Pi: temp=68.8 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.20 cputime=2.021 memavail=7403792 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000 Stats 176073.6: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000010 mcu_task_stddev=0.000009 bytes_write=35082 bytes_read=51819 bytes_retransmit=9 bytes_invalid=0 send_seq=2436 receive_seq=2436 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=63998593 HermitCrab2: mcu_awake=0.002 mcu_task_avg=0.000011 mcu_task_stddev=0.000019 bytes_write=7066 bytes_read=23446 bytes_retransmit=0 bytes_invalid=0 send_seq=656 receive_seq=656 retransmit_seq=0 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000324 adj=12000574 eddy: mcu_awake=0.001 mcu_task_avg=0.000004 mcu_task_stddev=0.000004 bytes_write=14250 bytes_read=63143 bytes_retransmit=9 bytes_invalid=0 send_seq=1350 receive_seq=1350 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000422 adj=12000761 HBB: mcu_awake=0.000 mcu_task_avg=0.000003 mcu_task_stddev=0.000003 bytes_write=1339 bytes_read=5708 bytes_retransmit=9 bytes_invalid=0 send_seq=185 receive_seq=185 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=12000357 adj=12000618 HermitCrab2: temp=33.0 btt_eddy_mcu: temp=40.8 btt_eddy: temp=36.9 SKR_Mini_E3: temp=41.3 Raspberry_Pi: temp=69.4 heater_bed: target=0 temp=25.9 pwm=0.000 sysload=0.20 cputime=2.029 memavail=7403792 print_time=79.220 buffer_time=0.000 print_stall=0 extruder: target=0 temp=29.1 pwm=0.000