Starting Klippy... Args: ['/home/pi/klipper/klippy/klippy.py', '/home/pi/klipper_config/printer.cfg', '-I', '/tmp/printer', '-l', '/home/pi/klipper_logs/klippy.log', '-a', '/tmp/klippy_uds'] Git version: 'v0.10.0-638-g9727f00e' CPU: 4 core ? Python: '2.7.18 (default, Jul 14 2021, 08:11:37) \n[GCC 10.2.1 20210110]' Start printer at Tue Nov 22 20:21:38 2022 (1669177298.6 196199.4) ===== Config file ===== [gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL] description = Helper: park toolhead used in PAUSE and CANCEL_PRINT variable_extrude = 1.0 gcode = {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %} {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %} {% set z_park_delta = 2.0 %} {% set max_z = printer.toolhead.axis_maximum.z|float %} {% set act_z = printer.toolhead.position.z|float %} {% if act_z < (max_z - z_park_delta) %} {% set z_safe = z_park_delta %} {% else %} {% set z_safe = max_z - act_z %} {% endif %} {% if printer.extruder.can_extrude|lower == 'true' %} M83 G1 E-{extrude} F2100 {% if printer.gcode_move.absolute_extrude |lower == 'true' %} M82 {% endif %} {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} {% if "xyz" in printer.toolhead.homed_axes %} G91 G1 Z{z_safe} F900 G90 G1 X{x_park} Y{y_park} F6000 {% if printer.gcode_move.absolute_coordinates|lower == 'false' %} G91 {% endif %} {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro bed_level_if_needed] variable_calls_since_last_level = 9999 gcode = {% set threshold = 10 %} {% set last_value = printer["gcode_macro bed_level_if_needed"].calls_since_last_level %} {% if last_value < threshold %} {% set new_last_value = last_value + 1 %} M117 Bed mesh calibration not needed yet (n={last_value}/{threshold}) RESPOND MSG="Bed mesh calibration not needed yet (n={last_value}/{threshold})" {% else %} M117 Updating Mesh ... RESPOND MSG="Updating Mesh ..." BED_MESH_CALIBRATE {% set new_last_value = 1 %} {% endif %} SET_GCODE_VARIABLE MACRO=bed_level_if_needed VARIABLE=calls_since_last_level VALUE={new_last_value} [gcode_macro CANCEL_PRINT] description = Cancel the actual running print rename_existing = CANCEL_PRINT_BASE variable_park = True gcode = {% if printer.pause_resume.is_paused|lower == 'false' and park|lower == 'true'%} _TOOLHEAD_PARK_PAUSE_CANCEL {% endif %} M118 Cancelling ... M117 Cancelling ... M300 S700 P100 M300 S900 P100 M300 S700 P100 M300 S900 P100 TURN_OFF_HEATERS CANCEL_PRINT_BASE PRINT_END [gcode_macro BEFORE_LAYER_CHANGE_HANDLER] gcode = [gcode_macro AFTER_LAYER_CHANGE_HANDLER] gcode = M117 Layer {params.LAYER}/{params.TOTAL_LAYERS} [gcode_macro lazy_home] gcode = {% if printer.toolhead.homed_axes == "" %} RESPOND PREFIX="->" MSG="Homing x y z" G28 x y z {% elif printer.toolhead.homed_axes == "x" %} RESPOND PREFIX="->" MSG="Homing y z" G28 y z {% elif printer.toolhead.homed_axes == "y" %} RESPOND PREFIX="->" MSG="Homing x z" G28 x z {% elif printer.toolhead.homed_axes == "z" %} RESPOND PREFIX="->" MSG="Homing x y" G28 x y {% elif printer.toolhead.homed_axes == "xy" %} RESPOND PREFIX="->" MSG="Homing z" G28 z {% elif printer.toolhead.homed_axes == "xz" %} RESPOND PREFIX="->" MSG="Homing y" G28 y {% elif printer.toolhead.homed_axes == "yz" %} RESPOND PREFIX="->" MSG="Homing x" G28 x {% else %} RESPOND PREFIX="->" MSG="No Homing Needed" {% endif %} [gcode_macro _LOAD_FILAMENT] gcode = {% set distance = params.LOAD_DISTANCE|default(450) %} {% set desired_temp = printer.extruder.target %} {% set phase_1_distance = 5 %} {% set phase_1_velocity = 200 %} {% set phase_2_velocity = params.LOAD_SPEED|default(2500) %} {% set phase_3_distance = 25 %} {% set phase_3_velocity = 50 %} {% set purge_amount = params.PURGE_AMOUNT|default(50) %} {% set purge_speed = params.PURGE_SPEED|default(100) %} {% if desired_temp == 0 %} {action_raise_error("extruder not set to any temperature!")} {% endif %} RESPOND PREFIX="->" MSG="Load: Waiting for extruder warmup ..." M117 Load: Waiting for extruder warmup ... M109 S{ desired_temp } G91 G92 E0 M300 RESPOND PREFIX="->" MSG="Load: Phase 1 ..." M117 Load: Phase 1 ... G1 E{phase_1_distance} F{phase_1_velocity} M300 RESPOND PREFIX="->" MSG="Load: Phase 2 ..." M117 Load: Phase 2 ... G1 E{distance-phase_1_distance-phase_3_distance} F{phase_2_velocity} M300 RESPOND PREFIX="->" MSG="Load: Phase 3 ..." M117 Load: Phase 3 ... G1 E{phase_3_distance} F{phase_3_velocity} M300 RESPOND PREFIX="->" MSG="Load: Purge ..." M117 Load: Purge ... G1 E{purge_amount} F{purge_speed} M300 M300 RESPOND PREFIX="->" MSG="Load: Done" M117 Load: Done G90 [gcode_macro _UNLOAD_FILAMENT] gcode = {% set distance = params.UNLOAD_DISTANCE|default(450) %} {% set extra_distance = params.EXTRA_DISTANCE|default(100) %} {% set desired_temp = printer.extruder.target %} {% set phase_1_distance = 10 %} {% set phase_1_velocity = 200 %} {% set phase_2_velocity = params.UNLOAD_SPEED|default(2500) %} {% if desired_temp == 0 %} {action_raise_error("extruder not set to any temperature!")} {% endif %} RESPOND PREFIX="->" MSG="Unload: Waiting for extruder warmup ..." M117 Unload: Waiting for extruder warmup ... M109 S{ desired_temp } G91 G92 E0 M300 RESPOND PREFIX="->" MSG="Unload: Phase 1 ..." M117 Unload: Phase 1 ... G1 E-{phase_1_distance} F{phase_1_velocity} M300 RESPOND PREFIX="->" MSG="Unload: Phase 2 ..." M117 Unload: Phase 2 ... G1 E-{distance+extra_distance-phase_1_distance} F{phase_2_velocity} M300 M300 RESPOND PREFIX="->" MSG="Unload: Done" M117 Unload: Done G90 [gcode_macro M300] gcode = {% set S = params.S|default(1000)|int %} ; S sets the tone frequency {% set P = params.P|default(100)|int %} ; P sets the tone duration {% set L = 0.5 %} ; L varies the PWM on time, close to 0 or 1 the tone gets a bit quieter. 0.5 is a symmetric waveform {% if S <= 0 %} ; dont divide through zero {% set F = 1 %} {% set L = 0 %} {% elif S >= 10000 %} ;max frequency set to 10kHz {% set F = 0 %} {% else %} {% set F = 1/S %} ;convert frequency to seconds {% endif %} SET_PIN PIN=beeper VALUE={L} CYCLE_TIME={F} ;Play tone G4 P{P} ;tone duration SET_PIN PIN=beeper VALUE=0 [gcode_macro PAUSE] description = Pause the actual running print rename_existing = PAUSE_BASE variable_extrude = 1.0 gcode = _enclosure_light_paused _display_light_paused M300 S700 P100 M300 S700 P100 PAUSE_BASE {% if printer.extruder.can_extrude|lower == 'true' %} G10 ; retract {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} _TOOLHEAD_PARK_PAUSE_CANCEL SET_IDLE_TIMEOUT TIMEOUT={2*60*60} [gcode_macro RESUME] description = Resume the actual running print rename_existing = RESUME_BASE gcode = _enclosure_light_printing _display_light_printing {% set extrude = printer['gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL'].extrude %} {% if 'VELOCITY' in params|upper %} {% set get_params = ('VELOCITY=' + params.VELOCITY) %} {%else %} {% set get_params = "" %} {% endif %} {% if printer.extruder.can_extrude|lower == 'true' %} M83 G1 E{extrude} F2100 {% if printer.gcode_move.absolute_extrude|lower == 'true' %} M82 {% endif %} {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} RESUME_BASE {get_params} [gcode_macro PRESENT_PRINT] gcode = G90 ; use absolute coordinates {% set z_hop = 10.0 %} {% set z_max_space = 2.0 %} {% 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 actual_z = printer.toolhead.position.z|float %} {% if actual_z < (max_z - z_hop) %} {% set z_park = actual_z + z_hop %} {% elif actual_z < (max_z - z_max_space) %} {action_respond_info("already very high")} {% else %} {% set z_park = max_z - z_max_space %} {% endif %} {% if "xyz" in printer.toolhead.homed_axes %} G0 Z{z_park} F900 G0 X{x_park} Y{y_park} F6000 {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro PRINT_END] gcode = RESPOND PREFIX="->" MSG="Print Finishing ..." M117 Print Finishing ... G91 ; use relative movement G0 Z5 F3000 ; Raise nozzle by 5mm PRESENT_PRINT M140 S0 ; turn off heatbed M104 S0 ; turn off temperature M106 S0 ; turn off fan? M107 ; turn off fan end_tones RESPOND PREFIX="->" MSG="Print Complete" M117 Print Complete _enclosure_light_idle _display_light_idle [gcode_macro _move_to_purge_spot] gcode = G90 ; use absolute coordinates g0 x10 y10 z20 F6000 [gcode_macro _wipe_and_move_to_ready] gcode = G91 G0 Z20 F6000 G4 P5000 G90 g0 x110 f10000 g0 z0.5 g0 x0 f10000 G0 X5 Y5 Z5 F6000 [gcode_macro _purge_tower] gcode = {% set z_travel_rate = 500 %} {% set radius = 2 %} {% set filament_diameter = printer.configfile.settings.extruder.filament_diameter %} {% set circumference = 3.14 * 2 * radius %} {% set width_multiplier = 1 %} {% set layer_height = 0.2 %} {% set volume = circumference * width_multiplier * layer_height %} {% set extrude_per_layer = volume / filament_diameter %} {% set feed_ratio = circumference / extrude_per_layer %} {% set mvs = 8 %} {% set max_feed_rate = (mvs / filament_diameter) * feed_ratio * 60 %} {% set fan_speed = 100 %} {% if params.FILAMENT_TYPE == "ABS" %} {% set fan_speed = 10 %} {% endif %} RESPOND MSG="max feed rate: {max_feed_rate}" RESPOND MSG="extrude per layer: {extrude_per_layer}" {% set layers = (params.PURGE_AMOUNT | default(100) | int) / extrude_per_layer %} G90 G0 Z0.10 F375 G91 M83 M106 S{ (fan_speed * (1/255) ) | int } {% for layer in range(1, layers | round | int) %} G90 G2 F{max_feed_rate if layer > 3 else 200} E{extrude_per_layer} I{radius} J{radius} G91 {% if not loop.last %} G0 Z0.2 F{z_travel_rate} {% endif %} G4 P100 {% endfor %} G10 G90 M82 _wipe_and_move_to_ready M106 S0 [gcode_macro _test_purge_sequence] gcode = PRINT_START EXTRUDER={params.EXTRUDER} BED={params.BED} PRINT_END [gcode_macro PRINT_START] gcode = _enclosure_light_printing _display_light_printing RESPOND PREFIX="->" MSG="Preparing to print ..." M117 Preparing to print ... start_tones SET_GCODE_OFFSET Z=0.0 SET_RETRACTION RETRACT_LENGTH=1 RETRACT_SPEED=45 UNRETRACT_EXTRA_LENGTH=0 UNRETRACT_SPEED=45 SET_PRESSURE_ADVANCE ADVANCE=0.0 RESPOND PREFIX="->" MSG="Heating ..." M117 Heating ... M140 S{ params.BED } ; set final bed temp M104 S{ params.EXTRUDER } ; set final nozzle temp RESPOND PREFIX="->" MSG="Updating Mesh ..." G28 ; home _move_to_purge_spot RESPOND PREFIX="->" MSG="Warming up ..." M117 Warming up ... M190 S{ params.BED } ; wait for bed temp to stabilize M109 S{ params.EXTRUDER } ; wait for nozzle temp to stabilize _purge_tower PURGE_AMOUNT=60 EXTRUDE_PER_LAYER=1.2 FILAMENT_TYPE={params.FILAMENT_TYPE} RESPOND PREFIX="->" MSG="Ready to print ..." [delayed_gcode PrinterStart] gcode = printer_start_tune RESPOND PREFIX="->" MSG="Printer Ready" _enclosure_light_idle _display_light_idle initial_duration = 0.1 [gcode_macro _PURGE_LINE] gcode = {% set ef = (15 / 200) * 1.5 %} {% set yd = 180 %} {% set xstart = 5 %} {% set extrude_speed = 1500 %} G90 ; use absolute coordinates G0 Z2.0 F1500 ; Move Z Axis up little to prevent scratching of Heat Bed G0 X{xstart} Y20 Z0.3 F1500 ; Move to start position G92 E0 ; Reset Extruder G1 X{xstart} Y{yd} Z0.3 F{extrude_speed} E{yd * ef } ; Draw the first line G0 X{xstart+1} Y{yd} Z0.3 F1500 ; Move to side a little G92 E0 ; Reset Extruder G1 X{xstart+1} Y20 Z0.3 F{extrude_speed} E{yd * ef} ; Draw the second line G92 E0 ; Reset Extruder G1 X{xstart+2} Z0.3 Y50 E{ef * 50} F{extrude_speed} ; draw a half line G10 ; retract G0 X{xstart+2} Z10.0 Y{yd} F6000 ; wipe G0 X{xstart+2} Z0.3 Y{yd} F6000 ; dab G92 E0 ; Reset Extruder ;G4 P5000 ; wait 5 sec ;G1 Z10.0 F1500 ; jerk up to detach the blob ;G1 X5 Y120 Z2.0 F500.0 ; Let it ooze a bit .. ;G1 X5 Y120 Z0.3 F5000.0 ; dab the ground ;G1 X5 Y120 Z5.0 F5000.0 ; and lift [gcode_macro start_tones] gcode = M300 S700 P200 M300 S600 P200 M300 S500 P100 M300 S500 P100 [gcode_macro end_tones] gcode = M300 S440 P200 ; Make Print Completed Tones M300 S660 P250 M300 S880 P300 [gcode_macro printer_start_tune] gcode = M300 S500 P100 [mcu] serial = /dev/serial/by-id/usb-Klipper_lpc1768_148001156520BC9524D6E260C52000F5-if00 [temperature_fan controller] sensor_pin = P0.24 sensor_type = EPCOS 100K B57560G104F pullup_resistor = 45000 pin = P2.3 min_temp = 0 max_temp = 80 cycle_time = 0.000010 kick_start_time = 1 control = pid pid_kp = 10 pid_ki = 1 pid_kd = 1 target_temp = 40.0 min_speed = 0.0 off_below = 0.3 [board_pins] aliases = EXP1_1=P1.30, EXP1_3=P1.18, EXP1_5=P1.20, EXP1_7=P1.22, EXP1_9=, EXP1_2=P0.28, EXP1_4=P1.19, EXP1_6=P1.21, EXP1_8=P1.23, EXP1_10=<5V>, EXP2_1=P0.17, EXP2_3=P3.26, EXP2_5=P3.25, EXP2_7=P1.31, EXP2_9=, EXP2_2=P0.15, EXP2_4=P0.16, EXP2_6=P0.18, EXP2_8=, EXP2_10= [stepper_x] step_pin = P2.2 dir_pin = P2.6 enable_pin = !P2.1 endstop_pin = !toolhead:gpio29 microsteps = 64 rotation_distance = 40 full_steps_per_rotation = 200 position_endstop = 215 position_min = 0 position_max = 216 homing_speed = 70 homing_positive_dir = true [tmc2208 stepper_x] uart_pin = P1.10 run_current = 0.60 interpolate = false stealthchop_threshold = 999999 [stepper_y] step_pin = P0.19 dir_pin = P0.20 enable_pin = !P2.8 endstop_pin = ^!P1.28 rotation_distance = 40 position_endstop = -5 position_min = -5 position_max = 235 homing_speed = 70 microsteps = 64 [tmc2208 stepper_y] uart_pin = P1.9 run_current = 0.60 interpolate = false stealthchop_threshold = 999999 [stepper_z] step_pin = P0.22 dir_pin = P2.11 enable_pin = !P0.21 microsteps = 64 rotation_distance = 40 full_steps_per_rotation = 200 endstop_pin = probe:z_virtual_endstop position_min = -15.0 position_max = 200 homing_speed = 40 [tmc2208 stepper_z] uart_pin = P1.8 run_current = 0.60 interpolate = false stealthchop_threshold = 999999 [heater_bed] heater_pin = P2.5 sensor_pin = P0.25 sensor_type = ATC Semitec 104GT-2 min_temp = 0 max_temp = 130 control = pid pid_kp = 74 pid_ki = 1.9 pid_kd = 700 [neopixel enclosure] pin = P1.24 chain_count = 14 color_order = GRB initial_red = 0.0 initial_green = 0.0 initial_blue = 0.0 [display] cs_pin = EXP1_3 a0_pin = EXP1_4 rst_pin = EXP1_5 encoder_pins = ^EXP2_5, ^EXP2_3 click_pin = ^!EXP1_2 lcd_type = uc1701 contrast = 63 [output_pin beeper] pin = EXP1_1 pwm = True value = 0 shutdown_value = 0 cycle_time = 0.001 [neopixel display] pin = EXP1_6 chain_count = 3 color_order = RGB initial_red = 0.1 initial_green = 0.1 initial_blue = 0.1 [temperature_sensor enclosure] sensor_type = BME280 i2c_address = 118 i2c_bus = i2c1 [mcu psu] serial = /dev/serial/by-id/usb-Klipper_rp2040_E66138935F52B324-if00 [temperature_fan psu] sensor_pin = psu:gpio29 sensor_type = Generic 3950 pullup_resistor = 100000 inline_resistor = 0 pin = psu:gpio2 min_temp = 0 max_temp = 80 hardware_pwm = True tachometer_pin = ^psu:gpio3 tachometer_ppr = 2 control = pid pid_kp = 10 pid_ki = 1 pid_kd = 1 target_temp = 40.0 min_speed = 0.05 [display_template _psu_fan_speed] text = {% if 'temperature_fan psu' in printer %} {% set speed = printer['temperature_fan psu'].speed %} { "~fan1~ PWR {:>8.8%}".format(speed) } {% endif %} [display_template _psu_temp] text = {% if 'temperature_fan psu' in printer %} {% set temp = printer['temperature_fan psu'].temperature %} {% set target = printer['temperature_fan psu'].target %} { "TEMP {:>5.4}/{:>5.4}".format(temp, target) } {% endif %} [display_template _psu_rpm] text = {% if 'temperature_fan psu' in printer %} {% set rpm = printer['temperature_fan psu'].rpm %} { "~fan1~ RPM {:>9.8}".format(rpm | round(1)) } {% endif %} [display_data psu _speed] position = 0,0 text = { render("_psu_fan_speed") } [display_data psu _rpm] position = 1,0 text = { render("_psu_rpm") } [display_data psu _temp] position = 2,0 text = { render("_psu_temp") } [display psu] display_group = psu lcd_type = ssd1306 i2c_mcu = psu i2c_bus = i2c0a contrast = 239 [mcu toolhead] canbus_uuid = 50aa2201e643 [servo klicky_servo] pin = toolhead:gpio28 maximum_servo_angle = 180 minimum_pulse_width = 0.0005 maximum_pulse_width = 0.0025 [probe] pin = !toolhead:gpio25 x_offset = 0 y_offset = 25 speed = 7.5 lift_speed = 200 samples = 3 sample_retract_dist = 0.8 samples_result = median samples_tolerance = 0.005 samples_tolerance_retries = 20 z_offset = 15 [adxl345] cs_pin = toolhead:gpio1 spi_bus = spi0a [temperature_sensor toolhead_mcu] sensor_type = temperature_mcu sensor_mcu = toolhead min_temp = 0 max_temp = 100 [temperature_sensor toolhead_ntc] sensor_type = ATC Semitec 104GT-2 sensor_pin = toolhead:gpio26 min_temp = -50 max_temp = 350 [extruder] step_pin = toolhead:gpio9 dir_pin = toolhead:gpio10 enable_pin = !toolhead:gpio7 heater_pin = toolhead:gpio6 sensor_pin = toolhead:gpio27 microsteps = 64 nozzle_diameter = 0.400 control = pid sensor_type = ATC Semitec 104NT-4-R025H42G pid_kp = 19 pid_ki = 1.5 pid_kd = 58 min_temp = 0 max_temp = 270 max_extrude_only_distance = 1000.0 filament_diameter = 1.750 max_extrude_cross_section = 100.0 gear_ratio = 3:1 rotation_distance = 23.132 [tmc2209 extruder] uart_pin = toolhead:gpio8 run_current = 0.6 stealthchop_threshold = 999999 [fan] pin = toolhead:gpio13 [heater_fan toolhead_hotend_fan] pin = toolhead:gpio14 heater = extruder heater_temp = 50.0 shutdown_speed = 0 fan_speed = 1.0 [neopixel toolhead] pin = toolhead:gpio12 chain_count = 3 initial_red = 0.0 initial_green = 0.0 initial_blue = 0.0 [display_template _printing_time] text = {% set ptime = printer.idle_timeout.printing_time %} {% set fpos = printer.virtual_sdcard.file_position %} {% set fsize = printer.virtual_sdcard.file_size %} {% set bytes_per_sec = fpos / ptime if ptime > 0 else 0 %} {% set bytes_left = fsize - fpos %} {% set file_time_left = bytes_left / bytes_per_sec if bytes_per_sec > 0 else 0 %} { "%02d:%02d" % (file_time_left // (60 * 60), (file_time_left // 60) % 60) } [menu __main __tune] type = list name = Tune [menu __main __octoprint] type = list name = Current Print [menu __main __octoprint __pause] type = command enable = {printer.idle_timeout.state == "Printing" and not printer.pause_resume.is_paused } name = Pause gcode = PAUSE [menu __main __octoprint __resume] type = command enable = {not printer.idle_timeout.state == "Printing" and printer.pause_resume.is_paused} name = Resume gcode = RESUME [menu __main __octoprint __clear_pause] type = command enable = {not printer.idle_timeout.state == "Printing" and printer.pause_resume.is_paused} name = Cancel gcode = CLEAR_PAUSE [menu __main __octoprint __abort] type = command enable = {printer.idle_timeout.state == "Printing" and not printer.pause_resume.is_paused} name = Abort gcode = CANCEL_PRINT [gcode_macro _display_light_printing] gcode = SET_LED LED=display GREEN=0.6 RED=0.6 BLUE=0.6 [gcode_macro _display_light_idle] gcode = SET_LED LED=display GREEN=0.1 RED=0.1 BLUE=0.1 [gcode_macro _display_light_paused] gcode = SET_LED LED=display GREEN=1 RED=0 BLUE=0 [gcode_macro _display_light_off] gcode = SET_LED LED=display GREEN=0 RED=0 BLUE=0 [gcode_macro _enclosure_light_printing] gcode = SET_LED LED=enclosure GREEN=1 RED=1 BLUE=1 [gcode_macro _enclosure_light_idle] gcode = SET_LED LED=enclosure GREEN=0.01 RED=0.01 BLUE=0.01 [gcode_macro _enclosure_light_paused] gcode = SET_LED LED=enclosure GREEN=1 RED=0 BLUE=0 [gcode_macro _enclosure_light_off] gcode = SET_LED LED=enclosure GREEN=0 RED=0 BLUE=0 [temperature_sensor host] sensor_type = temperature_host [gcode_macro _servo_test_angle] gcode = {% set ANGLE = params.ANGLE|int %} SET_SERVO SERVO=klicky_servo ANGLE={ANGLE} G4 P250 SET_SERVO SERVO=klicky_servo WIDTH=0.0 [gcode_macro _User_Variables] variable_verbose = False variable_debug = False variable_travel_speed = 1000 variable_move_accel = 1000 variable_dock_speed = 50 variable_release_speed = 75 variable_z_drop_speed = 20 variable_safe_z = 15 variable_enable_z_hop = True variable_max_bed_y = 225 variable_max_bed_x = 216 variable_z_endstop_x = 110 variable_z_endstop_y = 110 variable_docklocation_x = 110 variable_docklocation_y = 110 variable_docklocation_z = -128 variable_enable_dock_servo = True variable_servo_name = 'klicky_servo' variable_servo_deploy = 5 variable_servo_retract = 70 variable_servo_delay = 0 variable_dockmove_x = -40 variable_dockmove_y = 0 variable_dockmove_z = 0 variable_attachmove_x = 0 variable_attachmove_y = 0 variable_attachmove_z = 0 variable_umbilical = False variable_umbilical_x = 15 variable_umbilical_y = 15 variable_park_toolhead = True variable_parkposition_x = 110 variable_parkposition_y = 110 variable_parkposition_z = 20 variable_version = 1 variable_attachmove2_x = 0 variable_attachmove2_y = 0 variable_attachmove2_z = 0 variable_home_backoff_x = 10 variable_home_backoff_y = 10 variable_override_homing = '' variable_dock_on_zhome = True gcode = {% set Mx = printer['configfile'].config["stepper_x"]["position_max"]|float %} {% set My = printer['configfile'].config["stepper_y"]["position_max"]|float %} {% set Ox = printer['configfile'].config["probe"]["x_offset"]|float %} {% set Oy = printer['configfile'].config["probe"]["y_offset"]|float %} {% set Oz = printer['configfile'].config["probe"]["z_offset"]|float %} {% if z_endstop_x != 0 or z_endstop_y != 0 %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_x VALUE={ z_endstop_x } SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_y VALUE={ z_endstop_y } {% else %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_x VALUE={ (Mx * 0.5) - Ox } SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_y VALUE={ (My * 0.5) - Oy } {% endif %} [respond] default_type = command [gcode_macro _Probe_Variables] variable_probe_attached = False variable_probe_state = False variable_probe_lock = False variable_z_endstop_x = 0 variable_z_endstop_y = 0 gcode = [gcode_macro _klicky_check_variables_version] gcode = {% set version = printer["gcode_macro _User_Variables"].version|default(0) %} {% if version != 1 %} { action_raise_error("Please update your klicky variables, there are some functionality changes") } {% endif %} [gcode_macro _KlickyDebug] gcode = {% set message = params.MSG %} {% set debug = printer["gcode_macro _User_Variables"].debug|default(False) %} {% if debug %} { action_respond_info(message) } {% endif %} [gcode_macro _exit_point] gcode = {% set function = 'pre_' ~ params.FUNCTION %} {% set move = params.MOVE|default(0) %} {% set speed = printer["gcode_macro _User_Variables"].travel_speed %} M400 SET_VELOCITY_LIMIT ACCEL={printer.configfile.settings.printer.max_accel} SET_VELOCITY_LIMIT ACCEL_TO_DECEL={printer.configfile.settings.printer.max_accel_to_decel} RESTORE_GCODE_STATE NAME={function} MOVE={move} MOVE_SPEED={speed} [gcode_macro _entry_point] gcode = {% set function = 'pre_' ~ params.FUNCTION %} {% set move_accel = printer["gcode_macro _User_Variables"].move_accel|default(1000) %} M400 SAVE_GCODE_STATE NAME={function} SET_GCODE_OFFSET Z=0 G90 SET_VELOCITY_LIMIT ACCEL={move_accel} [gcode_macro _Homing_Variables] gcode = {% set reset = params.RESET|default(0) %} {% if reset %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_lock VALUE={ False } {% endif %} [gcode_macro Attach_Probe_Lock] description = Attaches Klicky Probe, can only be docked after unlocking gcode = Attach_Probe _Probe_Lock [gcode_macro Dock_Probe_Unlock] description = Docks Klicky Probe even if it was locked gcode = _Probe_Unlock Dock_Probe [gcode_macro _Probe_Unlock] description = Unlocks Klicky Probe state gcode = _KlickyDebug msg="_Probe_Lock setting probe_lock variable to False" SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_lock VALUE={ False } [gcode_macro _Probe_Lock] description = Locks Klicky Probe state gcode = _KlickyDebug msg="_Probe_Lock setting probe_lock variable to True" SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_lock VALUE={ True } [gcode_macro _DeployKlickyDock] description = Deploys Klicky servo-controlled dock gcode = {% set enable_dock_servo = printer["gcode_macro _User_Variables"].enable_dock_servo|default(False) %} {% set servo_delay = printer["gcode_macro _User_Variables"].servo_delay|default(1000) %} {% set servo_name = printer["gcode_macro _User_Variables"].servo_name %} {% set servo_deploy = printer["gcode_macro _User_Variables"].servo_deploy|default(360) %} M400 {% if enable_dock_servo != False %} _KlickyDebug msg="_DeployKlickyDock Klicky servo configuration enabled" {% if servo_deploy == 360 %} { action_raise_error("Klicky: servo active on klicky-variables, but no servo deploy angle specified") } {% endif %} _KlickyDebug msg="_DeployKlickyDock SET_SERVO SERVO={servo_name|string} ANGLE={servo_deploy|int}" SET_SERVO SERVO={servo_name|string} ANGLE={servo_deploy|int} M400 G4 P{servo_delay|int} _KlickyDebug msg="_DeployKlickyDock SET_SERVO SERVO={servo_name|string} WIDTH=0" SET_SERVO SERVO={servo_name|string} WIDTH=0 {% elif printer["gcode_macro _DeployDock"] is defined %} _KlickyDebug msg="_DeployKlickyDock calling _DeployDock" _DeployDock {% endif %} [gcode_macro _RetractKlickyDock] description = Retracts Klicky servo-controlled dock gcode = {% set enable_dock_servo = printer["gcode_macro _User_Variables"].enable_dock_servo|default(False) %} {% set servo_delay = printer["gcode_macro _User_Variables"].servo_delay|default(1000) %} {% set servo_name = printer["gcode_macro _User_Variables"].servo_name %} {% set servo_retract = printer["gcode_macro _User_Variables"].servo_retract|default(360) %} M400 {% if enable_dock_servo != False %} _KlickyDebug msg="_RetractKlickyDock Klicky servo configuration enabled" {% if servo_retract == 360 %} { action_raise_error("Klicky: servo active on klicky-variables, but no servo retract angle specified") } {% endif %} _KlickyDebug msg="_RetractKlickyDock SET_SERVO SERVO={servo_name|string} ANGLE={servo_retract|int}" SET_SERVO SERVO={servo_name|string} ANGLE={servo_retract|int} M400 G4 P{servo_delay|int} _KlickyDebug msg="_RetractKlickyDock SET_SERVO SERVO={servo_name|string} WIDTH=0" SET_SERVO SERVO={servo_name|string} WIDTH=0 {% elif printer["gcode_macro _RetractDock"] is defined %} _KlickyDebug msg="_RetractKlickyDock calling _RetractDock" _RetractDock {% endif %} [gcode_macro Attach_Probe] description = Attaches Klicky Probe gcode = {% set goback = params.BACK|default(0) %} {% set probe_attached = printer["gcode_macro _Probe_Variables"].probe_attached %} {% set probe_lock = printer["gcode_macro _Probe_Variables"].probe_lock %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} {% set dockmove_x = printer["gcode_macro _User_Variables"].dockmove_x|default(0) %} {% set dockmove_y = printer["gcode_macro _User_Variables"].dockmove_y|default(0) %} {% set dockmove_z = printer["gcode_macro _User_Variables"].dockmove_z|default(0) %} {% set docklocation_x = printer["gcode_macro _User_Variables"].docklocation_x %} {% set docklocation_y = printer["gcode_macro _User_Variables"].docklocation_y %} {% set docklocation_z = printer["gcode_macro _User_Variables"].docklocation_z %} {% set attachmove_x = printer["gcode_macro _User_Variables"].attachmove_x|default(0) %} {% set attachmove_y = printer["gcode_macro _User_Variables"].attachmove_y|default(0) %} {% set attachmove_z = printer["gcode_macro _User_Variables"].attachmove_z|default(0) %} {% set attachmove2_x = printer["gcode_macro _User_Variables"].attachmove2_x|default(0) %} {% set attachmove2_y = printer["gcode_macro _User_Variables"].attachmove2_y|default(0) %} {% set attachmove2_z = printer["gcode_macro _User_Variables"].attachmove2_z|default(0) %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z %} {% set enable_z_hop = printer["gcode_macro _User_Variables"].enable_z_hop %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set dock_feedrate = printer["gcode_macro _User_Variables"].dock_speed * 60 %} {% set release_feedrate = printer["gcode_macro _User_Variables"].release_speed * 60 %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} _entry_point function=Attach_Probe {% if not 'xy' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X and Y Axis First!") } _KlickyDebug msg="Attach_Probe Axis homed" {% elif not probe_attached and not probe_lock %} _KlickyDebug msg="Attach_Probe going to attach probe" {% if verbose %} { action_respond_info("Attaching Probe") } {% endif %} _KLICKY_STATUS_BUSY {% if not 'z' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Resetting Z position to zero") } {% endif %} _KlickyDebug msg="Attach_Probe Z not homed, setting position as X=Y=Z=0" SET_KINEMATIC_POSITION Z=0 {% if not enable_z_hop %} _KlickyDebug msg="Attach_Probe z_hop disabled" {% set safe_z = 0 %} {% endif %} {% endif %} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="Attach_Probe toolhead too low, raising it by {safe_z}mm" {% if verbose %} { action_respond_info("moving to a safe Z distance") } {% endif %} G0 Z{safe_z} F{z_drop_feedrate} {% endif %} {% if not 'z' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Resetting Z position to zero, duplicate?") } {% endif %} _KlickyDebug msg="Attach_Probe Z not homed, setting position as X=Y=Z=0" SET_KINEMATIC_POSITION Z=0 {% endif %} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="Attach_Probe toolhead too low, raising it by {safe_z}mm, duplicate?" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Umbilical_Path _entry_point function=Attach_Probe_intern _KlickyDebug msg="Attach_Probe moving near the dock with G0 X{docklocation_x|int - attachmove_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove_y|int - attachmove2_y} F{travel_feedrate}" G0 X{docklocation_x|int - attachmove_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove_y|int - attachmove2_y} F{travel_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving near the dock with G0 Z{docklocation_z|int - attachmove_z|int - attachmove2_z|int} F{dock_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int - attachmove2_z|int} F{dock_feedrate} _KlickyDebug msg="Attach_Probe moving near the dock with G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate} {% endif %} _DeployKlickyDock {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving to the dock with G0 Z{docklocation_z} F{dock_feedrate}" G0 Z{docklocation_z} F{dock_feedrate} {% endif %} _KlickyDebug msg="Attach_Probe moving to the dock with G0 X{docklocation_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove2_y} F{dock_feedrate}" G0 X{docklocation_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove2_y} F{dock_feedrate} _KlickyDebug msg="Attach_Probe moving to the dock with G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate}" G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving from the dock to G0 Z{docklocation_z|int - attachmove_z|int} F{z_drop_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int} F{z_drop_feedrate} {% endif %} _KlickyDebug msg="Attach_Probe moving from the dock to G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{release_feedrate}" G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{release_feedrate} _RetractKlickyDock {% if ((printer.toolhead.position.z < safe_z) or (docklocation_z != -128 and docklocation_z < safe_z ))%} _KlickyDebug msg="Attach_Probe moving to a safe Z position: G0 Z{safe_z} F{z_drop_feedrate} from {printer.toolhead.position.z}" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Park_Toolhead _CheckProbe action=attach _exit_point function=Attach_Probe_intern move={goback} _KLICKY_STATUS_READY {% elif probe_lock %} {% if verbose %} { action_respond_info("Probe locked!") } {% endif %} _KlickyDebug msg="Attach_Probe probe locked not attaching probe" _CheckProbe action=query {% else %} {% if verbose %} { action_respond_info("Probe already attached!") } {% endif %} _KlickyDebug msg="Attach_Probe probe already attached, doing nothing" _CheckProbe action=query {% endif %} _exit_point function=Attach_Probe [gcode_macro Dock_Probe] description = Docks Klicky Probe gcode = {% set goback = params.back|default(0) %} {% set probe_attached = printer["gcode_macro _Probe_Variables"].probe_attached %} {% set probe_lock = printer["gcode_macro _Probe_Variables"].probe_lock %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} {% set dockmove_x = printer["gcode_macro _User_Variables"].dockmove_x|default(0) %} {% set dockmove_y = printer["gcode_macro _User_Variables"].dockmove_y|default(0) %} {% set dockmove_z = printer["gcode_macro _User_Variables"].dockmove_z|default(0) %} {% set docklocation_x = printer["gcode_macro _User_Variables"].docklocation_x %} {% set docklocation_y = printer["gcode_macro _User_Variables"].docklocation_y %} {% set docklocation_z = printer["gcode_macro _User_Variables"].docklocation_z %} {% set attachmove_x = printer["gcode_macro _User_Variables"].attachmove_x|default(0) %} {% set attachmove_y = printer["gcode_macro _User_Variables"].attachmove_y|default(0) %} {% set attachmove_z = printer["gcode_macro _User_Variables"].attachmove_z|default(0) %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set dock_feedrate = printer["gcode_macro _User_Variables"].dock_speed * 60 %} {% set release_feedrate = printer["gcode_macro _User_Variables"].release_speed * 60 %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% if not 'xyz' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X, Y and Z Axis First!") } {% endif %} _KlickyDebug msg="Dock_Probe Axis homed" _entry_point function=Dock_Probe {% if probe_attached and not probe_lock %} _KlickyDebug msg="Dock_Probe going to dock probe" {% if verbose %} { action_respond_info("Docking Probe") } {% endif %} _KLICKY_STATUS_BUSY {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="Dock_Probe toolhead too low, raising it to {safe_z}mm" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Umbilical_Path _KlickyDebug msg="Dock_Probe moving near the dock with G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{travel_feedrate}" G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{travel_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Dock_Probe moving near the dock with G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate} {% endif %} _DeployKlickyDock _KlickyDebug msg="Dock_Probe moving to the dock with G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate}" G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving to the dock with G0 Z{docklocation_z} F{dock_feedrate}" G0 Z{docklocation_z} F{dock_feedrate} {% endif %} {% if docklocation_z != -128 %} _KlickyDebug msg="Dock_Probe moving from the dock to G0 Z{docklocation_z|int + dockmove_z|int} F{release_feedrate}" G0 Z{docklocation_z|int + dockmove_z|int} F{release_feedrate} {% endif %} _KlickyDebug msg="Dock_Probe moving from the dock to G0 X{docklocation_x|int + dockmove_x|int} Y{docklocation_y|int + dockmove_y|int} F{release_feedrate}" G0 X{docklocation_x|int + dockmove_x|int} Y{docklocation_y|int + dockmove_y|int} F{release_feedrate} _RetractKlickyDock _KlickyDebug msg="Dock_Probe moving away from the dock to G0 X{docklocation_x|int + dockmove_x|int - attachmove_x|int} Y{docklocation_y|int + dockmove_y|int - attachmove_y|int} F{release_feedrate}" G0 X{docklocation_x|int + dockmove_x|int - attachmove_x|int} Y{docklocation_y|int + dockmove_y|int - attachmove_y|int} F{release_feedrate} {% if ((printer.toolhead.position.z < safe_z) or (docklocation_z != -128 and docklocation_z < safe_z ))%} _KlickyDebug msg="Dock_Probe moving to a safe Z position: G0 Z{safe_z} F{z_drop_feedrate} from {printer.toolhead.position.z}" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Park_Toolhead G4 P1000 _CheckProbe action=dock _KLICKY_STATUS_READY {% elif probe_lock %} {% if verbose %} { action_respond_info("Probe locked") } {% endif %} _KlickyDebug msg="Dock_Probe probe locked not docking probe" _CheckProbe action=query {% else %} {% if verbose %} { action_respond_info("Probe already docked") } {% endif %} _KlickyDebug msg="Dock_Probe probe already docked, doing nothing" _CheckProbe action=query {% endif %} _exit_point function=Dock_Probe move={goback} [gcode_macro PROBE_CALIBRATE] rename_existing = _PROBE_CALIBRATE description = Calibrate the probes z_offset with klicky automount gcode = {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set max_x = printer["gcode_macro _User_Variables"].max_bed_x|float %} {% set max_y = printer["gcode_macro _User_Variables"].max_bed_y|float %} {% set probe_offset_x = printer['configfile'].config["probe"]["x_offset"]|float %} {% set probe_offset_y = printer['configfile'].config["probe"]["y_offset"]|float %} {% if not 'xyz' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X, Y and Z Axis First!") } {% endif %} _KlickyDebug msg="probe_calibrate Axis homed" _KlickyDebug msg="probe_calibrate Variables max_x={max_x},max_y={max_y},probe_offset_x={probe_offset_x},probe_offset_y={probe_offset_y}" {% if printer['gcode_move'].position.y > (max_y - probe_offset_y) or printer['gcode_move'].position.y < - probe_offset_y or printer['gcode_move'].position.x > (max_x - probe_offset_x) or printer['gcode_move'].position.x < - probe_offset_x %} { action_raise_error("Must perform PROBE_CALIBRATE with the probe above the BED, check klicky_variables bed size!") } {% endif%} _CheckProbe action=query G90 Attach_Probe back=1 _KLICKY_STATUS_CALIBRATING_Z _KlickyDebug msg="probe_calibrate calling klipper probe_calibrate" _PROBE_CALIBRATE {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} M118 moving the toolhead 20 mm from the bed _KlickyDebug msg="probe_calibrate Moving Z up by 20mm" TESTZ Z=20 M118 remove manually the probe and continue calibration _KLICKY_STATUS_READY [gcode_macro PROBE_ACCURACY] rename_existing = _PROBE_ACCURACY description = Probe Z-height accuracy at current XY position with klicky automount gcode = {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set max_x = printer["gcode_macro _User_Variables"].max_bed_x|float %} {% set max_y = printer["gcode_macro _User_Variables"].max_bed_y|float %} {% set probe_offset_x = printer['configfile'].config["probe"]["x_offset"]|float %} {% set probe_offset_y = printer['configfile'].config["probe"]["y_offset"]|float %} {% if not 'xyz' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X, Y and Z Axis First!") } {% endif %} _KlickyDebug msg="probe_accuracy Axis homed" _KlickyDebug msg="probe_accuracy Variables max_x={max_x},max_y={max_y},probe_offset_x={probe_offset_x},probe_offset_y={probe_offset_y}" _entry_point function=PROBE_ACCURACY {% if printer['gcode_move'].position.y > (max_y - probe_offset_y) or printer['gcode_move'].position.y < - probe_offset_y or printer['gcode_move'].position.x > (max_x - probe_offset_x) or printer['gcode_move'].position.x < - probe_offset_x %} { action_raise_error("Must perform PROBE_ACCURACY with the probe above the BED, check klicky_variables bed size!") } {% endif%} _CheckProbe action=query Attach_Probe back=1 _KlickyDebug msg="probe_accuracy calling klipper probe accuracy" _PROBE_ACCURACY {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} Dock_Probe back=1 _exit_point function=PROBE_ACCURACY move=1 [force_move] enable_force_move = True [homing_override] axes = xyz gcode = _User_Variables {% set verbose = printer["gcode_macro _User_Variables"].verbose %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z %} {% set enable_z_hop = printer["gcode_macro _User_Variables"].enable_z_hop %} {% set kinematic_z = 0 %} {% set dock_on_zhome = printer["gcode_macro _User_Variables"].dock_on_zhome|default(True) %} {% set attachmove_x = printer["gcode_macro _User_Variables"].attachmove_x|default(0) %} {% set attachmove_y = printer["gcode_macro _User_Variables"].attachmove_y|default(0) %} {% set attachmove_z = printer["gcode_macro _User_Variables"].attachmove_z|default(0) %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set home_backoff_x = printer["gcode_macro _User_Variables"].home_backoff_x|default(0) %} {% set home_backoff_y = printer["gcode_macro _User_Variables"].home_backoff_y|default(0) %} {% set override_homing = printer["gcode_macro _User_Variables"].override_homing|default('') %} _klicky_check_variables_version _CheckProbe action=query {% set home_x, home_y, home_z, leave_probe_attached = False, False, False, False %} {% if 'PROBE_LOCK' in params%} {% if verbose %} { action_respond_info("PROBE_LOCK = True") } {% endif %} {% set leave_probe_attached = True %} {% endif %} {% if not 'X' in params and not 'Y' in params and not 'Z' in params %} {% set home_x, home_y, home_z = True, True, True %} _KlickyDebug msg="homing_override goint to home all axes" {% else %} {% if 'X' in params %} {% set home_x = True %} _KlickyDebug msg="homing_override goint to home X" {% endif %} {% if 'Y' in params %} {% set home_y = True %} _KlickyDebug msg="homing_override goint to home Y" {% endif %} {% if 'Z' in params %} {% set home_z = True %} _KlickyDebug msg="homing_override goint to home Z" {% endif %} {% if 'X' in params and 'Y' in params and 'Z' in params %} _Homing_Variables reset=1 _KlickyDebug msg="homing_override goint to home all axes" {% endif %} {% endif %} _entry_point function=homing_override _KLICKY_STATUS_HOMING {% if 'z' not in printer.toolhead.homed_axes %} {% if not enable_z_hop %} _KlickyDebug msg="homing_override z_hop disabled" {% set kinematic_z = safe_z %} {% set safe_z = 0 %} {% endif %} {% endif %} {% if home_z %} {% if 'z' in printer.toolhead.homed_axes %} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="homing_override toolhead too low, with homed axes, raising it to {safe_z}mm" {% if verbose %} { action_respond_info("moving to a safe Z distance") } {% endif %} G0 Z{safe_z} F{z_drop_feedrate} {% endif %} {% else %} {% if verbose %} { action_respond_info("Z not homed, forcing full G28") } {% endif %} _KlickyDebug msg="homing_override Z not homed, setting position as X=Y=0 Z={kinematic_z}" SET_KINEMATIC_POSITION X=0 Y=0 Z={kinematic_z} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="homing_override toolhead too low, raising it to {safe_z}mm" {% if verbose %} { action_respond_info("moving to a safe Z distance") } {% endif %} G0 Z{safe_z} F{z_drop_feedrate} {% endif %} {% set home_x, home_y, home_z = True, True, True %} {% endif %} {% endif %} {% if ((attachmove_y == 0 and override_homing == '' ) or (override_homing == 'Y'))%} {% if home_y %} {% if override_homing == 'Y' %} _KlickyDebug msg="homing_override Y homing first override, due to override_homing = Y" {% else %} _KlickyDebug msg="homing_override Y homing first override, due to attachmove_y = 0" {% endif %} {% if verbose %} { action_respond_info("Homing Y") } {% endif %} {% if printer["gcode_macro _HOME_Y"] is defined %} _KlickyDebug msg="homing_override calling _HOME_Y external script to handle the Y homing" _HOME_Y {% else %} _KlickyDebug msg="homing_override Homing Y G28 Y0" G28 Y0 {% if home_backoff_y != 0 %} {% if (printer.configfile.settings.stepper_y.position_endstop > (printer.configfile.settings.stepper_y.position_min|default(0) + printer.configfile.settings.stepper_y.position_max)/2) %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop-home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop - home_backoff_y|int} F{travel_feedrate} {% else %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate} {%endif %} {%endif %} {% endif %} {% endif %} {% set home_y = False %} {% endif %} {% if home_x %} {% if verbose %} { action_respond_info("Homing X") } {% endif %} {% if printer["gcode_macro _HOME_X"] is defined %} _KlickyDebug msg="homing_override calling _HOME_X external script to handle the X homing" _HOME_X {% else %} _KlickyDebug msg="homing_override Homing X, G28 X0" G28 X0 {% if home_backoff_x != 0 %} {% if (printer.configfile.settings.stepper_x.position_endstop > (printer.configfile.settings.stepper_x.position_min|default(0) + printer.configfile.settings.stepper_x.position_max)/2) %} _KlickyDebug msg="homing_override backing off X endstop, G0 X{printer.configfile.settings.stepper_x.position_endstop - home_backoff_x|int} F{travel_feedrate}" G0 X{printer.configfile.settings.stepper_x.position_endstop - home_backoff_x|int} F{travel_feedrate} {% else %} _KlickyDebug msg="homing_override backing off X endstop, G0 X{printer.configfile.settings.stepper_x.position_endstop + home_backoff_x|int} F{travel_feedrate}" G0 X{printer.configfile.settings.stepper_x.position_endstop + home_backoff_x|int} F{travel_feedrate} {%endif %} {%endif %} {% endif %} {% endif %} {% if home_y %} {% if verbose %} { action_respond_info("Homing Y") } {% endif %} {% if printer["gcode_macro _HOME_Y"] is defined %} _KlickyDebug msg="homing_override calling _HOME_Y external script to handle the Y homing" _HOME_Y {% else %} _KlickyDebug msg="homing_override Homing Y, G28 Y0" G28 Y0 {% if home_backoff_y != 0 %} {% if (printer.configfile.settings.stepper_y.position_endstop > (printer.configfile.settings.stepper_y.position_min|default(0) + printer.configfile.settings.stepper_y.position_max)/2) %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop - home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop - home_backoff_y|int} F{travel_feedrate} {% else %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate} {%endif %} {%endif %} {% endif %} {% endif %} {% if home_z %} {% if verbose %} { action_respond_info("Homing Z") } {% endif %} {% if printer['configfile'].config["stepper_z"]["endstop_pin"] == 'probe:z_virtual_endstop' %} _KlickyDebug msg="homing_override probe configured as a virtual Z endstop attaching probe" Attach_Probe {% if leave_probe_attached %} _Probe_Lock {% endif %} {% elif dock_on_zhome == True %} Dock_Probe {% endif %} _Home_Z {% if printer['configfile'].config["stepper_z"]["endstop_pin"] == 'probe:z_virtual_endstop' %} _KlickyDebug msg="homing_override probe no longer required, docking probe" Dock_Probe {% elif dock_on_zhome == False %} Dock_Probe {% endif %} {% endif %} _CheckProbe action=query _Park_Toolhead _exit_point function=homing_override _KLICKY_STATUS_READY [gcode_macro _Umbilical_Path] gcode = {% set umbilical = printer["gcode_macro _User_Variables"].umbilical %} {% set umbilical_x = printer["gcode_macro _User_Variables"].umbilical_x %} {% set umbilical_y = printer["gcode_macro _User_Variables"].umbilical_y %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% if umbilical %} _entry_point function=Umbilical_Path _KlickyDebug msg="_Umbilical_Path moving to G0 X{umbilical_x} Y{umbilical_y} Z{safe_z} F{travel_feedrate}" G0 X{umbilical_x} Y{umbilical_y} Z{safe_z} F{travel_feedrate} _exit_point function=Umbilical_Path {% endif %} [gcode_macro _Home_Z] gcode = {% set z_endstop_x = printer["gcode_macro _Probe_Variables"].z_endstop_x %} {% set z_endstop_y = printer["gcode_macro _Probe_Variables"].z_endstop_y %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} _entry_point function=Home_Z {% if not 'xy' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X and Y Axis First!") } {% else %} _KlickyDebug msg="_Home_Z XY Axis homed" {% if not 'z' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Resetting Z position to zero") } {% endif %} _KlickyDebug msg="_Home_Z Z not homed, setting position as X=Y=Z=0" SET_KINEMATIC_POSITION Z=0 {% endif %} _KlickyDebug msg="_Home_Z moving to Z endstop position G0 X{z_endstop_x} Y{z_endstop_y} F{travel_feedrate}" G0 X{z_endstop_x} Y{z_endstop_y} F{travel_feedrate} _KlickyDebug msg="_Home_Z Homing Z G28 Z" G28 Z0 _KlickyDebug msg="_Home_Z toolhead too low, raising it to {safe_z}mm" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _exit_point function=Home_Z [gcode_macro _CheckProbe] variable_probe_state = 0 gcode = Query_Probe _SetProbeState action={ params.ACTION } [gcode_macro _SetProbeState] gcode = {% set query_probe_triggered = printer.probe.last_query %} {% set action = params.ACTION|default('') %} {% if query_probe_triggered %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_attached VALUE={ False } {% else %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_attached VALUE={ True } {% endif %} {% if action == 'query' %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_state VALUE={ query_probe_triggered } {% endif %} {% if not query_probe_triggered and action == 'dock' %} { action_raise_error("Probe dock failed!") } {% endif %} {% if query_probe_triggered and action == 'attach' %} { action_raise_error("Probe attach failed!") } {% endif %} [gcode_macro _Park_Toolhead] gcode = {% set park_toolhead = printer["gcode_macro _User_Variables"].park_toolhead %} {% set parkposition_x = printer["gcode_macro _User_Variables"].parkposition_x %} {% set parkposition_y = printer["gcode_macro _User_Variables"].parkposition_y %} {% set parkposition_z = printer["gcode_macro _User_Variables"].parkposition_z %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} _entry_point function=Park_Toolhead {% if park_toolhead and 'xyz' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Parking Toolhead") } {% endif %} {% if parkposition_z == -128 %} _KlickyDebug msg="_Park_Toolhead moving to G0 X{parkposition_x} Y{parkposition_y} F{travel_feedrate}" G0 X{parkposition_x} Y{parkposition_y} F{travel_feedrate} {% else %} _KlickyDebug msg="_Park_Toolhead moving to G0 X{parkposition_x} Y{parkposition_y} Z{parkposition_z} F{travel_feedrate}" G0 X{parkposition_x} Y{parkposition_y} Z{parkposition_z} F{travel_feedrate} {% endif %} {% endif %} _exit_point function=Park_Toolhead [gcode_macro _klicky_status_ready] gcode = {% if printer['gcode_macro status_ready'] is defined %} _KlickyDebug msg="_klicky_status_ready activating the LED STATUS_READY" STATUS_READY {% endif %} [gcode_macro _klicky_status_busy] gcode = {% if printer['gcode_macro status_busy'] is defined %} _KlickyDebug msg="_klicky_status_busy activating the LED STATUS_BUSY" STATUS_BUSY {% endif %} [gcode_macro _klicky_status_leveling] gcode = {% if printer['gcode_macro status_leveling'] is defined %} _KlickyDebug msg="_klicky_status_leveling activating the LED STATUS_LEVELING" STATUS_LEVELING {% endif %} [gcode_macro _klicky_status_homing] gcode = {% if printer['gcode_macro status_homing'] is defined %} _KlickyDebug msg="_klicky_status_homing activating the LED STATUS_HOMING" STATUS_HOMING {% endif %} [gcode_macro _klicky_status_cleaning] gcode = {% if printer['gcode_macro status_cleaning'] is defined %} _KlickyDebug msg="_klicky_status_cleaning activating the LED STATUS_CLEANING" STATUS_CLEANING {% endif %} [gcode_macro _klicky_status_meshing] gcode = {% if printer['gcode_macro status_meshing'] is defined %} _KlickyDebug msg="_klicky_status_meshing activating the LED STATUS_MESHING" STATUS_MESHING {% endif %} [gcode_macro _klicky_status_calibrating_z] gcode = {% if printer['gcode_macro status_calibrating_z'] is defined %} _KlickyDebug msg="_klicky_status_calibrating_z activating the LED STATUS_CALIBRATING_Z" STATUS_CALIBRATING_Z {% endif %} [gcode_macro BED_MESH_CALIBRATE] rename_existing = _BED_MESH_CALIBRATE description = Perform Mesh Bed Leveling with klicky automount gcode = {% set V = printer["gcode_macro _User_Variables"].verbose %} {% if V %} { action_respond_info("Bed Mesh Calibrate") } {% endif %} _CheckProbe action=query G90 Attach_Probe _KLICKY_STATUS_MESHING _BED_MESH_CALIBRATE {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} Dock_Probe [gcode_macro SCREWS_TILT_CALCULATE] rename_existing = _SCREWS_TILT_CALCULATE description = gcode = {% set V = printer["gcode_macro _User_Variables"].verbose %} {% if V %} { action_respond_info("Screws Tilt Adjust") } {% endif %} _CheckProbe action=query G90 Attach_Probe _KLICKY_STATUS_LEVELING _SCREWS_TILT_CALCULATE {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} Dock_Probe [bed_mesh] speed = 5000 probe_count = 25,25 relative_reference_index = 312 horizontal_move_z = 10 split_delta_z = 0.01 move_check_distance = 3 mesh_pps = 5, 5 mesh_min = 0,25 mesh_max = 216,220 algorithm = bicubic [endstop_phase] [gcode_arcs] [input_shaper] shaper_freq_y = 34.2 shaper_type_y = ei shaper_freq_x = 50.4 shaper_type_x = mzv [printer] kinematics = corexz max_velocity = 500 max_accel = 500 max_z_velocity = 50 max_z_accel = 200 square_corner_velocity = 4.0 [screws_tilt_adjust] screw1 = 25, 5 screw1_name = front left screw screw2 = 195, 5 screw2_name = front right screw screw3 = 195, 175 screw3_name = rear right screw screw4 = 25, 175 screw4_name = rear left screw horizontal_move_z = 10 speed = 1000 screw_thread = CW-M4 [idle_timeout] gcode = CLEAR_PAUSE TURN_OFF_HEATERS M84 M300 M300 _display_light_off _enclosure_light_off [virtual_sdcard] path = ~/gcode_files [save_variables] filename = ~/klipper_config/variables.cfg [firmware_retraction] retract_length = 7 retract_speed = 75 unretract_extra_length = 0 unretract_speed = 20 [pause_resume] [display_status] [exclude_object] [bed_mesh default] version = 1 points = 0.075000, 0.081250, 0.115625, 0.068750, 0.050000, 0.050000, 0.043750, 0.053125, 0.053125, 0.075000, 0.037500, 0.068750, 0.090625, 0.081250, 0.100000, 0.084375, 0.112500, 0.137500, 0.175000, 0.165625, 0.200000, 0.318750, 0.318750, 0.321875, 0.340625 0.103125, 0.115625, 0.106250, 0.100000, 0.090625, 0.100000, 0.075000, 0.081250, 0.081250, 0.090625, 0.075000, 0.078125, 0.071875, 0.112500, 0.115625, 0.103125, 0.128125, 0.137500, 0.150000, 0.153125, 0.181250, 0.246875, 0.246875, 0.259375, 0.312500 0.134375, 0.118750, 0.143750, 0.100000, 0.100000, 0.093750, 0.084375, 0.075000, 0.081250, 0.078125, 0.059375, 0.103125, 0.118750, 0.090625, 0.115625, 0.106250, 0.100000, 0.146875, 0.125000, 0.150000, 0.190625, 0.306250, 0.300000, 0.281250, 0.318750 0.118750, 0.153125, 0.121875, 0.096875, 0.128125, 0.090625, 0.090625, 0.068750, 0.081250, 0.106250, 0.090625, 0.084375, 0.078125, 0.109375, 0.106250, 0.081250, 0.131250, 0.146875, 0.140625, 0.134375, 0.171875, 0.228125, 0.231250, 0.225000, 0.268750 0.112500, 0.115625, 0.118750, 0.090625, 0.106250, 0.081250, 0.084375, 0.065625, 0.062500, 0.053125, 0.053125, 0.056250, 0.065625, 0.065625, 0.056250, 0.056250, 0.075000, 0.100000, 0.121875, 0.109375, 0.137500, 0.243750, 0.243750, 0.234375, 0.268750 0.128125, 0.125000, 0.140625, 0.087500, 0.093750, 0.096875, 0.081250, 0.087500, 0.065625, 0.100000, 0.065625, 0.059375, 0.068750, 0.078125, 0.087500, 0.068750, 0.087500, 0.109375, 0.100000, 0.106250, 0.150000, 0.209375, 0.175000, 0.181250, 0.246875 0.137500, 0.140625, 0.125000, 0.112500, 0.090625, 0.121875, 0.081250, 0.068750, 0.053125, 0.071875, 0.056250, 0.071875, 0.068750, 0.084375, 0.078125, 0.053125, 0.068750, 0.096875, 0.081250, 0.078125, 0.131250, 0.218750, 0.221875, 0.187500, 0.215625 0.137500, 0.156250, 0.118750, 0.075000, 0.103125, 0.100000, 0.059375, 0.075000, 0.046875, 0.071875, 0.056250, 0.059375, 0.059375, 0.065625, 0.068750, 0.037500, 0.050000, 0.087500, 0.065625, 0.087500, 0.103125, 0.143750, 0.175000, 0.162500, 0.218750 0.125000, 0.109375, 0.118750, 0.084375, 0.087500, 0.068750, 0.056250, 0.037500, 0.053125, 0.031250, 0.012500, 0.025000, 0.050000, 0.062500, 0.056250, 0.037500, 0.034375, 0.075000, 0.050000, 0.075000, 0.112500, 0.203125, 0.206250, 0.184375, 0.196875 0.140625, 0.162500, 0.093750, 0.093750, 0.084375, 0.075000, 0.050000, 0.034375, 0.025000, 0.050000, 0.031250, 0.040625, 0.037500, 0.050000, 0.043750, 0.043750, 0.046875, 0.059375, 0.071875, 0.081250, 0.100000, 0.171875, 0.159375, 0.137500, 0.168750 0.121875, 0.125000, 0.121875, 0.093750, 0.062500, 0.059375, 0.043750, 0.031250, 0.021875, 0.034375, 0.021875, 0.028125, 0.028125, 0.037500, 0.025000, 0.031250, 0.031250, 0.065625, 0.059375, 0.059375, 0.100000, 0.190625, 0.196875, 0.156250, 0.159375 0.115625, 0.134375, 0.096875, 0.068750, 0.056250, 0.053125, 0.034375, 0.031250, 0.015625, 0.056250, 0.021875, 0.015625, 0.009375, 0.018750, 0.034375, 0.021875, 0.043750, 0.068750, 0.050000, 0.081250, 0.084375, 0.137500, 0.128125, 0.128125, 0.165625 0.128125, 0.137500, 0.106250, 0.081250, 0.059375, 0.037500, 0.046875, 0.021875, 0.037500, 0.028125, -0.009375, -0.012500, 0.000000, -0.006250, 0.025000, 0.009375, 0.034375, 0.056250, 0.068750, 0.059375, 0.112500, 0.206250, 0.184375, 0.156250, 0.187500 0.115625, 0.128125, 0.096875, 0.071875, 0.065625, 0.034375, 0.025000, 0.021875, 0.018750, 0.037500, -0.006250, -0.009375, -0.003125, -0.006250, 0.015625, 0.021875, 0.025000, 0.056250, 0.059375, 0.078125, 0.121875, 0.178125, 0.165625, 0.162500, 0.171875 0.118750, 0.118750, 0.093750, 0.068750, 0.065625, 0.043750, 0.037500, 0.021875, 0.025000, 0.012500, -0.031250, -0.028125, -0.006250, 0.003125, 0.009375, 0.009375, 0.034375, 0.081250, 0.056250, 0.084375, 0.106250, 0.221875, 0.190625, 0.165625, 0.181250 0.128125, 0.121875, 0.087500, 0.050000, 0.056250, 0.037500, 0.031250, 0.015625, 0.012500, 0.015625, -0.009375, 0.003125, -0.006250, 0.006250, 0.015625, 0.015625, 0.021875, 0.053125, 0.056250, 0.071875, 0.112500, 0.187500, 0.162500, 0.143750, 0.181250 0.125000, 0.112500, 0.081250, 0.106250, 0.056250, 0.059375, 0.040625, 0.012500, -0.006250, 0.000000, -0.021875, -0.006250, 0.012500, 0.037500, 0.003125, 0.000000, 0.021875, 0.065625, 0.053125, 0.078125, 0.128125, 0.237500, 0.203125, 0.181250, 0.231250 0.137500, 0.134375, 0.087500, 0.053125, 0.053125, 0.075000, 0.025000, 0.021875, 0.003125, 0.012500, -0.003125, 0.031250, 0.034375, 0.028125, 0.031250, 0.043750, 0.034375, 0.065625, 0.075000, 0.140625, 0.100000, 0.171875, 0.162500, 0.200000, 0.225000 0.128125, 0.125000, 0.093750, 0.068750, 0.053125, 0.065625, 0.037500, -0.009375, -0.006250, 0.006250, -0.025000, 0.003125, 0.031250, 0.031250, 0.050000, 0.015625, 0.043750, 0.071875, 0.075000, 0.109375, 0.156250, 0.243750, 0.221875, 0.196875, 0.215625 0.140625, 0.103125, 0.093750, 0.059375, 0.059375, 0.059375, 0.003125, -0.006250, 0.000000, 0.021875, 0.015625, 0.018750, 0.053125, 0.065625, 0.065625, 0.037500, 0.046875, 0.081250, 0.096875, 0.112500, 0.131250, 0.181250, 0.190625, 0.206250, 0.271875 0.137500, 0.100000, 0.059375, 0.053125, 0.021875, 0.018750, 0.000000, 0.003125, -0.012500, 0.003125, -0.018750, 0.018750, 0.021875, 0.028125, 0.040625, 0.028125, 0.046875, 0.087500, 0.081250, 0.121875, 0.156250, 0.281250, 0.265625, 0.259375, 0.293750 0.131250, 0.118750, 0.075000, 0.040625, 0.031250, 0.018750, 0.003125, -0.003125, -0.003125, 0.012500, -0.009375, 0.040625, 0.040625, 0.068750, 0.046875, 0.043750, 0.062500, 0.115625, 0.131250, 0.153125, 0.168750, 0.237500, 0.243750, 0.253125, 0.300000 0.131250, 0.100000, 0.065625, 0.065625, 0.028125, 0.000000, -0.009375, -0.003125, 0.000000, -0.003125, -0.009375, 0.012500, 0.025000, 0.043750, 0.053125, 0.062500, 0.062500, 0.112500, 0.146875, 0.162500, 0.203125, 0.318750, 0.318750, 0.284375, 0.321875 0.131250, 0.121875, 0.056250, 0.040625, 0.015625, -0.003125, -0.012500, -0.018750, -0.028125, 0.000000, 0.003125, 0.025000, 0.034375, 0.046875, 0.050000, 0.071875, 0.093750, 0.140625, 0.165625, 0.200000, 0.243750, 0.306250, 0.300000, 0.309375, 0.378125 0.140625, 0.109375, 0.071875, 0.059375, 0.028125, 0.018750, 0.012500, -0.028125, -0.040625, -0.009375, -0.015625, -0.018750, 0.028125, 0.025000, 0.056250, 0.068750, 0.087500, 0.134375, 0.165625, 0.196875, 0.287500, 0.400000, 0.403125, 0.371875, 0.406250 tension = 0.2 min_x = 0.0 algo = bicubic y_count = 25 mesh_y_pps = 5 min_y = 25.0 x_count = 25 max_y = 219.88 mesh_x_pps = 5 max_x = 216.0 ======================= Declaration of '__main __tune' hides previous menuitem declaration Declaration of '__main __octoprint' hides previous menuitem declaration Declaration of '__main __octoprint __pause' hides previous menuitem declaration Declaration of '__main __octoprint __resume' hides previous menuitem declaration Declaration of '__main __octoprint __abort' hides previous menuitem declaration BMxx80: Oversampling: Temp 2x Humid 2x Pressure 2x BMxx80: IIR: 1x Extruder max_extrude_ratio=41.575169 mcu 'mcu': Starting serial connect webhooks client 4128194648: New connection webhooks client 4128194648: Client info {'program': 'Moonraker', 'version': 'v0.7.1-747-g779997c'} mcu 'mcu': got {'#receive_time': 196202.139989054, u'next_clock': 942490560, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196202.089074739} mcu 'mcu': got {'#receive_time': 196202.149960128, u'next_clock': 943490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196202.14122585} Loaded MCU 'mcu' 105 commands (v0.10.0-638-g9727f00e / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34) MCU 'mcu' config: BUS_PINS_i2c1=P0.1,P0.0 BUS_PINS_i2c0=P0.28,P0.27 BUS_PINS_i2c2=P0.11,P0.10 BUS_PINS_i2c1a=P0.20,P0.19 BUS_PINS_ssp1=P0.8,P0.9,P0.7 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_ssp0=P0.17,P0.18,P0.15 PWM_MAX=255 CLOCK_FREQ=100000000 RESERVE_PINS_USB=P0.30,P0.29,P2.9 MCU=lpc1768 STATS_SUMSQ_BASE=256 mcu 'psu': Starting serial connect mcu 'mcu': got {'#receive_time': 196202.439972239, u'next_clock': 972490560, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196202.30756585} mcu 'mcu': got {'#receive_time': 196202.449971276, u'next_clock': 973490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196202.30756585} mcu 'psu': got {'#receive_time': 196202.569133424, u'next_clock': 1379368775, u'oid': 3, u'value': 16261, '#name': u'analog_in_state', '#sent_time': 196202.555161924} mcu 'mcu': got {'#receive_time': 196202.740006091, u'next_clock': 1002490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196202.30756585} mcu 'mcu': got {'#receive_time': 196202.75002285, u'next_clock': 1003490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196202.30756585} mcu 'psu': got {'#receive_time': 196202.869075091, u'next_clock': 1382968775, u'oid': 3, u'value': 16239, '#name': u'analog_in_state', '#sent_time': 196202.865430979} Loaded MCU 'psu' 105 commands (v0.10.0-638-g9727f00e / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34) MCU 'psu' config: BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_spi1c=gpio24,gpio27,gpio26 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1a=gpio8,gpio11,gpio10 STATS_SUMSQ_BASE=256 BUS_PINS_i2c1d=gpio14,gpio15 BUS_PINS_i2c1b=gpio6,gpio7 STEPPER_BOTH_EDGE=1 BUS_PINS_i2c1a=gpio2,gpio3 ADC_MAX=4095 PWM_MAX=255 BUS_PINS_spi0b=gpio4,gpio7,gpio6 MCU=rp2040 CLOCK_FREQ=12000000 mcu 'mcu': got {'#receive_time': 196203.040024368, u'next_clock': 1032490560, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196202.30756585} mcu 'mcu': got {'#receive_time': 196203.050046905, u'next_clock': 1033490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196202.30756585} mcu 'psu': got {'#receive_time': 196203.169132479, u'next_clock': 1386568775, u'oid': 3, u'value': 16310, '#name': u'analog_in_state', '#sent_time': 196202.968616405} mcu 'toolhead': Starting CAN connect Created a socket mcu 'mcu': got {'#receive_time': 196203.339982368, u'next_clock': 1062490560, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196203.291659535} mcu 'mcu': got {'#receive_time': 196203.349971701, u'next_clock': 1063490560, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196203.291659535} mcu 'psu': got {'#receive_time': 196203.469072646, u'next_clock': 1390168775, u'oid': 3, u'value': 16258, '#name': u'analog_in_state', '#sent_time': 196203.254394813} mcu 'mcu': got {'#receive_time': 196203.640039479, u'next_clock': 1092490560, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196203.291659535} mcu 'mcu': got {'#receive_time': 196203.650003683, u'next_clock': 1093490560, u'oid': 18, u'value': 31456, '#name': u'analog_in_state', '#sent_time': 196203.291659535} mcu 'psu': got {'#receive_time': 196203.769078275, u'next_clock': 1393768775, u'oid': 3, u'value': 16254, '#name': u'analog_in_state', '#sent_time': 196203.254394813} Loaded MCU 'toolhead' 107 commands (v0.10.0-638-g9727f00e / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34) MCU 'toolhead' config: BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_spi1c=gpio24,gpio27,gpio26 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1a=gpio8,gpio11,gpio10 STATS_SUMSQ_BASE=256 RECEIVE_WINDOW=192 BUS_PINS_i2c1d=gpio14,gpio15 CANBUS_FREQUENCY=500000 RESERVE_PINS_CAN=gpio4,gpio5 STEPPER_BOTH_EDGE=1 BUS_PINS_i2c1a=gpio2,gpio3 ADC_MAX=4095 PWM_MAX=255 BUS_PINS_i2c1b=gpio6,gpio7 BUS_PINS_spi0b=gpio4,gpio7,gpio6 MCU=rp2040 CLOCK_FREQ=12000000 mcu_temperature 'toolhead' nominal base=437.226612 slope=-1917.489831 MCU error during connect Traceback (most recent call last): File "/home/pi/klipper/klippy/klippy.py", line 180, in _connect cb() File "/home/pi/klipper/klippy/mcu.py", line 726, in _connect config_params = self._send_get_config() File "/home/pi/klipper/klippy/mcu.py", line 713, in _send_get_config self._name,)) error: Can not update MCU 'mcu' config as it is shutdown Build file /home/pi/klipper/klippy/../.config(1438): Tue Nov 22 20:13:43 2022 ========= Last MCU build config ========= CONFIG_LOW_LEVEL_OPTIONS=y # CONFIG_MACH_AVR is not set # CONFIG_MACH_ATSAM is not set # CONFIG_MACH_ATSAMD is not set # CONFIG_MACH_LPC176X is not set # CONFIG_MACH_STM32 is not set CONFIG_MACH_RP2040=y # CONFIG_MACH_PRU is not set # CONFIG_MACH_LINUX is not set # CONFIG_MACH_SIMU is not set CONFIG_BOARD_DIRECTORY="rp2040" CONFIG_MCU="rp2040" CONFIG_CLOCK_FREQ=12000000 CONFIG_USBSERIAL=y CONFIG_FLASH_START=0x10004000 CONFIG_FLASH_SIZE=0x200000 CONFIG_FLASH_BOOT_ADDRESS=0x10000100 CONFIG_RAM_START=0x20000000 CONFIG_RAM_SIZE=0x42000 CONFIG_STACK_SIZE=512 CONFIG_RP2040_SELECT=y CONFIG_RP2040_HAVE_BOOTLOADER=y # CONFIG_RP2040_FLASH_START_0100 is not set CONFIG_RP2040_FLASH_START_4000=y CONFIG_RP2040_STAGE2_FILE="boot2_w25q080.S" CONFIG_RP2040_STAGE2_CLKDIV=2 CONFIG_RP2040_USB=y # CONFIG_RP2040_SERIAL_UART0 is not set # CONFIG_RP2040_CANBUS is not set # CONFIG_RP2040_USBCANBUS is not set CONFIG_RP2040_CANBUS_GPIO_RX=4 CONFIG_RP2040_CANBUS_GPIO_TX=5 CONFIG_USB=y CONFIG_USB_VENDOR_ID=0x1d50 CONFIG_USB_DEVICE_ID=0x614e CONFIG_USB_SERIAL_NUMBER_CHIPID=y CONFIG_USB_SERIAL_NUMBER="12345" # # USB ids # # end of USB ids CONFIG_CANBUS_FREQUENCY=500000 CONFIG_INITIAL_PINS="" CONFIG_HAVE_GPIO=y CONFIG_HAVE_GPIO_ADC=y CONFIG_HAVE_GPIO_SPI=y CONFIG_HAVE_GPIO_I2C=y CONFIG_HAVE_GPIO_HARD_PWM=y CONFIG_HAVE_GPIO_BITBANGING=y CONFIG_HAVE_STRICT_TIMING=y CONFIG_HAVE_CHIPID=y CONFIG_HAVE_STEPPER_BOTH_EDGE=y CONFIG_INLINE_STEPPER_HACK=y ======================= Build file /home/pi/klipper/klippy/../out/klipper.dict(8097): Tue Nov 22 20:11:31 2022 Last MCU build version: v0.10.0-638-g9727f00e Last MCU build tools: gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34 Last MCU build config: BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c0e=gpio16,gpio17 CLOCK_FREQ=12000000 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 PWM_MAX=255 BUS_PINS_spi0b=gpio4,gpio7,gpio6 BUS_PINS_i2c1a=gpio2,gpio3 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c1b=gpio6,gpio7 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1d=gpio14,gpio15 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_spi1c=gpio24,gpio27,gpio26 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1a=gpio8,gpio11,gpio10 STATS_SUMSQ_BASE=256 MCU=rp2040 Build file /home/pi/klipper/klippy/../out/klipper.elf(1664744): Tue Nov 22 20:11:37 2022 mcu 'mcu': got {'#receive_time': 196203.940049831, u'next_clock': 1122490560, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196203.918312794} mcu 'mcu': got {'#receive_time': 196203.95002709, u'next_clock': 1123490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196203.918312794} mcu 'psu': got {'#receive_time': 196204.069079868, u'next_clock': 1397368775, u'oid': 3, u'value': 16240, '#name': u'analog_in_state', '#sent_time': 196203.254394813} mcu 'mcu': got {'#receive_time': 196204.240049016, u'next_clock': 1152490560, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196203.918312794} mcu 'mcu': got {'#receive_time': 196204.250073405, u'next_clock': 1153490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196203.918312794} mcu 'psu': got {'#receive_time': 196204.369072312, u'next_clock': 1400968775, u'oid': 3, u'value': 16243, '#name': u'analog_in_state', '#sent_time': 196204.238663849} mcu 'mcu': got {'#receive_time': 196204.540120664, u'next_clock': 1182490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196204.276535256} mcu 'mcu': got {'#receive_time': 196204.550084627, u'next_clock': 1183490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196204.276535256} mcu 'psu': got {'#receive_time': 196204.669074071, u'next_clock': 1404568775, u'oid': 3, u'value': 16279, '#name': u'analog_in_state', '#sent_time': 196204.238663849} mcu 'mcu': got {'#receive_time': 196204.840195293, u'next_clock': 1212490560, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196204.276535256} mcu 'mcu': got {'#receive_time': 196204.850069293, u'next_clock': 1213490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196204.276535256} mcu 'psu': got {'#receive_time': 196204.969049349, u'next_clock': 1408168775, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196204.238663849} mcu 'mcu': got {'#receive_time': 196205.140110367, u'next_clock': 1242490560, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196204.276535256} mcu 'mcu': got {'#receive_time': 196205.150069497, u'next_clock': 1243490560, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196204.276535256} mcu 'psu': got {'#receive_time': 196205.269035682, u'next_clock': 1411768775, u'oid': 3, u'value': 16265, '#name': u'analog_in_state', '#sent_time': 196205.223191534} mcu 'mcu': got {'#receive_time': 196205.44011983, u'next_clock': 1272490560, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196205.260899997} mcu 'mcu': got {'#receive_time': 196205.450077941, u'next_clock': 1273490560, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196205.260899997} mcu 'psu': got {'#receive_time': 196205.569062774, u'next_clock': 1415368775, u'oid': 3, u'value': 16264, '#name': u'analog_in_state', '#sent_time': 196205.223191534} mcu 'mcu': got {'#receive_time': 196205.740135311, u'next_clock': 1302490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196205.260899997} mcu 'mcu': got {'#receive_time': 196205.750122848, u'next_clock': 1303490560, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196205.260899997} mcu 'psu': got {'#receive_time': 196205.869048793, u'next_clock': 1418968775, u'oid': 3, u'value': 16240, '#name': u'analog_in_state', '#sent_time': 196205.223191534} mcu 'mcu': got {'#receive_time': 196206.040133848, u'next_clock': 1332490560, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196205.260899997} mcu 'mcu': got {'#receive_time': 196206.050104089, u'next_clock': 1333490560, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196205.260899997} mcu 'psu': got {'#receive_time': 196206.1690407, u'next_clock': 1422568775, u'oid': 3, u'value': 16251, '#name': u'analog_in_state', '#sent_time': 196205.223191534} mcu 'mcu': got {'#receive_time': 196206.340204681, u'next_clock': 1362490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196206.245289552} mcu 'mcu': got {'#receive_time': 196206.350169533, u'next_clock': 1363490560, u'oid': 18, u'value': 31456, '#name': u'analog_in_state', '#sent_time': 196206.245289552} mcu 'psu': got {'#receive_time': 196206.46906807, u'next_clock': 1426168775, u'oid': 3, u'value': 16280, '#name': u'analog_in_state', '#sent_time': 196206.208002366} mcu 'mcu': got {'#receive_time': 196206.640160477, u'next_clock': 1392490560, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196206.245289552} mcu 'mcu': got {'#receive_time': 196206.650092329, u'next_clock': 1393490560, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196206.245289552} mcu 'psu': got {'#receive_time': 196206.769032385, u'next_clock': 1429768775, u'oid': 3, u'value': 16254, '#name': u'analog_in_state', '#sent_time': 196206.208002366} mcu 'mcu': got {'#receive_time': 196206.940128014, u'next_clock': 1422490560, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196206.245289552} mcu 'mcu': got {'#receive_time': 196206.950145199, u'next_clock': 1423490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196206.245289552} mcu 'psu': got {'#receive_time': 196207.068961884, u'next_clock': 1433368775, u'oid': 3, u'value': 16244, '#name': u'analog_in_state', '#sent_time': 196206.208002366} mcu 'mcu': got {'#receive_time': 196207.24008531, u'next_clock': 1452490560, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'mcu': got {'#receive_time': 196207.250133495, u'next_clock': 1453490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'psu': got {'#receive_time': 196207.368963551, u'next_clock': 1436968775, u'oid': 3, u'value': 16254, '#name': u'analog_in_state', '#sent_time': 196207.192181458} mcu 'mcu': got {'#receive_time': 196207.540183143, u'next_clock': 1482490560, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'mcu': got {'#receive_time': 196207.550143903, u'next_clock': 1483490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'psu': got {'#receive_time': 196207.668942403, u'next_clock': 1440568775, u'oid': 3, u'value': 16250, '#name': u'analog_in_state', '#sent_time': 196207.192181458} mcu 'mcu': got {'#receive_time': 196207.840191199, u'next_clock': 1512490560, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'mcu': got {'#receive_time': 196207.850154902, u'next_clock': 1513490560, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'psu': got {'#receive_time': 196207.968938736, u'next_clock': 1444168775, u'oid': 3, u'value': 16255, '#name': u'analog_in_state', '#sent_time': 196207.192181458} mcu 'mcu': got {'#receive_time': 196208.140193754, u'next_clock': 1542490560, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'mcu': got {'#receive_time': 196208.150174773, u'next_clock': 1543490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196207.229410144} mcu 'psu': got {'#receive_time': 196208.268895273, u'next_clock': 1447768775, u'oid': 3, u'value': 16283, '#name': u'analog_in_state', '#sent_time': 196208.176837402} mcu 'mcu': got {'#receive_time': 196208.440201995, u'next_clock': 1572490560, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196208.214076013} mcu 'mcu': got {'#receive_time': 196208.450159717, u'next_clock': 1573490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196208.214076013} mcu 'psu': got {'#receive_time': 196208.568910365, u'next_clock': 1451368775, u'oid': 3, u'value': 16249, '#name': u'analog_in_state', '#sent_time': 196208.176837402} mcu 'mcu': got {'#receive_time': 196208.740301069, u'next_clock': 1602490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196208.214076013} mcu 'mcu': got {'#receive_time': 196208.750218476, u'next_clock': 1603490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196208.214076013} mcu 'psu': got {'#receive_time': 196208.868926513, u'next_clock': 1454968775, u'oid': 3, u'value': 16246, '#name': u'analog_in_state', '#sent_time': 196208.176837402} mcu 'mcu': got {'#receive_time': 196209.04027768, u'next_clock': 1632490560, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196208.214076013} mcu 'mcu': got {'#receive_time': 196209.050266624, u'next_clock': 1633490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196208.214076013} mcu 'psu': got {'#receive_time': 196209.168922754, u'next_clock': 1458568775, u'oid': 3, u'value': 16218, '#name': u'analog_in_state', '#sent_time': 196209.161782216} mcu 'mcu': got {'#receive_time': 196209.340354272, u'next_clock': 1662490560, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196209.199144346} mcu 'mcu': got {'#receive_time': 196209.350325383, u'next_clock': 1663490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196209.199144346} mcu 'psu': got {'#receive_time': 196209.469016068, u'next_clock': 1462168775, u'oid': 3, u'value': 16267, '#name': u'analog_in_state', '#sent_time': 196209.161782216} mcu 'mcu': got {'#receive_time': 196209.640344364, u'next_clock': 1692490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196209.199144346} mcu 'mcu': got {'#receive_time': 196209.650315475, u'next_clock': 1693490560, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196209.199144346} mcu 'psu': got {'#receive_time': 196209.769123216, u'next_clock': 1465768775, u'oid': 3, u'value': 16222, '#name': u'analog_in_state', '#sent_time': 196209.161782216} mcu 'mcu': got {'#receive_time': 196209.940362068, u'next_clock': 1722490560, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196209.199144346} mcu 'mcu': got {'#receive_time': 196209.950327475, u'next_clock': 1723490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196209.199144346} mcu 'psu': got {'#receive_time': 196210.068984234, u'next_clock': 1469368775, u'oid': 3, u'value': 16263, '#name': u'analog_in_state', '#sent_time': 196209.161782216} mcu 'mcu': got {'#receive_time': 196210.240401253, u'next_clock': 1752490560, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'mcu': got {'#receive_time': 196210.25028816, u'next_clock': 1753490560, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'psu': got {'#receive_time': 196210.369013864, u'next_clock': 1472968775, u'oid': 3, u'value': 16253, '#name': u'analog_in_state', '#sent_time': 196210.146753253} mcu 'mcu': got {'#receive_time': 196210.540334586, u'next_clock': 1782490560, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'mcu': got {'#receive_time': 196210.550342919, u'next_clock': 1783490560, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'psu': got {'#receive_time': 196210.668960697, u'next_clock': 1476568775, u'oid': 3, u'value': 16281, '#name': u'analog_in_state', '#sent_time': 196210.146753253} mcu 'mcu': got {'#receive_time': 196210.840353253, u'next_clock': 1812490560, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'mcu': got {'#receive_time': 196210.850321753, u'next_clock': 1813490560, u'oid': 18, u'value': 31456, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'psu': got {'#receive_time': 196210.968966901, u'next_clock': 1480168775, u'oid': 3, u'value': 16207, '#name': u'analog_in_state', '#sent_time': 196210.146753253} mcu 'mcu': got {'#receive_time': 196211.140304641, u'next_clock': 1842490560, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'mcu': got {'#receive_time': 196211.150317271, u'next_clock': 1843490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196210.183624549} mcu 'psu': got {'#receive_time': 196211.26894753, u'next_clock': 1483768775, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196211.1310579} mcu 'mcu': got {'#receive_time': 196211.440380141, u'next_clock': 1872490560, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196211.168416697} mcu 'mcu': got {'#receive_time': 196211.450362697, u'next_clock': 1873490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196211.168416697} mcu 'psu': got {'#receive_time': 196211.568932252, u'next_clock': 1487368775, u'oid': 3, u'value': 16240, '#name': u'analog_in_state', '#sent_time': 196211.1310579} mcu 'mcu': got {'#receive_time': 196211.740528826, u'next_clock': 1902490560, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196211.168416697} mcu 'mcu': got {'#receive_time': 196211.750529604, u'next_clock': 1903490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196211.168416697} mcu 'psu': got {'#receive_time': 196211.868839678, u'next_clock': 1490968775, u'oid': 3, u'value': 16245, '#name': u'analog_in_state', '#sent_time': 196211.1310579} mcu 'mcu': got {'#receive_time': 196212.040326178, u'next_clock': 1932490560, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196211.168416697} mcu 'mcu': got {'#receive_time': 196212.050310215, u'next_clock': 1933490560, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196211.168416697} mcu 'psu': got {'#receive_time': 196212.168804807, u'next_clock': 1494568775, u'oid': 3, u'value': 16281, '#name': u'analog_in_state', '#sent_time': 196212.115106789} mcu 'mcu': got {'#receive_time': 196212.340334733, u'next_clock': 1962490560, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196212.152685715} mcu 'mcu': got {'#receive_time': 196212.3502799, u'next_clock': 1963490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196212.152685715} mcu 'psu': got {'#receive_time': 196212.468818363, u'next_clock': 1498168775, u'oid': 3, u'value': 16249, '#name': u'analog_in_state', '#sent_time': 196212.115106789} mcu 'mcu': got {'#receive_time': 196212.640359288, u'next_clock': 1992490560, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196212.152685715} mcu 'mcu': got {'#receive_time': 196212.650308585, u'next_clock': 1993490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196212.152685715} mcu 'psu': got {'#receive_time': 196212.768865881, u'next_clock': 1501768775, u'oid': 3, u'value': 16231, '#name': u'analog_in_state', '#sent_time': 196212.115106789} mcu 'mcu': got {'#receive_time': 196212.940361788, u'next_clock': 2022490560, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196212.152685715} mcu 'mcu': got {'#receive_time': 196212.950314307, u'next_clock': 2023490560, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196212.152685715} mcu 'psu': got {'#receive_time': 196213.068785714, u'next_clock': 1505368775, u'oid': 3, u'value': 16250, '#name': u'analog_in_state', '#sent_time': 196212.115106789} mcu 'mcu': got {'#receive_time': 196213.240381603, u'next_clock': 2052490560, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196213.137058288} mcu 'mcu': got {'#receive_time': 196213.250348177, u'next_clock': 2053490560, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196213.137058288} mcu 'psu': got {'#receive_time': 196213.368797547, u'next_clock': 1508968775, u'oid': 3, u'value': 16255, '#name': u'analog_in_state', '#sent_time': 196213.09983677} mcu 'mcu': got {'#receive_time': 196213.540363621, u'next_clock': 2082490560, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196213.137058288} mcu 'mcu': got {'#receive_time': 196213.550338862, u'next_clock': 2083490560, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196213.137058288} mcu 'psu': got {'#receive_time': 196213.668816251, u'next_clock': 1512568775, u'oid': 3, u'value': 16259, '#name': u'analog_in_state', '#sent_time': 196213.09983677} mcu 'mcu': got {'#receive_time': 196213.840384769, u'next_clock': 2112490560, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196213.137058288} mcu 'mcu': got {'#receive_time': 196213.85035088, u'next_clock': 2113490560, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196213.137058288} mcu 'psu': got {'#receive_time': 196213.968801973, u'next_clock': 1516168775, u'oid': 3, u'value': 16272, '#name': u'analog_in_state', '#sent_time': 196213.09983677} mcu 'mcu': got {'#receive_time': 196214.140355676, u'next_clock': 2142490560, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'mcu': got {'#receive_time': 196214.150363176, u'next_clock': 2143490560, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'psu': got {'#receive_time': 196214.268722862, u'next_clock': 1519768775, u'oid': 3, u'value': 16263, '#name': u'analog_in_state', '#sent_time': 196214.084050102} mcu 'mcu': got {'#receive_time': 196214.440397899, u'next_clock': 2172490560L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'mcu': got {'#receive_time': 196214.450366213, u'next_clock': 2173490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'psu': got {'#receive_time': 196214.568725287, u'next_clock': 1523368775, u'oid': 3, u'value': 16254, '#name': u'analog_in_state', '#sent_time': 196214.084050102} mcu 'mcu': got {'#receive_time': 196214.740487806, u'next_clock': 2202490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'mcu': got {'#receive_time': 196214.750372361, u'next_clock': 2203490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'psu': got {'#receive_time': 196214.868718546, u'next_clock': 1526968775, u'oid': 3, u'value': 16270, '#name': u'analog_in_state', '#sent_time': 196214.084050102} mcu 'mcu': got {'#receive_time': 196215.040420491, u'next_clock': 2232490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'mcu': got {'#receive_time': 196215.050384176, u'next_clock': 2233490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196214.121200158} mcu 'psu': got {'#receive_time': 196215.16868112, u'next_clock': 1530568775, u'oid': 3, u'value': 16278, '#name': u'analog_in_state', '#sent_time': 196215.06844512} mcu 'mcu': got {'#receive_time': 196215.340436342, u'next_clock': 2262490560L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196215.105597324} mcu 'mcu': got {'#receive_time': 196215.350400342, u'next_clock': 2263490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196215.105597324} mcu 'psu': got {'#receive_time': 196215.468697972, u'next_clock': 1534168775, u'oid': 3, u'value': 16265, '#name': u'analog_in_state', '#sent_time': 196215.06844512} mcu 'mcu': got {'#receive_time': 196215.64054225, u'next_clock': 2292490560L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196215.105597324} mcu 'mcu': got {'#receive_time': 196215.650442879, u'next_clock': 2293490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196215.105597324} mcu 'psu': got {'#receive_time': 196215.768689435, u'next_clock': 1537768775, u'oid': 3, u'value': 16273, '#name': u'analog_in_state', '#sent_time': 196215.06844512} mcu 'mcu': got {'#receive_time': 196215.940441898, u'next_clock': 2322490560L, u'oid': 17, u'value': 22598, '#name': u'analog_in_state', '#sent_time': 196215.105597324} mcu 'mcu': got {'#receive_time': 196215.950443231, u'next_clock': 2323490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196215.105597324} mcu 'psu': got {'#receive_time': 196216.068642453, u'next_clock': 1541368775, u'oid': 3, u'value': 16269, '#name': u'analog_in_state', '#sent_time': 196216.052504268} mcu 'mcu': got {'#receive_time': 196216.240453416, u'next_clock': 2352490560L, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196216.089646564} mcu 'mcu': got {'#receive_time': 196216.250434546, u'next_clock': 2353490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196216.089646564} mcu 'psu': got {'#receive_time': 196216.368681768, u'next_clock': 1544968775, u'oid': 3, u'value': 16247, '#name': u'analog_in_state', '#sent_time': 196216.052504268} mcu 'mcu': got {'#receive_time': 196216.540479064, u'next_clock': 2382490560L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196216.089646564} mcu 'mcu': got {'#receive_time': 196216.55045199, u'next_clock': 2383490560L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196216.089646564} mcu 'psu': got {'#receive_time': 196216.668727286, u'next_clock': 1548568775, u'oid': 3, u'value': 16253, '#name': u'analog_in_state', '#sent_time': 196216.052504268} mcu 'mcu': got {'#receive_time': 196216.840471805, u'next_clock': 2412490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196216.089646564} mcu 'mcu': got {'#receive_time': 196216.850481119, u'next_clock': 2413490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196216.089646564} mcu 'psu': got {'#receive_time': 196216.96881573, u'next_clock': 1552168775, u'oid': 3, u'value': 16272, '#name': u'analog_in_state', '#sent_time': 196216.052504268} mcu 'mcu': got {'#receive_time': 196217.14052573, u'next_clock': 2442490560L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'mcu': got {'#receive_time': 196217.150515138, u'next_clock': 2443490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'psu': got {'#receive_time': 196217.268813619, u'next_clock': 1555768775, u'oid': 3, u'value': 16251, '#name': u'analog_in_state', '#sent_time': 196217.037378601} mcu 'mcu': got {'#receive_time': 196217.440617804, u'next_clock': 2472490560L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'mcu': got {'#receive_time': 196217.450548137, u'next_clock': 2473490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'psu': got {'#receive_time': 196217.568721693, u'next_clock': 1559368775, u'oid': 3, u'value': 16255, '#name': u'analog_in_state', '#sent_time': 196217.037378601} mcu 'mcu': got {'#receive_time': 196217.740658637, u'next_clock': 2502490560L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'mcu': got {'#receive_time': 196217.750635082, u'next_clock': 2503490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'psu': got {'#receive_time': 196217.868691452, u'next_clock': 1562968775, u'oid': 3, u'value': 16262, '#name': u'analog_in_state', '#sent_time': 196217.037378601} mcu 'mcu': got {'#receive_time': 196218.04058073, u'next_clock': 2532490560L, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'mcu': got {'#receive_time': 196218.050601137, u'next_clock': 2533490560L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196217.074531841} mcu 'psu': got {'#receive_time': 196218.168696248, u'next_clock': 1566568775, u'oid': 3, u'value': 16296, '#name': u'analog_in_state', '#sent_time': 196218.0217401} mcu 'mcu': got {'#receive_time': 196218.3406306, u'next_clock': 2562490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196218.058839211} mcu 'mcu': got {'#receive_time': 196218.350583526, u'next_clock': 2563490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196218.058839211} mcu 'psu': got {'#receive_time': 196218.468708378, u'next_clock': 1570168775, u'oid': 3, u'value': 16268, '#name': u'analog_in_state', '#sent_time': 196218.0217401} mcu 'mcu': got {'#receive_time': 196218.640652118, u'next_clock': 2592490560L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196218.058839211} mcu 'mcu': got {'#receive_time': 196218.650596174, u'next_clock': 2593490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196218.058839211} mcu 'psu': got {'#receive_time': 196218.768731155, u'next_clock': 1573768775, u'oid': 3, u'value': 16249, '#name': u'analog_in_state', '#sent_time': 196218.0217401} mcu 'mcu': got {'#receive_time': 196218.940634896, u'next_clock': 2622490560L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196218.058839211} mcu 'mcu': got {'#receive_time': 196218.950573544, u'next_clock': 2623490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196218.058839211} mcu 'psu': got {'#receive_time': 196219.068574785, u'next_clock': 1577368775, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196219.005919414} mcu 'mcu': got {'#receive_time': 196219.240678488, u'next_clock': 2652490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196219.043217692} mcu 'mcu': got {'#receive_time': 196219.25056897, u'next_clock': 2653490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196219.043217692} mcu 'psu': got {'#receive_time': 196219.368581247, u'next_clock': 1580968775, u'oid': 3, u'value': 16244, '#name': u'analog_in_state', '#sent_time': 196219.005919414} mcu 'mcu': got {'#receive_time': 196219.540565155, u'next_clock': 2682490560L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196219.043217692} mcu 'mcu': got {'#receive_time': 196219.55057971, u'next_clock': 2683490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196219.043217692} mcu 'psu': got {'#receive_time': 196219.668556618, u'next_clock': 1584568775, u'oid': 3, u'value': 16208, '#name': u'analog_in_state', '#sent_time': 196219.005919414} mcu 'mcu': got {'#receive_time': 196219.840600099, u'next_clock': 2712490560L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196219.043217692} mcu 'mcu': got {'#receive_time': 196219.850564377, u'next_clock': 2713490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196219.043217692} mcu 'psu': got {'#receive_time': 196219.96859934, u'next_clock': 1588168775, u'oid': 3, u'value': 16257, '#name': u'analog_in_state', '#sent_time': 196219.005919414} mcu 'mcu': got {'#receive_time': 196220.140577562, u'next_clock': 2742490560L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196220.027485432} mcu 'mcu': got {'#receive_time': 196220.150573858, u'next_clock': 2743490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196220.027485432} mcu 'psu': got {'#receive_time': 196220.268544599, u'next_clock': 1591768775, u'oid': 3, u'value': 16223, '#name': u'analog_in_state', '#sent_time': 196219.990229303} mcu 'mcu': got {'#receive_time': 196220.440624747, u'next_clock': 2772490560L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196220.027485432} mcu 'mcu': got {'#receive_time': 196220.450581858, u'next_clock': 2773490560L, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196220.027485432} mcu 'psu': got {'#receive_time': 196220.568635969, u'next_clock': 1595368775, u'oid': 3, u'value': 16199, '#name': u'analog_in_state', '#sent_time': 196219.990229303} mcu 'mcu': got {'#receive_time': 196220.740610432, u'next_clock': 2802490560L, u'oid': 17, u'value': 22599, '#name': u'analog_in_state', '#sent_time': 196220.027485432} mcu 'mcu': got {'#receive_time': 196220.750652987, u'next_clock': 2803490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196220.027485432} mcu 'psu': got {'#receive_time': 196220.86853458, u'next_clock': 1598968775, u'oid': 3, u'value': 16269, '#name': u'analog_in_state', '#sent_time': 196219.990229303} mcu 'mcu': got {'#receive_time': 196221.040605098, u'next_clock': 2832490560L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'mcu': got {'#receive_time': 196221.050615283, u'next_clock': 2833490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'psu': got {'#receive_time': 196221.168573006, u'next_clock': 1602568775, u'oid': 3, u'value': 16245, '#name': u'analog_in_state', '#sent_time': 196220.975008358} mcu 'mcu': got {'#receive_time': 196221.340648987, u'next_clock': 2862490560L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'mcu': got {'#receive_time': 196221.350616191, u'next_clock': 2863490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'psu': got {'#receive_time': 196221.468506617, u'next_clock': 1606168775, u'oid': 3, u'value': 16243, '#name': u'analog_in_state', '#sent_time': 196220.975008358} mcu 'mcu': got {'#receive_time': 196221.640670153, u'next_clock': 2892490560L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'mcu': got {'#receive_time': 196221.650618339, u'next_clock': 2893490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'psu': got {'#receive_time': 196221.76850532, u'next_clock': 1609768775, u'oid': 3, u'value': 16269, '#name': u'analog_in_state', '#sent_time': 196220.975008358} mcu 'mcu': got {'#receive_time': 196221.940658709, u'next_clock': 2922490560L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'mcu': got {'#receive_time': 196221.950648857, u'next_clock': 2923490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196221.012285858} mcu 'psu': got {'#receive_time': 196222.068492264, u'next_clock': 1613368775, u'oid': 3, u'value': 16282, '#name': u'analog_in_state', '#sent_time': 196221.959141838} mcu 'mcu': got {'#receive_time': 196222.240673079, u'next_clock': 2952490560L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196221.99645332} mcu 'mcu': got {'#receive_time': 196222.25066032, u'next_clock': 2953490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196221.99645332} mcu 'psu': got {'#receive_time': 196222.368489523, u'next_clock': 1616968775, u'oid': 3, u'value': 16265, '#name': u'analog_in_state', '#sent_time': 196221.959141838} mcu 'mcu': got {'#receive_time': 196222.540733246, u'next_clock': 2982490560L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196221.99645332} mcu 'mcu': got {'#receive_time': 196222.550658783, u'next_clock': 2983490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196221.99645332} mcu 'psu': got {'#receive_time': 196222.66847919, u'next_clock': 1620568775, u'oid': 3, u'value': 16257, '#name': u'analog_in_state', '#sent_time': 196221.959141838} mcu 'mcu': got {'#receive_time': 196222.840688782, u'next_clock': 3012490560L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196221.99645332} mcu 'mcu': got {'#receive_time': 196222.850684597, u'next_clock': 3013490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196221.99645332} mcu 'psu': got {'#receive_time': 196222.968587634, u'next_clock': 1624168775, u'oid': 3, u'value': 16281, '#name': u'analog_in_state', '#sent_time': 196222.944070671} mcu 'mcu': got {'#receive_time': 196223.140698967, u'next_clock': 3042490560L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196222.981395356} mcu 'mcu': got {'#receive_time': 196223.150692301, u'next_clock': 3043490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196222.981395356} mcu 'psu': got {'#receive_time': 196223.268452986, u'next_clock': 1627768775, u'oid': 3, u'value': 16241, '#name': u'analog_in_state', '#sent_time': 196222.944070671} mcu 'mcu': got {'#receive_time': 196223.440753615, u'next_clock': 3072490560L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196222.981395356} mcu 'mcu': got {'#receive_time': 196223.450696671, u'next_clock': 3073490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196222.981395356} mcu 'psu': got {'#receive_time': 196223.56845743, u'next_clock': 1631368775, u'oid': 3, u'value': 16257, '#name': u'analog_in_state', '#sent_time': 196222.944070671} mcu 'mcu': got {'#receive_time': 196223.7407008, u'next_clock': 3102490560L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196222.981395356} mcu 'mcu': got {'#receive_time': 196223.750733726, u'next_clock': 3103490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196222.981395356} mcu 'psu': got {'#receive_time': 196223.8684743, u'next_clock': 1634968775, u'oid': 3, u'value': 16271, '#name': u'analog_in_state', '#sent_time': 196222.944070671} mcu 'mcu': got {'#receive_time': 196224.040835597, u'next_clock': 3132490560L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'mcu': got {'#receive_time': 196224.050815652, u'next_clock': 3133490560L, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'psu': got {'#receive_time': 196224.168500985, u'next_clock': 1638568775, u'oid': 3, u'value': 16267, '#name': u'analog_in_state', '#sent_time': 196223.928942782} mcu 'mcu': got {'#receive_time': 196224.340825948, u'next_clock': 3162490560L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'mcu': got {'#receive_time': 196224.350801374, u'next_clock': 3163490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'psu': got {'#receive_time': 196224.468577967, u'next_clock': 1642168775, u'oid': 3, u'value': 16258, '#name': u'analog_in_state', '#sent_time': 196223.928942782} mcu 'mcu': got {'#receive_time': 196224.640846504, u'next_clock': 3192490560L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'mcu': got {'#receive_time': 196224.650846189, u'next_clock': 3193490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'psu': got {'#receive_time': 196224.768492855, u'next_clock': 1645768775, u'oid': 3, u'value': 16278, '#name': u'analog_in_state', '#sent_time': 196223.928942782} mcu 'mcu': got {'#receive_time': 196224.940872189, u'next_clock': 3222490560L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'mcu': got {'#receive_time': 196224.9508673, u'next_clock': 3223490560L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196223.9663618} mcu 'psu': got {'#receive_time': 196225.068528411, u'next_clock': 1649368775, u'oid': 3, u'value': 16261, '#name': u'analog_in_state', '#sent_time': 196224.913971429} mcu 'mcu': got {'#receive_time': 196225.240863596, u'next_clock': 3252490560L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196224.950716281} mcu 'mcu': got {'#receive_time': 196225.250848651, u'next_clock': 3253490560L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196224.950716281} mcu 'psu': got {'#receive_time': 196225.368513911, u'next_clock': 1652968775, u'oid': 3, u'value': 16272, '#name': u'analog_in_state', '#sent_time': 196224.913971429} mcu 'mcu': got {'#receive_time': 196225.540913299, u'next_clock': 3282490560L, u'oid': 17, u'value': 22600, '#name': u'analog_in_state', '#sent_time': 196224.950716281} mcu 'mcu': got {'#receive_time': 196225.550806781, u'next_clock': 3283490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196224.950716281} mcu 'psu': got {'#receive_time': 196225.668467596, u'next_clock': 1656568775, u'oid': 3, u'value': 16250, '#name': u'analog_in_state', '#sent_time': 196224.913971429} mcu 'mcu': got {'#receive_time': 196225.840870966, u'next_clock': 3312490560L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196224.950716281} mcu 'mcu': got {'#receive_time': 196225.850833392, u'next_clock': 3313490560L, u'oid': 18, u'value': 31456, '#name': u'analog_in_state', '#sent_time': 196224.950716281} mcu 'psu': got {'#receive_time': 196225.968436632, u'next_clock': 1660168775, u'oid': 3, u'value': 16257, '#name': u'analog_in_state', '#sent_time': 196225.898252836} mcu 'mcu': got {'#receive_time': 196226.140850521, u'next_clock': 3342490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196225.935012558} mcu 'mcu': got {'#receive_time': 196226.150803373, u'next_clock': 3343490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196225.935012558} mcu 'psu': got {'#receive_time': 196226.268421429, u'next_clock': 1663768775, u'oid': 3, u'value': 16204, '#name': u'analog_in_state', '#sent_time': 196225.898252836} mcu 'mcu': got {'#receive_time': 196226.441021243, u'next_clock': 3372490560L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196225.935012558} mcu 'mcu': got {'#receive_time': 196226.450867762, u'next_clock': 3373490560L, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196225.935012558} mcu 'psu': got {'#receive_time': 196226.568410873, u'next_clock': 1667368775, u'oid': 3, u'value': 16190, '#name': u'analog_in_state', '#sent_time': 196225.898252836} mcu 'mcu': got {'#receive_time': 196226.740918262, u'next_clock': 3402490560L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196225.935012558} mcu 'mcu': got {'#receive_time': 196226.750876743, u'next_clock': 3403490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196225.935012558} mcu 'psu': got {'#receive_time': 196226.868464632, u'next_clock': 1670968775, u'oid': 3, u'value': 16193, '#name': u'analog_in_state', '#sent_time': 196225.898252836} mcu 'mcu': got {'#receive_time': 196227.040901539, u'next_clock': 3432490560L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196226.920327336} mcu 'mcu': got {'#receive_time': 196227.050873317, u'next_clock': 3433490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196226.920327336} mcu 'psu': got {'#receive_time': 196227.168431058, u'next_clock': 1674568775, u'oid': 3, u'value': 16273, '#name': u'analog_in_state', '#sent_time': 196226.883323669} mcu 'mcu': got {'#receive_time': 196227.340950076, u'next_clock': 3462490560L, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196226.920327336} mcu 'mcu': got {'#receive_time': 196227.350903798, u'next_clock': 3463490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196226.920327336} mcu 'psu': got {'#receive_time': 196227.468548872, u'next_clock': 1678168775, u'oid': 3, u'value': 16234, '#name': u'analog_in_state', '#sent_time': 196226.883323669} mcu 'mcu': got {'#receive_time': 196227.640931798, u'next_clock': 3492490560L, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196226.920327336} mcu 'mcu': got {'#receive_time': 196227.650912409, u'next_clock': 3493490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196226.920327336} mcu 'psu': got {'#receive_time': 196227.768414168, u'next_clock': 1681768775, u'oid': 3, u'value': 16214, '#name': u'analog_in_state', '#sent_time': 196226.883323669} mcu 'mcu': got {'#receive_time': 196227.940957242, u'next_clock': 3522490560L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'mcu': got {'#receive_time': 196227.950950872, u'next_clock': 3523490560L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'psu': got {'#receive_time': 196228.068354964, u'next_clock': 1685368775, u'oid': 3, u'value': 16266, '#name': u'analog_in_state', '#sent_time': 196227.868167872} mcu 'mcu': got {'#receive_time': 196228.24097752, u'next_clock': 3552490560L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'mcu': got {'#receive_time': 196228.250948446, u'next_clock': 3553490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'psu': got {'#receive_time': 196228.368448112, u'next_clock': 1688968775, u'oid': 3, u'value': 16201, '#name': u'analog_in_state', '#sent_time': 196227.868167872} mcu 'mcu': got {'#receive_time': 196228.540974501, u'next_clock': 3582490560L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'mcu': got {'#receive_time': 196228.550944335, u'next_clock': 3583490560L, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'psu': got {'#receive_time': 196228.668459964, u'next_clock': 1692568775, u'oid': 3, u'value': 16248, '#name': u'analog_in_state', '#sent_time': 196227.868167872} mcu 'mcu': got {'#receive_time': 196228.84101089, u'next_clock': 3612490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'mcu': got {'#receive_time': 196228.850963075, u'next_clock': 3613490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196227.904692853} mcu 'psu': got {'#receive_time': 196228.96832639, u'next_clock': 1696168775, u'oid': 3, u'value': 16259, '#name': u'analog_in_state', '#sent_time': 196228.852968149} mcu 'mcu': got {'#receive_time': 196229.140943668, u'next_clock': 3642490560L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196228.889374297} mcu 'mcu': got {'#receive_time': 196229.15089939, u'next_clock': 3643490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196228.889374297} mcu 'psu': got {'#receive_time': 196229.268301964, u'next_clock': 1699768775, u'oid': 3, u'value': 16259, '#name': u'analog_in_state', '#sent_time': 196228.852968149} mcu 'mcu': got {'#receive_time': 196229.441026834, u'next_clock': 3672490560L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196228.889374297} mcu 'mcu': got {'#receive_time': 196229.450914167, u'next_clock': 3673490560L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196228.889374297} mcu 'psu': got {'#receive_time': 196229.568273167, u'next_clock': 1703368775, u'oid': 3, u'value': 16252, '#name': u'analog_in_state', '#sent_time': 196228.852968149} mcu 'mcu': got {'#receive_time': 196229.740942445, u'next_clock': 3702490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196228.889374297} mcu 'mcu': got {'#receive_time': 196229.750940593, u'next_clock': 3703490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196228.889374297} mcu 'psu': got {'#receive_time': 196229.868286686, u'next_clock': 1706968775, u'oid': 3, u'value': 16256, '#name': u'analog_in_state', '#sent_time': 196229.837485778} mcu 'mcu': got {'#receive_time': 196230.040968852, u'next_clock': 3732490560L, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196229.873500463} mcu 'mcu': got {'#receive_time': 196230.050943463, u'next_clock': 3733490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196229.873500463} mcu 'psu': got {'#receive_time': 196230.168265148, u'next_clock': 1710568775, u'oid': 3, u'value': 16265, '#name': u'analog_in_state', '#sent_time': 196229.837485778} mcu 'mcu': got {'#receive_time': 196230.340961815, u'next_clock': 3762490560L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196229.873500463} mcu 'mcu': got {'#receive_time': 196230.350950389, u'next_clock': 3763490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196229.873500463} mcu 'psu': got {'#receive_time': 196230.468359519, u'next_clock': 1714168775, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196229.837485778} mcu 'mcu': got {'#receive_time': 196230.640980852, u'next_clock': 3792490560L, u'oid': 17, u'value': 22600, '#name': u'analog_in_state', '#sent_time': 196229.873500463} mcu 'mcu': got {'#receive_time': 196230.650969481, u'next_clock': 3793490560L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196229.873500463} mcu 'psu': got {'#receive_time': 196230.768256333, u'next_clock': 1717768775, u'oid': 3, u'value': 16266, '#name': u'analog_in_state', '#sent_time': 196229.837485778} mcu 'mcu': got {'#receive_time': 196230.940991833, u'next_clock': 3822490560L, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'mcu': got {'#receive_time': 196230.950959852, u'next_clock': 3823490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'psu': got {'#receive_time': 196231.068239463, u'next_clock': 1721368775, u'oid': 3, u'value': 16213, '#name': u'analog_in_state', '#sent_time': 196230.822171852} mcu 'mcu': got {'#receive_time': 196231.240994, u'next_clock': 3852490560L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'mcu': got {'#receive_time': 196231.250977889, u'next_clock': 3853490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'psu': got {'#receive_time': 196231.368333314, u'next_clock': 1724968775, u'oid': 3, u'value': 16230, '#name': u'analog_in_state', '#sent_time': 196230.822171852} mcu 'mcu': got {'#receive_time': 196231.541005518, u'next_clock': 3882490560L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'mcu': got {'#receive_time': 196231.550988388, u'next_clock': 3883490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'psu': got {'#receive_time': 196231.66821024, u'next_clock': 1728568775, u'oid': 3, u'value': 16272, '#name': u'analog_in_state', '#sent_time': 196230.822171852} mcu 'mcu': got {'#receive_time': 196231.841022759, u'next_clock': 3912490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196230.858093092} mcu 'mcu': got {'#receive_time': 196231.850988184, u'next_clock': 3913490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'psu': got {'#receive_time': 196231.968254481, u'next_clock': 1732168775, u'oid': 3, u'value': 16294, '#name': u'analog_in_state', '#sent_time': 196231.807074407} mcu 'mcu': got {'#receive_time': 196232.141028184, u'next_clock': 3942490560L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'mcu': got {'#receive_time': 196232.151005036, u'next_clock': 3943490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'psu': got {'#receive_time': 196232.26820574, u'next_clock': 1735768775, u'oid': 3, u'value': 16281, '#name': u'analog_in_state', '#sent_time': 196231.807074407} mcu 'mcu': got {'#receive_time': 196232.441121999, u'next_clock': 3972490560L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'mcu': got {'#receive_time': 196232.451015462, u'next_clock': 3973490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'psu': got {'#receive_time': 196232.568183851, u'next_clock': 1739368775, u'oid': 3, u'value': 16272, '#name': u'analog_in_state', '#sent_time': 196231.807074407} mcu 'mcu': got {'#receive_time': 196232.741062165, u'next_clock': 4002490560L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'mcu': got {'#receive_time': 196232.751035554, u'next_clock': 4003490560L, u'oid': 18, u'value': 31456, '#name': u'analog_in_state', '#sent_time': 196231.842996518} mcu 'psu': got {'#receive_time': 196232.868188443, u'next_clock': 1742968775, u'oid': 3, u'value': 16280, '#name': u'analog_in_state', '#sent_time': 196232.791588425} mcu 'mcu': got {'#receive_time': 196233.041088128, u'next_clock': 4032490560L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196232.827151573} mcu 'mcu': got {'#receive_time': 196233.051051536, u'next_clock': 4033490560L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196232.827151573} mcu 'psu': got {'#receive_time': 196233.168149776, u'next_clock': 1746568775, u'oid': 3, u'value': 16265, '#name': u'analog_in_state', '#sent_time': 196232.791588425} mcu 'mcu': got {'#receive_time': 196233.341143109, u'next_clock': 4062490560L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196232.827151573} mcu 'mcu': got {'#receive_time': 196233.351050258, u'next_clock': 4063490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196232.827151573} mcu 'psu': got {'#receive_time': 196233.468154813, u'next_clock': 1750168775, u'oid': 3, u'value': 16307, '#name': u'analog_in_state', '#sent_time': 196232.791588425} mcu 'mcu': got {'#receive_time': 196233.641091832, u'next_clock': 4092490560L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196232.827151573} mcu 'mcu': got {'#receive_time': 196233.651062702, u'next_clock': 4093490560L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196232.827151573} mcu 'psu': got {'#receive_time': 196233.768140517, u'next_clock': 1753768775, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196232.791588425} mcu 'mcu': got {'#receive_time': 196233.941251757, u'next_clock': 4122490560L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196233.811502572} mcu 'mcu': got {'#receive_time': 196233.95120672, u'next_clock': 4123490560L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196233.811502572} mcu 'psu': got {'#receive_time': 196234.068196868, u'next_clock': 1757368775, u'oid': 3, u'value': 16259, '#name': u'analog_in_state', '#sent_time': 196233.776153072} mcu 'mcu': got {'#receive_time': 196234.241273294, u'next_clock': 4152490560L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196233.811502572} mcu 'mcu': got {'#receive_time': 196234.251233887, u'next_clock': 4153490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196233.811502572} mcu 'psu': got {'#receive_time': 196234.368312794, u'next_clock': 1760968775, u'oid': 3, u'value': 16241, '#name': u'analog_in_state', '#sent_time': 196233.776153072} mcu 'mcu': got {'#receive_time': 196234.541204701, u'next_clock': 4182490560L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196233.811502572} mcu 'mcu': got {'#receive_time': 196234.551184905, u'next_clock': 4183490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196233.811502572} mcu 'psu': got {'#receive_time': 196234.668228683, u'next_clock': 1764568775, u'oid': 3, u'value': 16290, '#name': u'analog_in_state', '#sent_time': 196233.776153072} mcu 'mcu': got {'#receive_time': 196234.841199942, u'next_clock': 4212490560L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'mcu': got {'#receive_time': 196234.851216442, u'next_clock': 4213490560L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'psu': got {'#receive_time': 196234.968222627, u'next_clock': 1768168775, u'oid': 3, u'value': 16273, '#name': u'analog_in_state', '#sent_time': 196234.760753886} mcu 'mcu': got {'#receive_time': 196235.141253164, u'next_clock': 4242490560L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'mcu': got {'#receive_time': 196235.151212368, u'next_clock': 4243490560L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'psu': got {'#receive_time': 196235.268207145, u'next_clock': 1771768775, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196234.760753886} mcu 'mcu': got {'#receive_time': 196235.44120259, u'next_clock': 4272490560L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'mcu': got {'#receive_time': 196235.451186682, u'next_clock': 4273490560L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'psu': got {'#receive_time': 196235.568219127, u'next_clock': 1775368775, u'oid': 3, u'value': 16286, '#name': u'analog_in_state', '#sent_time': 196234.760753886} mcu 'mcu': got {'#receive_time': 196235.741248534, u'next_clock': 7523264, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'mcu': got {'#receive_time': 196235.751224497, u'next_clock': 8523264, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196234.796276386} mcu 'psu': got {'#receive_time': 196235.868195719, u'next_clock': 1778968775, u'oid': 3, u'value': 16313, '#name': u'analog_in_state', '#sent_time': 196235.745159386} mcu 'mcu': got {'#receive_time': 196236.041227238, u'next_clock': 37523264, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196235.780708349} mcu 'mcu': got {'#receive_time': 196236.051204515, u'next_clock': 38523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196235.780708349} mcu 'psu': got {'#receive_time': 196236.16815796, u'next_clock': 1782568775, u'oid': 3, u'value': 16275, '#name': u'analog_in_state', '#sent_time': 196235.745159386} mcu 'mcu': got {'#receive_time': 196236.341341385, u'next_clock': 67523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196235.780708349} mcu 'mcu': got {'#receive_time': 196236.351260515, u'next_clock': 68523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196235.780708349} mcu 'psu': got {'#receive_time': 196236.468131293, u'next_clock': 1786168775, u'oid': 3, u'value': 16269, '#name': u'analog_in_state', '#sent_time': 196235.745159386} mcu 'mcu': got {'#receive_time': 196236.641341182, u'next_clock': 97523264, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196235.780708349} mcu 'mcu': got {'#receive_time': 196236.651278367, u'next_clock': 98523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196235.780708349} mcu 'psu': got {'#receive_time': 196236.768121348, u'next_clock': 1789768775, u'oid': 3, u'value': 16280, '#name': u'analog_in_state', '#sent_time': 196236.7297127} mcu 'mcu': got {'#receive_time': 196236.941294755, u'next_clock': 127523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196236.7652787} mcu 'mcu': got {'#receive_time': 196236.9512662, u'next_clock': 128523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196236.7652787} mcu 'psu': got {'#receive_time': 196237.068142515, u'next_clock': 1793368775, u'oid': 3, u'value': 16296, '#name': u'analog_in_state', '#sent_time': 196236.7297127} mcu 'mcu': got {'#receive_time': 196237.241320015, u'next_clock': 157523264, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196236.7652787} mcu 'mcu': got {'#receive_time': 196237.251307015, u'next_clock': 158523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196236.7652787} mcu 'psu': got {'#receive_time': 196237.368205033, u'next_clock': 1796968775, u'oid': 3, u'value': 16248, '#name': u'analog_in_state', '#sent_time': 196236.7297127} mcu 'mcu': got {'#receive_time': 196237.541320959, u'next_clock': 187523264, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196236.7652787} mcu 'mcu': got {'#receive_time': 196237.551317033, u'next_clock': 188523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196236.7652787} mcu 'psu': got {'#receive_time': 196237.668185107, u'next_clock': 1800568775, u'oid': 3, u'value': 16273, '#name': u'analog_in_state', '#sent_time': 196236.7297127} mcu 'mcu': got {'#receive_time': 196237.841382348, u'next_clock': 217523264, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196237.749508829} mcu 'mcu': got {'#receive_time': 196237.851332551, u'next_clock': 218523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196237.749508829} mcu 'psu': got {'#receive_time': 196237.968146255, u'next_clock': 1804168775, u'oid': 3, u'value': 16282, '#name': u'analog_in_state', '#sent_time': 196237.714007551} mcu 'mcu': got {'#receive_time': 196238.141362644, u'next_clock': 247523264, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196237.749508829} mcu 'mcu': got {'#receive_time': 196238.151345458, u'next_clock': 248523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196237.749508829} mcu 'psu': got {'#receive_time': 196238.268094181, u'next_clock': 1807768775, u'oid': 3, u'value': 16291, '#name': u'analog_in_state', '#sent_time': 196237.714007551} mcu 'mcu': got {'#receive_time': 196238.441403699, u'next_clock': 277523264, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196237.749508829} mcu 'mcu': got {'#receive_time': 196238.451347921, u'next_clock': 278523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196237.749508829} mcu 'psu': got {'#receive_time': 196238.568129551, u'next_clock': 1811368775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196237.714007551} mcu 'mcu': got {'#receive_time': 196238.741306199, u'next_clock': 307523264, u'oid': 17, u'value': 22597, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'mcu': got {'#receive_time': 196238.751348477, u'next_clock': 308523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'psu': got {'#receive_time': 196238.868146977, u'next_clock': 1814968775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196238.699090995} mcu 'mcu': got {'#receive_time': 196239.041335476, u'next_clock': 337523264, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'mcu': got {'#receive_time': 196239.051285921, u'next_clock': 338523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'psu': got {'#receive_time': 196239.168010384, u'next_clock': 1818568775, u'oid': 3, u'value': 16269, '#name': u'analog_in_state', '#sent_time': 196238.699090995} mcu 'mcu': got {'#receive_time': 196239.341340143, u'next_clock': 367523264, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'mcu': got {'#receive_time': 196239.351278606, u'next_clock': 368523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'psu': got {'#receive_time': 196239.468007087, u'next_clock': 1822168775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196238.699090995} mcu 'mcu': got {'#receive_time': 196239.641331272, u'next_clock': 397523264, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'mcu': got {'#receive_time': 196239.651289087, u'next_clock': 398523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196238.733576569} mcu 'psu': got {'#receive_time': 196239.767953383, u'next_clock': 1825768775, u'oid': 3, u'value': 16282, '#name': u'analog_in_state', '#sent_time': 196239.683932235} mcu 'mcu': got {'#receive_time': 196239.941333161, u'next_clock': 427523264, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196239.718183106} mcu 'mcu': got {'#receive_time': 196239.951296161, u'next_clock': 428523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196239.718183106} mcu 'psu': got {'#receive_time': 196240.068017828, u'next_clock': 1829368775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196239.683932235} mcu 'mcu': got {'#receive_time': 196240.241367791, u'next_clock': 457523264, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196239.718183106} mcu 'mcu': got {'#receive_time': 196240.251290365, u'next_clock': 458523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196239.718183106} mcu 'psu': got {'#receive_time': 196240.367937068, u'next_clock': 1832968775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196239.683932235} mcu 'mcu': got {'#receive_time': 196240.541403939, u'next_clock': 487523264, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196239.718183106} mcu 'mcu': got {'#receive_time': 196240.551316939, u'next_clock': 488523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196239.718183106} mcu 'psu': got {'#receive_time': 196240.667944864, u'next_clock': 1836568775, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196239.683932235} mcu 'mcu': got {'#receive_time': 196240.841336531, u'next_clock': 517523264, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196240.702706642} mcu 'mcu': got {'#receive_time': 196240.851324957, u'next_clock': 518523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196240.702706642} mcu 'psu': got {'#receive_time': 196240.967942994, u'next_clock': 1840168775, u'oid': 3, u'value': 16276, '#name': u'analog_in_state', '#sent_time': 196240.668410568} mcu 'mcu': got {'#receive_time': 196241.141370012, u'next_clock': 547523264, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196240.702706642} mcu 'mcu': got {'#receive_time': 196241.151333753, u'next_clock': 548523264, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196240.702706642} mcu 'psu': got {'#receive_time': 196241.267987623, u'next_clock': 1843768775, u'oid': 3, u'value': 16286, '#name': u'analog_in_state', '#sent_time': 196240.668410568} mcu 'mcu': got {'#receive_time': 196241.441367549, u'next_clock': 577523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196240.702706642} mcu 'mcu': got {'#receive_time': 196241.451347642, u'next_clock': 578523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196240.702706642} mcu 'psu': got {'#receive_time': 196241.567927993, u'next_clock': 1847368775, u'oid': 3, u'value': 16280, '#name': u'analog_in_state', '#sent_time': 196240.668410568} mcu 'mcu': got {'#receive_time': 196241.741359512, u'next_clock': 607523264, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'mcu': got {'#receive_time': 196241.751354327, u'next_clock': 608523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'psu': got {'#receive_time': 196241.86789179, u'next_clock': 1850968775, u'oid': 3, u'value': 16310, '#name': u'analog_in_state', '#sent_time': 196241.652605975} mcu 'mcu': got {'#receive_time': 196242.041397549, u'next_clock': 637523264, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'mcu': got {'#receive_time': 196242.051373604, u'next_clock': 638523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'psu': got {'#receive_time': 196242.167891271, u'next_clock': 1854568775, u'oid': 3, u'value': 16293, '#name': u'analog_in_state', '#sent_time': 196241.652605975} mcu 'mcu': got {'#receive_time': 196242.341385456, u'next_clock': 667523264, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'mcu': got {'#receive_time': 196242.351359789, u'next_clock': 668523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'psu': got {'#receive_time': 196242.467900826, u'next_clock': 1858168775, u'oid': 3, u'value': 16259, '#name': u'analog_in_state', '#sent_time': 196241.652605975} mcu 'mcu': got {'#receive_time': 196242.641386511, u'next_clock': 697523264, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'mcu': got {'#receive_time': 196242.651393067, u'next_clock': 698523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196241.686860734} mcu 'psu': got {'#receive_time': 196242.767873382, u'next_clock': 1861768775, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196242.636710919} mcu 'mcu': got {'#receive_time': 196242.941431752, u'next_clock': 727523264, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196242.6709714} mcu 'mcu': got {'#receive_time': 196242.951411215, u'next_clock': 728523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196242.6709714} mcu 'psu': got {'#receive_time': 196243.067874863, u'next_clock': 1865368775, u'oid': 3, u'value': 16282, '#name': u'analog_in_state', '#sent_time': 196242.636710919} mcu 'mcu': got {'#receive_time': 196243.241527233, u'next_clock': 757523264, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196242.6709714} mcu 'mcu': got {'#receive_time': 196243.251459067, u'next_clock': 758523264, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196242.6709714} mcu 'psu': got {'#receive_time': 196243.367826974, u'next_clock': 1868968775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196242.636710919} mcu 'mcu': got {'#receive_time': 196243.541525863, u'next_clock': 787523264, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196242.6709714} mcu 'mcu': got {'#receive_time': 196243.551412048, u'next_clock': 788523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196242.6709714} mcu 'psu': got {'#receive_time': 196243.667817733, u'next_clock': 1872568775, u'oid': 3, u'value': 16274, '#name': u'analog_in_state', '#sent_time': 196243.621725955} mcu 'mcu': got {'#receive_time': 196243.841462862, u'next_clock': 817523264, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196243.655604214} mcu 'mcu': got {'#receive_time': 196243.851430622, u'next_clock': 818523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196243.655604214} mcu 'psu': got {'#receive_time': 196243.968002455, u'next_clock': 1876168775, u'oid': 3, u'value': 16277, '#name': u'analog_in_state', '#sent_time': 196243.621725955} mcu 'mcu': got {'#receive_time': 196244.141523436, u'next_clock': 847523264, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196243.655604214} mcu 'mcu': got {'#receive_time': 196244.151502955, u'next_clock': 848523264, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196243.655604214} mcu 'psu': got {'#receive_time': 196244.267982047, u'next_clock': 1879768775, u'oid': 3, u'value': 16290, '#name': u'analog_in_state', '#sent_time': 196243.621725955} mcu 'mcu': got {'#receive_time': 196244.441610399, u'next_clock': 877523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196243.655604214} mcu 'mcu': got {'#receive_time': 196244.451545936, u'next_clock': 878523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196243.655604214} mcu 'psu': got {'#receive_time': 196244.567910084, u'next_clock': 1883368775, u'oid': 3, u'value': 16285, '#name': u'analog_in_state', '#sent_time': 196243.621725955} mcu 'mcu': got {'#receive_time': 196244.741546732, u'next_clock': 907523264, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196244.640619177} mcu 'mcu': got {'#receive_time': 196244.751527955, u'next_clock': 908523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196244.640619177} mcu 'psu': got {'#receive_time': 196244.867906621, u'next_clock': 1886968775, u'oid': 3, u'value': 16285, '#name': u'analog_in_state', '#sent_time': 196244.606332881} mcu 'mcu': got {'#receive_time': 196245.041612288, u'next_clock': 937523264, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196244.640619177} mcu 'mcu': got {'#receive_time': 196245.051539621, u'next_clock': 938523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196244.640619177} mcu 'psu': got {'#receive_time': 196245.167950084, u'next_clock': 1890568775, u'oid': 3, u'value': 16288, '#name': u'analog_in_state', '#sent_time': 196244.606332881} mcu 'mcu': got {'#receive_time': 196245.341612195, u'next_clock': 967523264, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196244.640619177} mcu 'mcu': got {'#receive_time': 196245.351574991, u'next_clock': 968523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196244.640619177} mcu 'psu': got {'#receive_time': 196245.467905417, u'next_clock': 1894168775, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196244.606332881} mcu 'mcu': got {'#receive_time': 196245.641557232, u'next_clock': 997523264, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'mcu': got {'#receive_time': 196245.651587324, u'next_clock': 998523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'psu': got {'#receive_time': 196245.767928269, u'next_clock': 1897768775, u'oid': 3, u'value': 16279, '#name': u'analog_in_state', '#sent_time': 196245.591414898} mcu 'mcu': got {'#receive_time': 196245.941607454, u'next_clock': 1027523264, u'oid': 17, u'value': 22562, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'mcu': got {'#receive_time': 196245.951578991, u'next_clock': 1028523264, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'psu': got {'#receive_time': 196246.067884139, u'next_clock': 1901368775, u'oid': 3, u'value': 16285, '#name': u'analog_in_state', '#sent_time': 196245.591414898} mcu 'mcu': got {'#receive_time': 196246.241708139, u'next_clock': 1057523264, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'mcu': got {'#receive_time': 196246.25158375, u'next_clock': 1058523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'psu': got {'#receive_time': 196246.367873583, u'next_clock': 1904968775, u'oid': 3, u'value': 16289, '#name': u'analog_in_state', '#sent_time': 196245.591414898} mcu 'mcu': got {'#receive_time': 196246.541691324, u'next_clock': 1087523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'mcu': got {'#receive_time': 196246.551627231, u'next_clock': 1088523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196245.624917528} mcu 'psu': got {'#receive_time': 196246.66783799, u'next_clock': 1908568775, u'oid': 3, u'value': 16301, '#name': u'analog_in_state', '#sent_time': 196246.575893602} mcu 'mcu': got {'#receive_time': 196246.841656842, u'next_clock': 1117523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196246.609349416} mcu 'mcu': got {'#receive_time': 196246.851623176, u'next_clock': 1118523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196246.609349416} mcu 'psu': got {'#receive_time': 196246.967839083, u'next_clock': 1912168775, u'oid': 3, u'value': 16178, '#name': u'analog_in_state', '#sent_time': 196246.575893602} mcu 'mcu': got {'#receive_time': 196247.141695194, u'next_clock': 1147523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196246.609349416} mcu 'mcu': got {'#receive_time': 196247.151613675, u'next_clock': 1148523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196246.609349416} mcu 'psu': got {'#receive_time': 196247.267808601, u'next_clock': 1915768775, u'oid': 3, u'value': 16270, '#name': u'analog_in_state', '#sent_time': 196246.575893602} mcu 'mcu': got {'#receive_time': 196247.441705916, u'next_clock': 1177523264, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196246.609349416} mcu 'mcu': got {'#receive_time': 196247.45162262, u'next_clock': 1178523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196246.609349416} mcu 'psu': got {'#receive_time': 196247.567756786, u'next_clock': 1919368775, u'oid': 3, u'value': 16277, '#name': u'analog_in_state', '#sent_time': 196247.560750138} mcu 'mcu': got {'#receive_time': 196247.741666193, u'next_clock': 1207523264, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196247.594226823} mcu 'mcu': got {'#receive_time': 196247.75163836, u'next_clock': 1208523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196247.594226823} mcu 'psu': got {'#receive_time': 196247.86783486, u'next_clock': 1922968775, u'oid': 3, u'value': 16263, '#name': u'analog_in_state', '#sent_time': 196247.560750138} mcu 'mcu': got {'#receive_time': 196248.041714434, u'next_clock': 1237523264, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196247.594226823} mcu 'mcu': got {'#receive_time': 196248.051723767, u'next_clock': 1238523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196247.594226823} mcu 'psu': got {'#receive_time': 196248.167827249, u'next_clock': 1926568775, u'oid': 3, u'value': 16305, '#name': u'analog_in_state', '#sent_time': 196247.560750138} mcu 'mcu': got {'#receive_time': 196248.341692508, u'next_clock': 1267523264, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196247.594226823} mcu 'mcu': got {'#receive_time': 196248.351662656, u'next_clock': 1268523264, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196247.594226823} mcu 'psu': got {'#receive_time': 196248.467748508, u'next_clock': 1930168775, u'oid': 3, u'value': 16266, '#name': u'analog_in_state', '#sent_time': 196247.560750138} mcu 'mcu': got {'#receive_time': 196248.641706508, u'next_clock': 1297523264, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'mcu': got {'#receive_time': 196248.651674971, u'next_clock': 1298523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'psu': got {'#receive_time': 196248.767777471, u'next_clock': 1933768775, u'oid': 3, u'value': 16285, '#name': u'analog_in_state', '#sent_time': 196248.545448471} mcu 'mcu': got {'#receive_time': 196248.941712859, u'next_clock': 1327523264, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'mcu': got {'#receive_time': 196248.951649841, u'next_clock': 1328523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'psu': got {'#receive_time': 196249.067767396, u'next_clock': 1937368775, u'oid': 3, u'value': 16296, '#name': u'analog_in_state', '#sent_time': 196248.545448471} mcu 'mcu': got {'#receive_time': 196249.241739915, u'next_clock': 1357523264, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'mcu': got {'#receive_time': 196249.251681044, u'next_clock': 1358523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'psu': got {'#receive_time': 196249.367772878, u'next_clock': 1940968775, u'oid': 3, u'value': 16304, '#name': u'analog_in_state', '#sent_time': 196248.545448471} mcu 'mcu': got {'#receive_time': 196249.541858507, u'next_clock': 1387523264, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'mcu': got {'#receive_time': 196249.551760766, u'next_clock': 1388523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196248.578915915} mcu 'psu': got {'#receive_time': 196249.667700359, u'next_clock': 1944568775, u'oid': 3, u'value': 16294, '#name': u'analog_in_state', '#sent_time': 196249.529872433} mcu 'mcu': got {'#receive_time': 196249.841777711, u'next_clock': 1417523264, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196249.563660674} mcu 'mcu': got {'#receive_time': 196249.851737063, u'next_clock': 1418523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196249.563660674} mcu 'psu': got {'#receive_time': 196249.967757933, u'next_clock': 1948168775, u'oid': 3, u'value': 16322, '#name': u'analog_in_state', '#sent_time': 196249.529872433} mcu 'mcu': got {'#receive_time': 196250.141862933, u'next_clock': 1447523264, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196249.563660674} mcu 'mcu': got {'#receive_time': 196250.151748303, u'next_clock': 1448523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196249.563660674} mcu 'psu': got {'#receive_time': 196250.267716655, u'next_clock': 1951768775, u'oid': 3, u'value': 16295, '#name': u'analog_in_state', '#sent_time': 196249.529872433} mcu 'mcu': got {'#receive_time': 196250.441773784, u'next_clock': 1477523264, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196249.563660674} mcu 'mcu': got {'#receive_time': 196250.45172034, u'next_clock': 1478523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196249.563660674} mcu 'psu': got {'#receive_time': 196250.567890358, u'next_clock': 1955368775, u'oid': 3, u'value': 16271, '#name': u'analog_in_state', '#sent_time': 196250.514293655} mcu 'mcu': got {'#receive_time': 196250.741806173, u'next_clock': 1507523264, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196250.54775371} mcu 'mcu': got {'#receive_time': 196250.751778673, u'next_clock': 1508523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196250.54775371} mcu 'psu': got {'#receive_time': 196250.867714932, u'next_clock': 1958968775, u'oid': 3, u'value': 16252, '#name': u'analog_in_state', '#sent_time': 196250.514293655} mcu 'mcu': got {'#receive_time': 196251.041838136, u'next_clock': 1537523264, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196250.54775371} mcu 'mcu': got {'#receive_time': 196251.051950877, u'next_clock': 1538523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196250.54775371} mcu 'psu': got {'#receive_time': 196251.167659247, u'next_clock': 1962568775, u'oid': 3, u'value': 16321, '#name': u'analog_in_state', '#sent_time': 196250.514293655} mcu 'mcu': got {'#receive_time': 196251.34182308, u'next_clock': 1567523264, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196250.54775371} mcu 'mcu': got {'#receive_time': 196251.351798932, u'next_clock': 1568523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196250.54775371} mcu 'psu': got {'#receive_time': 196251.467734599, u'next_clock': 1966168775, u'oid': 3, u'value': 16289, '#name': u'analog_in_state', '#sent_time': 196250.514293655} mcu 'mcu': got {'#receive_time': 196251.641823469, u'next_clock': 1597523264, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196251.533012802} mcu 'mcu': got {'#receive_time': 196251.651808821, u'next_clock': 1598523264, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196251.533012802} mcu 'psu': got {'#receive_time': 196251.767711617, u'next_clock': 1969768775, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196251.498975728} mcu 'mcu': got {'#receive_time': 196251.941827969, u'next_clock': 1627523264, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196251.533012802} mcu 'mcu': got {'#receive_time': 196251.951817598, u'next_clock': 1628523264, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196251.533012802} mcu 'psu': got {'#receive_time': 196252.067727413, u'next_clock': 1973368775, u'oid': 3, u'value': 16290, '#name': u'analog_in_state', '#sent_time': 196251.498975728} mcu 'mcu': got {'#receive_time': 196252.241844969, u'next_clock': 1657523264, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196251.533012802} mcu 'mcu': got {'#receive_time': 196252.251829709, u'next_clock': 1658523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196251.533012802} mcu 'psu': got {'#receive_time': 196252.367669728, u'next_clock': 1976968775, u'oid': 3, u'value': 16304, '#name': u'analog_in_state', '#sent_time': 196251.498975728} mcu 'mcu': got {'#receive_time': 196252.54188508, u'next_clock': 1687523264, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'mcu': got {'#receive_time': 196252.551947191, u'next_clock': 1688523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'psu': got {'#receive_time': 196252.667641505, u'next_clock': 1980568775, u'oid': 3, u'value': 16287, '#name': u'analog_in_state', '#sent_time': 196252.483836931} mcu 'mcu': got {'#receive_time': 196252.84189495, u'next_clock': 1717523264, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'mcu': got {'#receive_time': 196252.851847339, u'next_clock': 1718523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'psu': got {'#receive_time': 196252.967669505, u'next_clock': 1984168775, u'oid': 3, u'value': 16306, '#name': u'analog_in_state', '#sent_time': 196252.483836931} mcu 'mcu': got {'#receive_time': 196253.14190582, u'next_clock': 1747523264, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'mcu': got {'#receive_time': 196253.151854579, u'next_clock': 1748523264, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'psu': got {'#receive_time': 196253.267613579, u'next_clock': 1987768775, u'oid': 3, u'value': 16291, '#name': u'analog_in_state', '#sent_time': 196252.483836931} mcu 'mcu': got {'#receive_time': 196253.441918116, u'next_clock': 1777523264, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'mcu': got {'#receive_time': 196253.451881931, u'next_clock': 1778523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196252.517345357} mcu 'psu': got {'#receive_time': 196253.567630949, u'next_clock': 1991368775, u'oid': 3, u'value': 16310, '#name': u'analog_in_state', '#sent_time': 196253.468535116} mcu 'mcu': got {'#receive_time': 196253.741902542, u'next_clock': 1807523264, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196253.502461597} mcu 'mcu': got {'#receive_time': 196253.751888857, u'next_clock': 1808523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196253.502461597} mcu 'psu': got {'#receive_time': 196253.867678912, u'next_clock': 1994968775, u'oid': 3, u'value': 16314, '#name': u'analog_in_state', '#sent_time': 196253.468535116} mcu 'mcu': got {'#receive_time': 196254.041898912, u'next_clock': 1837523264, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196253.502461597} mcu 'mcu': got {'#receive_time': 196254.051803579, u'next_clock': 1838523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196253.502461597} mcu 'psu': got {'#receive_time': 196254.167527634, u'next_clock': 1998568775, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196253.468535116} mcu 'mcu': got {'#receive_time': 196254.341835115, u'next_clock': 1867523264, u'oid': 17, u'value': 22597, '#name': u'analog_in_state', '#sent_time': 196253.502461597} mcu 'mcu': got {'#receive_time': 196254.351805338, u'next_clock': 1868523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196253.502461597} mcu 'psu': got {'#receive_time': 196254.467509912, u'next_clock': 2002168775, u'oid': 3, u'value': 16291, '#name': u'analog_in_state', '#sent_time': 196254.452715245} mcu 'mcu': got {'#receive_time': 196254.641838819, u'next_clock': 1897523264, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196254.486985615} mcu 'mcu': got {'#receive_time': 196254.651840912, u'next_clock': 1898523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196254.486985615} mcu 'psu': got {'#receive_time': 196254.767521023, u'next_clock': 2005768775, u'oid': 3, u'value': 16306, '#name': u'analog_in_state', '#sent_time': 196254.452715245} mcu 'mcu': got {'#receive_time': 196254.941841819, u'next_clock': 1927523264, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196254.486985615} mcu 'mcu': got {'#receive_time': 196254.951815467, u'next_clock': 1928523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196254.486985615} mcu 'psu': got {'#receive_time': 196255.067561559, u'next_clock': 2009368775, u'oid': 3, u'value': 16276, '#name': u'analog_in_state', '#sent_time': 196254.452715245} mcu 'mcu': got {'#receive_time': 196255.241863652, u'next_clock': 1957523264, u'oid': 17, u'value': 22593, '#name': u'analog_in_state', '#sent_time': 196254.486985615} mcu 'mcu': got {'#receive_time': 196255.251832911, u'next_clock': 1958523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196254.486985615} mcu 'psu': got {'#receive_time': 196255.3675028, u'next_clock': 2012968775, u'oid': 3, u'value': 16322, '#name': u'analog_in_state', '#sent_time': 196254.452715245} mcu 'mcu': got {'#receive_time': 196255.541851948, u'next_clock': 1987523264, u'oid': 17, u'value': 22593, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'mcu': got {'#receive_time': 196255.551856374, u'next_clock': 1988523264, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'psu': got {'#receive_time': 196255.667504541, u'next_clock': 2016568775, u'oid': 3, u'value': 16284, '#name': u'analog_in_state', '#sent_time': 196255.437178448} mcu 'mcu': got {'#receive_time': 196255.841885522, u'next_clock': 2017523264, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'mcu': got {'#receive_time': 196255.851859318, u'next_clock': 2018523264, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'psu': got {'#receive_time': 196255.967488337, u'next_clock': 2020168775, u'oid': 3, u'value': 16295, '#name': u'analog_in_state', '#sent_time': 196255.437178448} mcu 'mcu': got {'#receive_time': 196256.141891559, u'next_clock': 2047523264, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'mcu': got {'#receive_time': 196256.1518803, u'next_clock': 2048523264, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'psu': got {'#receive_time': 196256.267465077, u'next_clock': 2023768775, u'oid': 3, u'value': 16288, '#name': u'analog_in_state', '#sent_time': 196255.437178448} mcu 'mcu': got {'#receive_time': 196256.441880133, u'next_clock': 2077523264, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'mcu': got {'#receive_time': 196256.451894911, u'next_clock': 2078523264, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196255.471442485} mcu 'psu': got {'#receive_time': 196256.567471281, u'next_clock': 2027368775, u'oid': 3, u'value': 16287, '#name': u'analog_in_state', '#sent_time': 196256.42187867} mcu 'mcu': got {'#receive_time': 196256.741922429, u'next_clock': 2107523264, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196256.456124522} mcu 'mcu': got {'#receive_time': 196256.751906188, u'next_clock': 2108523264, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196256.456124522} mcu 'psu': got {'#receive_time': 196256.867458632, u'next_clock': 2030968775, u'oid': 3, u'value': 16311, '#name': u'analog_in_state', '#sent_time': 196256.42187867} mcu 'mcu': got {'#receive_time': 196257.042015688, u'next_clock': 2137523264, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196256.456124522} mcu 'mcu': got {'#receive_time': 196257.051916743, u'next_clock': 2138523264, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196256.456124522} mcu 'psu': got {'#receive_time': 196257.167495114, u'next_clock': 2034568775, u'oid': 3, u'value': 16300, '#name': u'analog_in_state', '#sent_time': 196256.42187867} mcu 'mcu': got {'#receive_time': 196257.341959614, u'next_clock': 2167523264L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196256.456124522} mcu 'mcu': got {'#receive_time': 196257.351925966, u'next_clock': 2168523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196256.456124522} mcu 'psu': got {'#receive_time': 196257.467435003, u'next_clock': 2038168775, u'oid': 3, u'value': 16301, '#name': u'analog_in_state', '#sent_time': 196257.40740578} mcu 'mcu': got {'#receive_time': 196257.641968206, u'next_clock': 2197523264L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196257.440150503} mcu 'mcu': got {'#receive_time': 196257.651940391, u'next_clock': 2198523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196257.440150503} mcu 'psu': got {'#receive_time': 196257.767433132, u'next_clock': 2041768775, u'oid': 3, u'value': 16288, '#name': u'analog_in_state', '#sent_time': 196257.40740578} mcu 'mcu': got {'#receive_time': 196257.942085928, u'next_clock': 2227523264L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196257.440150503} mcu 'mcu': got {'#receive_time': 196257.951947021, u'next_clock': 2228523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196257.440150503} mcu 'psu': got {'#receive_time': 196258.067434391, u'next_clock': 2045368775, u'oid': 3, u'value': 16295, '#name': u'analog_in_state', '#sent_time': 196257.40740578} mcu 'mcu': got {'#receive_time': 196258.241982372, u'next_clock': 2257523264L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196257.440150503} mcu 'mcu': got {'#receive_time': 196258.251964909, u'next_clock': 2258523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196257.440150503} mcu 'psu': got {'#receive_time': 196258.36740252, u'next_clock': 2048968775, u'oid': 3, u'value': 16292, '#name': u'analog_in_state', '#sent_time': 196257.40740578} mcu 'mcu': got {'#receive_time': 196258.541983131, u'next_clock': 2287523264L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196258.424464706} mcu 'mcu': got {'#receive_time': 196258.551965391, u'next_clock': 2288523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196258.424464706} mcu 'psu': got {'#receive_time': 196258.667395372, u'next_clock': 2052568775, u'oid': 3, u'value': 16294, '#name': u'analog_in_state', '#sent_time': 196258.39164202} mcu 'mcu': got {'#receive_time': 196258.841997298, u'next_clock': 2317523264L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196258.424464706} mcu 'mcu': got {'#receive_time': 196258.852010168, u'next_clock': 2318523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196258.424464706} mcu 'psu': got {'#receive_time': 196258.96760065, u'next_clock': 2056168775, u'oid': 3, u'value': 16299, '#name': u'analog_in_state', '#sent_time': 196258.39164202} mcu 'mcu': got {'#receive_time': 196259.142068798, u'next_clock': 2347523264L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196258.424464706} mcu 'mcu': got {'#receive_time': 196259.152056002, u'next_clock': 2348523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196258.424464706} mcu 'psu': got {'#receive_time': 196259.26746739, u'next_clock': 2059768775, u'oid': 3, u'value': 16284, '#name': u'analog_in_state', '#sent_time': 196258.39164202} mcu 'mcu': got {'#receive_time': 196259.442089946, u'next_clock': 2377523264L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'mcu': got {'#receive_time': 196259.45205989, u'next_clock': 2378523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'psu': got {'#receive_time': 196259.567464372, u'next_clock': 2063368775, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196259.376943724} mcu 'mcu': got {'#receive_time': 196259.742105168, u'next_clock': 2407523264L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'mcu': got {'#receive_time': 196259.752085649, u'next_clock': 2408523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'psu': got {'#receive_time': 196259.867438594, u'next_clock': 2066968775, u'oid': 3, u'value': 16299, '#name': u'analog_in_state', '#sent_time': 196259.376943724} mcu 'mcu': got {'#receive_time': 196260.042173094, u'next_clock': 2437523264L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'mcu': got {'#receive_time': 196260.052111112, u'next_clock': 2438523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'psu': got {'#receive_time': 196260.167431964, u'next_clock': 2070568775, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196259.376943724} mcu 'mcu': got {'#receive_time': 196260.34213763, u'next_clock': 2467523264L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'mcu': got {'#receive_time': 196260.352094223, u'next_clock': 2468523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196259.409955112} mcu 'psu': got {'#receive_time': 196260.467457241, u'next_clock': 2074168775, u'oid': 3, u'value': 16315, '#name': u'analog_in_state', '#sent_time': 196260.362001204} mcu 'mcu': got {'#receive_time': 196260.642163908, u'next_clock': 2497523264L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196260.394911871} mcu 'mcu': got {'#receive_time': 196260.652104186, u'next_clock': 2498523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196260.394911871} mcu 'psu': got {'#receive_time': 196260.767444297, u'next_clock': 2077768775, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196260.362001204} mcu 'mcu': got {'#receive_time': 196260.942239278, u'next_clock': 2527523264L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196260.394911871} mcu 'mcu': got {'#receive_time': 196260.952111834, u'next_clock': 2528523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196260.394911871} mcu 'psu': got {'#receive_time': 196261.067444852, u'next_clock': 2081368775, u'oid': 3, u'value': 16308, '#name': u'analog_in_state', '#sent_time': 196260.362001204} mcu 'mcu': got {'#receive_time': 196261.24216313, u'next_clock': 2557523264L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196260.394911871} mcu 'mcu': got {'#receive_time': 196261.25213026, u'next_clock': 2558523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196260.394911871} mcu 'psu': got {'#receive_time': 196261.367380778, u'next_clock': 2084968775, u'oid': 3, u'value': 16299, '#name': u'analog_in_state', '#sent_time': 196261.346357908} mcu 'mcu': got {'#receive_time': 196261.542177333, u'next_clock': 2587523264L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196261.379121278} mcu 'mcu': got {'#receive_time': 196261.552150463, u'next_clock': 2588523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196261.379121278} mcu 'psu': got {'#receive_time': 196261.667458463, u'next_clock': 2088568775, u'oid': 3, u'value': 16304, '#name': u'analog_in_state', '#sent_time': 196261.346357908} mcu 'mcu': got {'#receive_time': 196261.842285241, u'next_clock': 2617523264L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196261.379121278} mcu 'mcu': got {'#receive_time': 196261.852220944, u'next_clock': 2618523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196261.379121278} mcu 'psu': got {'#receive_time': 196261.967464629, u'next_clock': 2092168775, u'oid': 3, u'value': 16288, '#name': u'analog_in_state', '#sent_time': 196261.346357908} mcu 'mcu': got {'#receive_time': 196262.142192055, u'next_clock': 2647523264L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196261.379121278} mcu 'mcu': got {'#receive_time': 196262.152149185, u'next_clock': 2648523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196261.379121278} mcu 'psu': got {'#receive_time': 196262.267405851, u'next_clock': 2095768775, u'oid': 3, u'value': 16294, '#name': u'analog_in_state', '#sent_time': 196261.346357908} mcu 'mcu': got {'#receive_time': 196262.442243814, u'next_clock': 2677523264L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'mcu': got {'#receive_time': 196262.452202222, u'next_clock': 2678523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'psu': got {'#receive_time': 196262.567362092, u'next_clock': 2099368775, u'oid': 3, u'value': 16257, '#name': u'analog_in_state', '#sent_time': 196262.33066824} mcu 'mcu': got {'#receive_time': 196262.742228999, u'next_clock': 2707523264L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'mcu': got {'#receive_time': 196262.752196055, u'next_clock': 2708523264L, u'oid': 18, u'value': 31456, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'psu': got {'#receive_time': 196262.867503444, u'next_clock': 2102968775, u'oid': 3, u'value': 16290, '#name': u'analog_in_state', '#sent_time': 196262.33066824} mcu 'mcu': got {'#receive_time': 196263.042286684, u'next_clock': 2737523264L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'mcu': got {'#receive_time': 196263.052268147, u'next_clock': 2738523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'psu': got {'#receive_time': 196263.167360407, u'next_clock': 2106568775, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196262.33066824} mcu 'mcu': got {'#receive_time': 196263.342232388, u'next_clock': 2767523264L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196262.364393926} mcu 'mcu': got {'#receive_time': 196263.352196943, u'next_clock': 2768523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'psu': got {'#receive_time': 196263.467373499, u'next_clock': 2110168775, u'oid': 3, u'value': 16293, '#name': u'analog_in_state', '#sent_time': 196263.315255406} mcu 'mcu': got {'#receive_time': 196263.642264425, u'next_clock': 2797523264L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'mcu': got {'#receive_time': 196263.652269277, u'next_clock': 2798523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'psu': got {'#receive_time': 196263.767350277, u'next_clock': 2113768775, u'oid': 3, u'value': 16300, '#name': u'analog_in_state', '#sent_time': 196263.315255406} mcu 'mcu': got {'#receive_time': 196263.942223813, u'next_clock': 2827523264L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'mcu': got {'#receive_time': 196263.952175813, u'next_clock': 2828523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'psu': got {'#receive_time': 196264.067260462, u'next_clock': 2117368775, u'oid': 3, u'value': 16306, '#name': u'analog_in_state', '#sent_time': 196263.315255406} mcu 'mcu': got {'#receive_time': 196264.242197295, u'next_clock': 2857523264L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'mcu': got {'#receive_time': 196264.252167813, u'next_clock': 2858523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196263.349361592} mcu 'psu': got {'#receive_time': 196264.367217072, u'next_clock': 2120968775, u'oid': 3, u'value': 16294, '#name': u'analog_in_state', '#sent_time': 196264.299974869} mcu 'mcu': got {'#receive_time': 196264.542212221, u'next_clock': 2887523264L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196264.333311554} mcu 'mcu': got {'#receive_time': 196264.552173832, u'next_clock': 2888523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196264.333311554} mcu 'psu': got {'#receive_time': 196264.667240017, u'next_clock': 2124568775, u'oid': 3, u'value': 16286, '#name': u'analog_in_state', '#sent_time': 196264.299974869} mcu 'mcu': got {'#receive_time': 196264.842296572, u'next_clock': 2917523264L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196264.333311554} mcu 'mcu': got {'#receive_time': 196264.85218585, u'next_clock': 2918523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196264.333311554} mcu 'psu': got {'#receive_time': 196264.967197054, u'next_clock': 2128168775, u'oid': 3, u'value': 16299, '#name': u'analog_in_state', '#sent_time': 196264.299974869} mcu 'mcu': got {'#receive_time': 196265.142239646, u'next_clock': 2947523264L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196264.333311554} mcu 'mcu': got {'#receive_time': 196265.152213072, u'next_clock': 2948523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196264.333311554} mcu 'psu': got {'#receive_time': 196265.267210146, u'next_clock': 2131768775, u'oid': 3, u'value': 16301, '#name': u'analog_in_state', '#sent_time': 196264.299974869} mcu 'mcu': got {'#receive_time': 196265.442235498, u'next_clock': 2977523264L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196265.317429498} mcu 'mcu': got {'#receive_time': 196265.452203757, u'next_clock': 2978523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196265.317429498} mcu 'psu': got {'#receive_time': 196265.567205053, u'next_clock': 2135368775, u'oid': 3, u'value': 16248, '#name': u'analog_in_state', '#sent_time': 196265.284088979} mcu 'mcu': got {'#receive_time': 196265.742236146, u'next_clock': 3007523264L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196265.317429498} mcu 'mcu': got {'#receive_time': 196265.752235886, u'next_clock': 3008523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196265.317429498} mcu 'psu': got {'#receive_time': 196265.86722972, u'next_clock': 2138968775, u'oid': 3, u'value': 16296, '#name': u'analog_in_state', '#sent_time': 196265.284088979} mcu 'mcu': got {'#receive_time': 196266.042350849, u'next_clock': 3037523264L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196265.317429498} mcu 'mcu': got {'#receive_time': 196266.052296294, u'next_clock': 3038523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196265.317429498} mcu 'psu': got {'#receive_time': 196266.167297849, u'next_clock': 2142568775, u'oid': 3, u'value': 16304, '#name': u'analog_in_state', '#sent_time': 196265.284088979} mcu 'mcu': got {'#receive_time': 196266.34226159, u'next_clock': 3067523264L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'mcu': got {'#receive_time': 196266.352232386, u'next_clock': 3068523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'psu': got {'#receive_time': 196266.467182942, u'next_clock': 2146168775, u'oid': 3, u'value': 16303, '#name': u'analog_in_state', '#sent_time': 196266.268804886} mcu 'mcu': got {'#receive_time': 196266.642288071, u'next_clock': 3097523264L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'mcu': got {'#receive_time': 196266.65231609, u'next_clock': 3098523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'psu': got {'#receive_time': 196266.767175367, u'next_clock': 2149768775L, u'oid': 3, u'value': 16303, '#name': u'analog_in_state', '#sent_time': 196266.268804886} mcu 'mcu': got {'#receive_time': 196266.942288589, u'next_clock': 3127523264L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'mcu': got {'#receive_time': 196266.952269645, u'next_clock': 3128523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'psu': got {'#receive_time': 196267.067170478, u'next_clock': 2153368775L, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196266.268804886} mcu 'mcu': got {'#receive_time': 196267.242334867, u'next_clock': 3157523264L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'mcu': got {'#receive_time': 196267.252311367, u'next_clock': 3158523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196266.302141664} mcu 'psu': got {'#receive_time': 196267.367175052, u'next_clock': 2156968775L, u'oid': 3, u'value': 16323, '#name': u'analog_in_state', '#sent_time': 196267.2532107} mcu 'mcu': got {'#receive_time': 196267.542346052, u'next_clock': 3187523264L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196267.286775441} mcu 'mcu': got {'#receive_time': 196267.552296996, u'next_clock': 3188523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196267.286775441} mcu 'psu': got {'#receive_time': 196267.667142108, u'next_clock': 2160568775L, u'oid': 3, u'value': 16283, '#name': u'analog_in_state', '#sent_time': 196267.2532107} mcu 'mcu': got {'#receive_time': 196267.84240483, u'next_clock': 3217523264L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196267.286775441} mcu 'mcu': got {'#receive_time': 196267.852305793, u'next_clock': 3218523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196267.286775441} mcu 'psu': got {'#receive_time': 196267.96716083, u'next_clock': 2164168775L, u'oid': 3, u'value': 16297, '#name': u'analog_in_state', '#sent_time': 196267.2532107} mcu 'mcu': got {'#receive_time': 196268.142338774, u'next_clock': 3247523264L, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196267.286775441} mcu 'mcu': got {'#receive_time': 196268.152319144, u'next_clock': 3248523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196267.286775441} mcu 'psu': got {'#receive_time': 196268.267122941, u'next_clock': 2167768775L, u'oid': 3, u'value': 16302, '#name': u'analog_in_state', '#sent_time': 196268.237364181} mcu 'mcu': got {'#receive_time': 196268.442366885, u'next_clock': 3277523264L, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196268.270971755} mcu 'mcu': got {'#receive_time': 196268.452335089, u'next_clock': 3278523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196268.270971755} mcu 'psu': got {'#receive_time': 196268.567169533, u'next_clock': 2171368775L, u'oid': 3, u'value': 16289, '#name': u'analog_in_state', '#sent_time': 196268.237364181} mcu 'mcu': got {'#receive_time': 196268.742359644, u'next_clock': 3307523264L, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196268.270971755} mcu 'mcu': got {'#receive_time': 196268.752352792, u'next_clock': 3308523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196268.270971755} mcu 'psu': got {'#receive_time': 196268.867208959, u'next_clock': 2174968775L, u'oid': 3, u'value': 16306, '#name': u'analog_in_state', '#sent_time': 196268.237364181} mcu 'mcu': got {'#receive_time': 196269.042454477, u'next_clock': 3337523264L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196268.270971755} mcu 'mcu': got {'#receive_time': 196269.052459125, u'next_clock': 3338523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196268.270971755} mcu 'psu': got {'#receive_time': 196269.167203088, u'next_clock': 2178568775L, u'oid': 3, u'value': 16305, '#name': u'analog_in_state', '#sent_time': 196268.237364181} mcu 'mcu': got {'#receive_time': 196269.342470681, u'next_clock': 3367523264L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196269.255147699} mcu 'mcu': got {'#receive_time': 196269.352435032, u'next_clock': 3368523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196269.255147699} mcu 'psu': got {'#receive_time': 196269.467189218, u'next_clock': 2182168775L, u'oid': 3, u'value': 16290, '#name': u'analog_in_state', '#sent_time': 196269.222178421} mcu 'mcu': got {'#receive_time': 196269.642516366, u'next_clock': 3397523264L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196269.255147699} mcu 'mcu': got {'#receive_time': 196269.652465125, u'next_clock': 3398523264L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196269.255147699} mcu 'psu': got {'#receive_time': 196269.767351088, u'next_clock': 2185768775L, u'oid': 3, u'value': 16279, '#name': u'analog_in_state', '#sent_time': 196269.222178421} mcu 'mcu': got {'#receive_time': 196269.94248818, u'next_clock': 3427523264L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196269.255147699} mcu 'mcu': got {'#receive_time': 196269.952462847, u'next_clock': 3428523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196269.255147699} mcu 'psu': got {'#receive_time': 196270.067208236, u'next_clock': 2189368775L, u'oid': 3, u'value': 16300, '#name': u'analog_in_state', '#sent_time': 196269.222178421} mcu 'mcu': got {'#receive_time': 196270.24243518, u'next_clock': 3457523264L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'mcu': got {'#receive_time': 196270.252480884, u'next_clock': 3458523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'psu': got {'#receive_time': 196270.367201069, u'next_clock': 2192968775L, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196270.206834865} mcu 'mcu': got {'#receive_time': 196270.542569143, u'next_clock': 3487523264L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'mcu': got {'#receive_time': 196270.552520884, u'next_clock': 3488523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'psu': got {'#receive_time': 196270.667156143, u'next_clock': 2196568775L, u'oid': 3, u'value': 16311, '#name': u'analog_in_state', '#sent_time': 196270.206834865} mcu 'mcu': got {'#receive_time': 196270.842589217, u'next_clock': 3517523264L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'mcu': got {'#receive_time': 196270.852577013, u'next_clock': 3518523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'psu': got {'#receive_time': 196270.96712405, u'next_clock': 2200168775L, u'oid': 3, u'value': 16295, '#name': u'analog_in_state', '#sent_time': 196270.206834865} mcu 'mcu': got {'#receive_time': 196271.142597865, u'next_clock': 3547523264L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'mcu': got {'#receive_time': 196271.152584513, u'next_clock': 3548523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196270.239236532} mcu 'psu': got {'#receive_time': 196271.26710705, u'next_clock': 2203768775L, u'oid': 3, u'value': 16288, '#name': u'analog_in_state', '#sent_time': 196271.191514105} mcu 'mcu': got {'#receive_time': 196271.442545772, u'next_clock': 3577523264L, u'oid': 17, u'value': 22599, '#name': u'analog_in_state', '#sent_time': 196271.224038272} mcu 'mcu': got {'#receive_time': 196271.452514068, u'next_clock': 3578523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196271.224038272} mcu 'psu': got {'#receive_time': 196271.567126883, u'next_clock': 2207368775L, u'oid': 3, u'value': 16289, '#name': u'analog_in_state', '#sent_time': 196271.191514105} mcu 'mcu': got {'#receive_time': 196271.742628531, u'next_clock': 3607523264L, u'oid': 17, u'value': 22597, '#name': u'analog_in_state', '#sent_time': 196271.224038272} mcu 'mcu': got {'#receive_time': 196271.752564013, u'next_clock': 3608523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196271.224038272} mcu 'psu': got {'#receive_time': 196271.867099309, u'next_clock': 2210968775L, u'oid': 3, u'value': 16283, '#name': u'analog_in_state', '#sent_time': 196271.191514105} mcu 'mcu': got {'#receive_time': 196272.042583827, u'next_clock': 3637523264L, u'oid': 17, u'value': 22593, '#name': u'analog_in_state', '#sent_time': 196271.224038272} mcu 'mcu': got {'#receive_time': 196272.052621512, u'next_clock': 3638523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196271.224038272} mcu 'psu': got {'#receive_time': 196272.167135309, u'next_clock': 2214568775L, u'oid': 3, u'value': 16277, '#name': u'analog_in_state', '#sent_time': 196271.191514105} mcu 'mcu': got {'#receive_time': 196272.342550253, u'next_clock': 3667523264L, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196272.208776568} mcu 'mcu': got {'#receive_time': 196272.352575253, u'next_clock': 3668523264L, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196272.208776568} mcu 'psu': got {'#receive_time': 196272.467059901, u'next_clock': 2218168775L, u'oid': 3, u'value': 16289, '#name': u'analog_in_state', '#sent_time': 196272.175825753} mcu 'mcu': got {'#receive_time': 196272.642608105, u'next_clock': 3697523264L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196272.208776568} mcu 'mcu': got {'#receive_time': 196272.652569771, u'next_clock': 3698523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196272.208776568} mcu 'psu': got {'#receive_time': 196272.767159734, u'next_clock': 2221768775L, u'oid': 3, u'value': 16275, '#name': u'analog_in_state', '#sent_time': 196272.175825753} mcu 'mcu': got {'#receive_time': 196272.942624512, u'next_clock': 3727523264L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196272.208776568} mcu 'mcu': got {'#receive_time': 196272.952634104, u'next_clock': 3728523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196272.208776568} mcu 'psu': got {'#receive_time': 196273.067058327, u'next_clock': 2225368775L, u'oid': 3, u'value': 16291, '#name': u'analog_in_state', '#sent_time': 196272.175825753} mcu 'mcu': got {'#receive_time': 196273.242570271, u'next_clock': 3757523264L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'mcu': got {'#receive_time': 196273.252571901, u'next_clock': 3758523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'psu': got {'#receive_time': 196273.367080882, u'next_clock': 2228968775L, u'oid': 3, u'value': 16299, '#name': u'analog_in_state', '#sent_time': 196273.160947641} mcu 'mcu': got {'#receive_time': 196273.542647123, u'next_clock': 3787523264L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'mcu': got {'#receive_time': 196273.552611048, u'next_clock': 3788523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'psu': got {'#receive_time': 196273.667083771, u'next_clock': 2232568775L, u'oid': 3, u'value': 16297, '#name': u'analog_in_state', '#sent_time': 196273.160947641} mcu 'mcu': got {'#receive_time': 196273.8425824, u'next_clock': 3817523264L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'mcu': got {'#receive_time': 196273.852617585, u'next_clock': 3818523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'psu': got {'#receive_time': 196273.967012548, u'next_clock': 2236168775L, u'oid': 3, u'value': 16300, '#name': u'analog_in_state', '#sent_time': 196273.160947641} mcu 'mcu': got {'#receive_time': 196274.142625733, u'next_clock': 3847523264L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'mcu': got {'#receive_time': 196274.152580585, u'next_clock': 3848523264L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196273.192922586} mcu 'psu': got {'#receive_time': 196274.267054437, u'next_clock': 2239768775L, u'oid': 3, u'value': 16284, '#name': u'analog_in_state', '#sent_time': 196274.145554011} mcu 'mcu': got {'#receive_time': 196274.442737881, u'next_clock': 3877523264L, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196274.177407048} mcu 'mcu': got {'#receive_time': 196274.452628492, u'next_clock': 3878523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196274.177407048} mcu 'psu': got {'#receive_time': 196274.567047344, u'next_clock': 2243368775L, u'oid': 3, u'value': 16302, '#name': u'analog_in_state', '#sent_time': 196274.145554011} mcu 'mcu': got {'#receive_time': 196274.742808196, u'next_clock': 3907523264L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196274.177407048} mcu 'mcu': got {'#receive_time': 196274.752660251, u'next_clock': 3908523264L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196274.177407048} mcu 'psu': got {'#receive_time': 196274.867020474, u'next_clock': 2246968775L, u'oid': 3, u'value': 16297, '#name': u'analog_in_state', '#sent_time': 196274.145554011} mcu 'mcu': got {'#receive_time': 196275.042769029, u'next_clock': 3937523264L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196274.177407048} mcu 'mcu': got {'#receive_time': 196275.054876196, u'next_clock': 3938523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196274.177407048} mcu 'psu': got {'#receive_time': 196275.166931288, u'next_clock': 2250568775L, u'oid': 3, u'value': 16280, '#name': u'analog_in_state', '#sent_time': 196275.130270992} mcu 'mcu': got {'#receive_time': 196275.342714436, u'next_clock': 3967523264L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196275.162299955} mcu 'mcu': got {'#receive_time': 196275.352650899, u'next_clock': 3968523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196275.162299955} mcu 'psu': got {'#receive_time': 196275.467046695, u'next_clock': 2254168775L, u'oid': 3, u'value': 16349, '#name': u'analog_in_state', '#sent_time': 196275.130270992} mcu 'mcu': got {'#receive_time': 196275.642791955, u'next_clock': 3997523264L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196275.162299955} mcu 'mcu': got {'#receive_time': 196275.652688418, u'next_clock': 3998523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196275.162299955} mcu 'psu': got {'#receive_time': 196275.767125473, u'next_clock': 2257768775L, u'oid': 3, u'value': 16322, '#name': u'analog_in_state', '#sent_time': 196275.130270992} mcu 'mcu': got {'#receive_time': 196275.942786695, u'next_clock': 4027523264L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196275.162299955} mcu 'mcu': got {'#receive_time': 196275.952696232, u'next_clock': 4028523264L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196275.162299955} mcu 'psu': got {'#receive_time': 196276.067095047, u'next_clock': 2261368775L, u'oid': 3, u'value': 16315, '#name': u'analog_in_state', '#sent_time': 196275.130270992} mcu 'mcu': got {'#receive_time': 196276.242742862, u'next_clock': 4057523264L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196276.147097936} mcu 'mcu': got {'#receive_time': 196276.252688176, u'next_clock': 4058523264L, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196276.147097936} mcu 'psu': got {'#receive_time': 196276.366987862, u'next_clock': 2264968775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196276.115192862} mcu 'mcu': got {'#receive_time': 196276.542785528, u'next_clock': 4087523264L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196276.147097936} mcu 'mcu': got {'#receive_time': 196276.552702436, u'next_clock': 4088523264L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196276.147097936} mcu 'psu': got {'#receive_time': 196276.667106732, u'next_clock': 2268568775L, u'oid': 3, u'value': 16256, '#name': u'analog_in_state', '#sent_time': 196276.115192862} mcu 'mcu': got {'#receive_time': 196276.842706917, u'next_clock': 4117523264L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196276.147097936} mcu 'mcu': got {'#receive_time': 196276.852653787, u'next_clock': 4118523264L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196276.147097936} mcu 'psu': got {'#receive_time': 196276.966954639, u'next_clock': 2272168775L, u'oid': 3, u'value': 16309, '#name': u'analog_in_state', '#sent_time': 196276.115192862} mcu 'mcu': got {'#receive_time': 196277.142670417, u'next_clock': 4147523264L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'mcu': got {'#receive_time': 196277.152690972, u'next_clock': 4148523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'psu': got {'#receive_time': 196277.266945602, u'next_clock': 2275768775L, u'oid': 3, u'value': 16319, '#name': u'analog_in_state', '#sent_time': 196277.099953083} mcu 'mcu': got {'#receive_time': 196277.442812787, u'next_clock': 4177523264L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'mcu': got {'#receive_time': 196277.452708083, u'next_clock': 4178523264L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'psu': got {'#receive_time': 196277.56691312, u'next_clock': 2279368775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196277.099953083} mcu 'mcu': got {'#receive_time': 196277.742863639, u'next_clock': 4207523264L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'mcu': got {'#receive_time': 196277.752730972, u'next_clock': 4208523264L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'psu': got {'#receive_time': 196277.866903972, u'next_clock': 2282968775L, u'oid': 3, u'value': 16301, '#name': u'analog_in_state', '#sent_time': 196277.099953083} mcu 'mcu': got {'#receive_time': 196278.042812953, u'next_clock': 4237523264L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'mcu': got {'#receive_time': 196278.052752046, u'next_clock': 4238523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196277.131609435} mcu 'psu': got {'#receive_time': 196278.166865083, u'next_clock': 2286568775L, u'oid': 3, u'value': 16300, '#name': u'analog_in_state', '#sent_time': 196278.084984305} mcu 'mcu': got {'#receive_time': 196278.342797416, u'next_clock': 4267523264L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196278.117067694} mcu 'mcu': got {'#receive_time': 196278.352733286, u'next_clock': 4268523264L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196278.117067694} mcu 'psu': got {'#receive_time': 196278.466927675, u'next_clock': 2290168775L, u'oid': 3, u'value': 16300, '#name': u'analog_in_state', '#sent_time': 196278.084984305} mcu 'mcu': got {'#receive_time': 196278.642883657, u'next_clock': 2555968, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196278.117067694} mcu 'mcu': got {'#receive_time': 196278.65277162, u'next_clock': 3555968, u'oid': 18, u'value': 31455, '#name': u'analog_in_state', '#sent_time': 196278.117067694} mcu 'psu': got {'#receive_time': 196278.766901768, u'next_clock': 2293768775L, u'oid': 3, u'value': 16328, '#name': u'analog_in_state', '#sent_time': 196278.084984305} mcu 'mcu': got {'#receive_time': 196278.942812953, u'next_clock': 32555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196278.117067694} mcu 'mcu': got {'#receive_time': 196278.952749138, u'next_clock': 33555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196278.117067694} mcu 'psu': got {'#receive_time': 196279.066956508, u'next_clock': 2297368775L, u'oid': 3, u'value': 16320, '#name': u'analog_in_state', '#sent_time': 196278.084984305} mcu 'mcu': got {'#receive_time': 196279.242863508, u'next_clock': 62555968, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196279.101556601} mcu 'mcu': got {'#receive_time': 196279.252792156, u'next_clock': 63555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196279.101556601} mcu 'psu': got {'#receive_time': 196279.366887489, u'next_clock': 2300968775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196279.06979236} mcu 'mcu': got {'#receive_time': 196279.542835082, u'next_clock': 92555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196279.101556601} mcu 'mcu': got {'#receive_time': 196279.552815267, u'next_clock': 93555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196279.101556601} mcu 'psu': got {'#receive_time': 196279.66695073, u'next_clock': 2304568775L, u'oid': 3, u'value': 16325, '#name': u'analog_in_state', '#sent_time': 196279.06979236} mcu 'mcu': got {'#receive_time': 196279.842802897, u'next_clock': 122555968, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196279.101556601} mcu 'mcu': got {'#receive_time': 196279.852781637, u'next_clock': 123555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196279.101556601} mcu 'psu': got {'#receive_time': 196279.966890619, u'next_clock': 2308168775L, u'oid': 3, u'value': 16314, '#name': u'analog_in_state', '#sent_time': 196279.06979236} mcu 'mcu': got {'#receive_time': 196280.14287373, u'next_clock': 152555968, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'mcu': got {'#receive_time': 196280.152850933, u'next_clock': 153555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'psu': got {'#receive_time': 196280.266841952, u'next_clock': 2311768775L, u'oid': 3, u'value': 16338, '#name': u'analog_in_state', '#sent_time': 196280.053986711} mcu 'mcu': got {'#receive_time': 196280.442871026, u'next_clock': 182555968, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'mcu': got {'#receive_time': 196280.452820322, u'next_clock': 183555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'psu': got {'#receive_time': 196280.567528063, u'next_clock': 2315368775L, u'oid': 3, u'value': 16315, '#name': u'analog_in_state', '#sent_time': 196280.053986711} mcu 'mcu': got {'#receive_time': 196280.742917766, u'next_clock': 212555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'mcu': got {'#receive_time': 196280.752917378, u'next_clock': 213555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'psu': got {'#receive_time': 196280.866818655, u'next_clock': 2318968775L, u'oid': 3, u'value': 16297, '#name': u'analog_in_state', '#sent_time': 196280.053986711} mcu 'mcu': got {'#receive_time': 196281.042856525, u'next_clock': 242555968, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'mcu': got {'#receive_time': 196281.052879137, u'next_clock': 243555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196280.087141433} mcu 'psu': got {'#receive_time': 196281.166829692, u'next_clock': 2322568775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196281.03864197} mcu 'mcu': got {'#receive_time': 196281.342874062, u'next_clock': 272555968, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196281.071528933} mcu 'mcu': got {'#receive_time': 196281.352829155, u'next_clock': 273555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196281.071528933} mcu 'psu': got {'#receive_time': 196281.466842822, u'next_clock': 2326168775L, u'oid': 3, u'value': 16335, '#name': u'analog_in_state', '#sent_time': 196281.03864197} mcu 'mcu': got {'#receive_time': 196281.642994655, u'next_clock': 302555968, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196281.071528933} mcu 'mcu': got {'#receive_time': 196281.65288171, u'next_clock': 303555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196281.071528933} mcu 'psu': got {'#receive_time': 196281.766867803, u'next_clock': 2329768775L, u'oid': 3, u'value': 16310, '#name': u'analog_in_state', '#sent_time': 196281.03864197} mcu 'mcu': got {'#receive_time': 196281.942937451, u'next_clock': 332555968, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196281.071528933} mcu 'mcu': got {'#receive_time': 196281.952900173, u'next_clock': 333555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196281.071528933} mcu 'psu': got {'#receive_time': 196282.066874821, u'next_clock': 2333368775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196282.022840562} mcu 'mcu': got {'#receive_time': 196282.242934451, u'next_clock': 362555968, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196282.056128617} mcu 'mcu': got {'#receive_time': 196282.252906803, u'next_clock': 363555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196282.056128617} mcu 'psu': got {'#receive_time': 196282.366797099, u'next_clock': 2336968775L, u'oid': 3, u'value': 16328, '#name': u'analog_in_state', '#sent_time': 196282.022840562} mcu 'mcu': got {'#receive_time': 196282.542923765, u'next_clock': 392555968, u'oid': 17, u'value': 22593, '#name': u'analog_in_state', '#sent_time': 196282.056128617} mcu 'mcu': got {'#receive_time': 196282.552905821, u'next_clock': 393555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196282.056128617} mcu 'psu': got {'#receive_time': 196282.666838284, u'next_clock': 2340568775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196282.022840562} mcu 'mcu': got {'#receive_time': 196282.842973784, u'next_clock': 422555968, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196282.056128617} mcu 'mcu': got {'#receive_time': 196282.852983821, u'next_clock': 423555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196282.056128617} mcu 'psu': got {'#receive_time': 196282.966788987, u'next_clock': 2344168775L, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196282.022840562} mcu 'mcu': got {'#receive_time': 196283.143023524, u'next_clock': 452555968, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196283.041063691} mcu 'mcu': got {'#receive_time': 196283.152899709, u'next_clock': 453555968, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196283.041063691} mcu 'psu': got {'#receive_time': 196283.266792358, u'next_clock': 2347768775L, u'oid': 3, u'value': 16317, '#name': u'analog_in_state', '#sent_time': 196283.006845339} mcu 'mcu': got {'#receive_time': 196283.443053931, u'next_clock': 482555968, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196283.041063691} mcu 'mcu': got {'#receive_time': 196283.452966876, u'next_clock': 483555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196283.041063691} mcu 'psu': got {'#receive_time': 196283.566806376, u'next_clock': 2351368775L, u'oid': 3, u'value': 16312, '#name': u'analog_in_state', '#sent_time': 196283.006845339} mcu 'mcu': got {'#receive_time': 196283.742972635, u'next_clock': 512555968, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196283.041063691} mcu 'mcu': got {'#receive_time': 196283.752971857, u'next_clock': 513555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196283.041063691} mcu 'psu': got {'#receive_time': 196283.86687119, u'next_clock': 2354968775L, u'oid': 3, u'value': 16313, '#name': u'analog_in_state', '#sent_time': 196283.006845339} mcu 'mcu': got {'#receive_time': 196284.042867968, u'next_clock': 542555968, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'mcu': got {'#receive_time': 196284.052881894, u'next_clock': 543555968, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'psu': got {'#receive_time': 196284.166636598, u'next_clock': 2358568775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196283.991271209} mcu 'mcu': got {'#receive_time': 196284.342923764, u'next_clock': 572555968, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'mcu': got {'#receive_time': 196284.352942894, u'next_clock': 573555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'psu': got {'#receive_time': 196284.46662232, u'next_clock': 2362168775L, u'oid': 3, u'value': 16305, '#name': u'analog_in_state', '#sent_time': 196283.991271209} mcu 'mcu': got {'#receive_time': 196284.643001801, u'next_clock': 602555968, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'mcu': got {'#receive_time': 196284.652936005, u'next_clock': 603555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'psu': got {'#receive_time': 196284.766615486, u'next_clock': 2365768775L, u'oid': 3, u'value': 16338, '#name': u'analog_in_state', '#sent_time': 196283.991271209} mcu 'mcu': got {'#receive_time': 196284.942945931, u'next_clock': 632555968, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'mcu': got {'#receive_time': 196284.952898208, u'next_clock': 633555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196284.025809246} mcu 'psu': got {'#receive_time': 196285.066641745, u'next_clock': 2369368775L, u'oid': 3, u'value': 16320, '#name': u'analog_in_state', '#sent_time': 196284.975640301} mcu 'mcu': got {'#receive_time': 196285.242969949, u'next_clock': 662555968, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196285.010341801} mcu 'mcu': got {'#receive_time': 196285.252932134, u'next_clock': 663555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196285.010341801} mcu 'psu': got {'#receive_time': 196285.366594856, u'next_clock': 2372968775L, u'oid': 3, u'value': 16306, '#name': u'analog_in_state', '#sent_time': 196284.975640301} mcu 'mcu': got {'#receive_time': 196285.543027152, u'next_clock': 692555968, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196285.010341801} mcu 'mcu': got {'#receive_time': 196285.552930819, u'next_clock': 693555968, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196285.010341801} mcu 'psu': got {'#receive_time': 196285.666595393, u'next_clock': 2376568775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196284.975640301} mcu 'mcu': got {'#receive_time': 196285.842971615, u'next_clock': 722555968, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196285.010341801} mcu 'mcu': got {'#receive_time': 196285.852954986, u'next_clock': 723555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196285.010341801} mcu 'psu': got {'#receive_time': 196285.966539356, u'next_clock': 2380168775L, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196285.960291726} mcu 'mcu': got {'#receive_time': 196286.142997837, u'next_clock': 752555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196285.994568411} mcu 'mcu': got {'#receive_time': 196286.152937115, u'next_clock': 753555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196285.994568411} mcu 'psu': got {'#receive_time': 196286.266580041, u'next_clock': 2383768775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196285.960291726} mcu 'mcu': got {'#receive_time': 196286.443008448, u'next_clock': 782555968, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196285.994568411} mcu 'mcu': got {'#receive_time': 196286.452958282, u'next_clock': 783555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196285.994568411} mcu 'psu': got {'#receive_time': 196286.566611152, u'next_clock': 2387368775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196285.960291726} mcu 'mcu': got {'#receive_time': 196286.743024059, u'next_clock': 812555968, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196285.994568411} mcu 'mcu': got {'#receive_time': 196286.752980578, u'next_clock': 813555968, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196285.994568411} mcu 'psu': got {'#receive_time': 196286.866560096, u'next_clock': 2390968775L, u'oid': 3, u'value': 16318, '#name': u'analog_in_state', '#sent_time': 196285.960291726} mcu 'mcu': got {'#receive_time': 196287.042998207, u'next_clock': 842555968, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'mcu': got {'#receive_time': 196287.052970911, u'next_clock': 843555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'psu': got {'#receive_time': 196287.166556966, u'next_clock': 2394568775L, u'oid': 3, u'value': 16260, '#name': u'analog_in_state', '#sent_time': 196286.944481781} mcu 'mcu': got {'#receive_time': 196287.34303967, u'next_clock': 872555968, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'mcu': got {'#receive_time': 196287.352992429, u'next_clock': 873555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'psu': got {'#receive_time': 196287.466556651, u'next_clock': 2398168775L, u'oid': 3, u'value': 16320, '#name': u'analog_in_state', '#sent_time': 196286.944481781} mcu 'mcu': got {'#receive_time': 196287.643032336, u'next_clock': 902555968, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'mcu': got {'#receive_time': 196287.652997318, u'next_clock': 903555968, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'psu': got {'#receive_time': 196287.766543355, u'next_clock': 2401768775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196286.944481781} mcu 'mcu': got {'#receive_time': 196287.943032058, u'next_clock': 932555968, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'mcu': got {'#receive_time': 196287.95304704, u'next_clock': 933555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196286.978801281} mcu 'psu': got {'#receive_time': 196288.066594244, u'next_clock': 2405368775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196287.929208262} mcu 'mcu': got {'#receive_time': 196288.243079558, u'next_clock': 962555968, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196287.963484151} mcu 'mcu': got {'#receive_time': 196288.253049947, u'next_clock': 963555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196287.963484151} mcu 'psu': got {'#receive_time': 196288.366504188, u'next_clock': 2408968775L, u'oid': 3, u'value': 16327, '#name': u'analog_in_state', '#sent_time': 196287.929208262} mcu 'mcu': got {'#receive_time': 196288.54312204, u'next_clock': 992555968, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196287.963484151} mcu 'mcu': got {'#receive_time': 196288.55302741, u'next_clock': 993555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196287.963484151} mcu 'psu': got {'#receive_time': 196288.666517373, u'next_clock': 2412568775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196287.929208262} mcu 'mcu': got {'#receive_time': 196288.843089706, u'next_clock': 1022555968, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196287.963484151} mcu 'mcu': got {'#receive_time': 196288.856725391, u'next_clock': 1023555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196287.963484151} mcu 'psu': got {'#receive_time': 196288.966622836, u'next_clock': 2416168775L, u'oid': 3, u'value': 16331, '#name': u'analog_in_state', '#sent_time': 196288.913257169} mcu 'mcu': got {'#receive_time': 196289.143162854, u'next_clock': 1052555968, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196288.947562336} mcu 'mcu': got {'#receive_time': 196289.153144076, u'next_clock': 1053555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196288.947562336} mcu 'psu': got {'#receive_time': 196289.266575113, u'next_clock': 2419768775L, u'oid': 3, u'value': 16320, '#name': u'analog_in_state', '#sent_time': 196288.913257169} mcu 'mcu': got {'#receive_time': 196289.443280595, u'next_clock': 1082555968, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196288.947562336} mcu 'mcu': got {'#receive_time': 196289.45330728, u'next_clock': 1083555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196288.947562336} mcu 'psu': got {'#receive_time': 196289.566553002, u'next_clock': 2423368775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196288.913257169} mcu 'mcu': got {'#receive_time': 196289.743208557, u'next_clock': 1112555968, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196288.947562336} mcu 'mcu': got {'#receive_time': 196289.753197817, u'next_clock': 1113555968, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196288.947562336} mcu 'psu': got {'#receive_time': 196289.866604983, u'next_clock': 2426968775L, u'oid': 3, u'value': 16318, '#name': u'analog_in_state', '#sent_time': 196288.913257169} mcu 'mcu': got {'#receive_time': 196290.043207168, u'next_clock': 1142555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196289.931764205} mcu 'mcu': got {'#receive_time': 196290.053191779, u'next_clock': 1143555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196289.931764205} mcu 'psu': got {'#receive_time': 196290.166545946, u'next_clock': 2430568775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196289.898271279} mcu 'mcu': got {'#receive_time': 196290.343221983, u'next_clock': 1172555968, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196289.931764205} mcu 'mcu': got {'#receive_time': 196290.353180557, u'next_clock': 1173555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196289.931764205} mcu 'psu': got {'#receive_time': 196290.466635779, u'next_clock': 2434168775L, u'oid': 3, u'value': 16336, '#name': u'analog_in_state', '#sent_time': 196289.898271279} mcu 'mcu': got {'#receive_time': 196290.643238075, u'next_clock': 1202555968, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196289.931764205} mcu 'mcu': got {'#receive_time': 196290.653202427, u'next_clock': 1203555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196289.931764205} mcu 'psu': got {'#receive_time': 196290.766567279, u'next_clock': 2437768775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196289.898271279} mcu 'mcu': got {'#receive_time': 196290.943271983, u'next_clock': 1232555968, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'mcu': got {'#receive_time': 196290.953234834, u'next_clock': 1233555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'psu': got {'#receive_time': 196291.066473723, u'next_clock': 2441368775L, u'oid': 3, u'value': 16331, '#name': u'analog_in_state', '#sent_time': 196290.882674242} mcu 'mcu': got {'#receive_time': 196291.243246445, u'next_clock': 1262555968, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'mcu': got {'#receive_time': 196291.253221445, u'next_clock': 1263555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'psu': got {'#receive_time': 196291.366523316, u'next_clock': 2444968775L, u'oid': 3, u'value': 16326, '#name': u'analog_in_state', '#sent_time': 196290.882674242} mcu 'mcu': got {'#receive_time': 196291.543359297, u'next_clock': 1292555968, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'mcu': got {'#receive_time': 196291.55323976, u'next_clock': 1293555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'psu': got {'#receive_time': 196291.666506093, u'next_clock': 2448568775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196290.882674242} mcu 'mcu': got {'#receive_time': 196291.843313297, u'next_clock': 1322555968, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'mcu': got {'#receive_time': 196291.853244852, u'next_clock': 1323555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196290.916359353} mcu 'psu': got {'#receive_time': 196291.966511463, u'next_clock': 2452168775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196291.867001186} mcu 'mcu': got {'#receive_time': 196292.143288556, u'next_clock': 1352555968, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196291.900517445} mcu 'mcu': got {'#receive_time': 196292.153262667, u'next_clock': 1353555968, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196291.900517445} mcu 'psu': got {'#receive_time': 196292.266515982, u'next_clock': 2455768775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196291.867001186} mcu 'mcu': got {'#receive_time': 196292.443448296, u'next_clock': 1382555968, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196291.900517445} mcu 'mcu': got {'#receive_time': 196292.453328056, u'next_clock': 1383555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196291.900517445} mcu 'psu': got {'#receive_time': 196292.566391741, u'next_clock': 2459368775L, u'oid': 3, u'value': 16343, '#name': u'analog_in_state', '#sent_time': 196291.867001186} mcu 'mcu': got {'#receive_time': 196292.743329463, u'next_clock': 1412555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196291.900517445} mcu 'mcu': got {'#receive_time': 196292.753291833, u'next_clock': 1413555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196291.900517445} mcu 'psu': got {'#receive_time': 196292.866406852, u'next_clock': 2462968775L, u'oid': 3, u'value': 16371, '#name': u'analog_in_state', '#sent_time': 196292.851803055} mcu 'mcu': got {'#receive_time': 196293.043316296, u'next_clock': 1442555968, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196292.885321667} mcu 'mcu': got {'#receive_time': 196293.053293741, u'next_clock': 1443555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196292.885321667} mcu 'psu': got {'#receive_time': 196293.1664425, u'next_clock': 2466568775L, u'oid': 3, u'value': 16319, '#name': u'analog_in_state', '#sent_time': 196292.851803055} mcu 'mcu': got {'#receive_time': 196293.343335926, u'next_clock': 1472555968, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196292.885321667} mcu 'mcu': got {'#receive_time': 196293.353301592, u'next_clock': 1473555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196292.885321667} mcu 'psu': got {'#receive_time': 196293.466521722, u'next_clock': 2470168775L, u'oid': 3, u'value': 16353, '#name': u'analog_in_state', '#sent_time': 196292.851803055} mcu 'mcu': got {'#receive_time': 196293.643374351, u'next_clock': 1502555968, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196292.885321667} mcu 'mcu': got {'#receive_time': 196293.653320777, u'next_clock': 1503555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196292.885321667} mcu 'psu': got {'#receive_time': 196293.766472222, u'next_clock': 2473768775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196292.851803055} mcu 'mcu': got {'#receive_time': 196293.943375647, u'next_clock': 1532555968, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'mcu': got {'#receive_time': 196293.953430925, u'next_clock': 1533555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'psu': got {'#receive_time': 196294.066393036, u'next_clock': 2477368775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196293.836329092} mcu 'mcu': got {'#receive_time': 196294.243391258, u'next_clock': 1562555968, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'mcu': got {'#receive_time': 196294.253369018, u'next_clock': 1563555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'psu': got {'#receive_time': 196294.366468018, u'next_clock': 2480968775L, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196293.836329092} mcu 'mcu': got {'#receive_time': 196294.54338561, u'next_clock': 1592555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'mcu': got {'#receive_time': 196294.553352092, u'next_clock': 1593555968, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'psu': got {'#receive_time': 196294.666457388, u'next_clock': 2484568775L, u'oid': 3, u'value': 16328, '#name': u'analog_in_state', '#sent_time': 196293.836329092} mcu 'mcu': got {'#receive_time': 196294.843350536, u'next_clock': 1622555968, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'mcu': got {'#receive_time': 196294.853402869, u'next_clock': 1623555968, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196293.870180925} mcu 'psu': got {'#receive_time': 196294.966436128, u'next_clock': 2488168775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196294.820627647} mcu 'mcu': got {'#receive_time': 196295.143421276, u'next_clock': 1652555968, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196294.855141351} mcu 'mcu': got {'#receive_time': 196295.153384628, u'next_clock': 1653555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196294.855141351} mcu 'psu': got {'#receive_time': 196295.266398313, u'next_clock': 2491768775L, u'oid': 3, u'value': 16314, '#name': u'analog_in_state', '#sent_time': 196294.820627647} mcu 'mcu': got {'#receive_time': 196295.443533017, u'next_clock': 1682555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196294.855141351} mcu 'mcu': got {'#receive_time': 196295.453439221, u'next_clock': 1683555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196294.855141351} mcu 'psu': got {'#receive_time': 196295.566371943, u'next_clock': 2495368775L, u'oid': 3, u'value': 16308, '#name': u'analog_in_state', '#sent_time': 196294.820627647} mcu 'mcu': got {'#receive_time': 196295.743457961, u'next_clock': 1712555968, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196294.855141351} mcu 'mcu': got {'#receive_time': 196295.753404869, u'next_clock': 1713555968, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196294.855141351} mcu 'psu': got {'#receive_time': 196295.86633835, u'next_clock': 2498968775L, u'oid': 3, u'value': 16317, '#name': u'analog_in_state', '#sent_time': 196295.805562332} mcu 'mcu': got {'#receive_time': 196296.043439202, u'next_clock': 1742555968, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196295.840071461} mcu 'mcu': got {'#receive_time': 196296.053427239, u'next_clock': 1743555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196295.840071461} mcu 'psu': got {'#receive_time': 196296.166338628, u'next_clock': 2502568775L, u'oid': 3, u'value': 16292, '#name': u'analog_in_state', '#sent_time': 196295.805562332} mcu 'mcu': got {'#receive_time': 196296.343585109, u'next_clock': 1772555968, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196295.840071461} mcu 'mcu': got {'#receive_time': 196296.353449239, u'next_clock': 1773555968, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196295.840071461} mcu 'psu': got {'#receive_time': 196296.46636322, u'next_clock': 2506168775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196295.805562332} mcu 'mcu': got {'#receive_time': 196296.64348759, u'next_clock': 1802555968, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196295.840071461} mcu 'mcu': got {'#receive_time': 196296.653527812, u'next_clock': 1803555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196295.840071461} mcu 'psu': got {'#receive_time': 196296.766372775, u'next_clock': 2509768775L, u'oid': 3, u'value': 16211, '#name': u'analog_in_state', '#sent_time': 196295.805562332} mcu 'mcu': got {'#receive_time': 196296.94346759, u'next_clock': 1832555968, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196296.82459309} mcu 'mcu': got {'#receive_time': 196296.95347146, u'next_clock': 1833555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196296.82459309} mcu 'psu': got {'#receive_time': 196297.066317664, u'next_clock': 2513368775L, u'oid': 3, u'value': 16296, '#name': u'analog_in_state', '#sent_time': 196296.790336072} mcu 'mcu': got {'#receive_time': 196297.243513516, u'next_clock': 1862555968, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196296.82459309} mcu 'mcu': got {'#receive_time': 196297.253483071, u'next_clock': 1863555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196296.82459309} mcu 'psu': got {'#receive_time': 196297.366532831, u'next_clock': 2516968775L, u'oid': 3, u'value': 16302, '#name': u'analog_in_state', '#sent_time': 196296.790336072} mcu 'mcu': got {'#receive_time': 196297.543480201, u'next_clock': 1892555968, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196296.82459309} mcu 'mcu': got {'#receive_time': 196297.553483923, u'next_clock': 1893555968, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196296.82459309} mcu 'psu': got {'#receive_time': 196297.666407256, u'next_clock': 2520568775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196296.790336072} mcu 'mcu': got {'#receive_time': 196297.843482719, u'next_clock': 1922555968, u'oid': 17, u'value': 22563, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'mcu': got {'#receive_time': 196297.853485497, u'next_clock': 1923555968, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'psu': got {'#receive_time': 196297.966349941, u'next_clock': 2524168775L, u'oid': 3, u'value': 16325, '#name': u'analog_in_state', '#sent_time': 196297.77485696} mcu 'mcu': got {'#receive_time': 196298.143537441, u'next_clock': 1952555968, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'mcu': got {'#receive_time': 196298.153471126, u'next_clock': 1953555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'psu': got {'#receive_time': 196298.266316682, u'next_clock': 2527768775L, u'oid': 3, u'value': 16357, '#name': u'analog_in_state', '#sent_time': 196297.77485696} mcu 'mcu': got {'#receive_time': 196298.443541552, u'next_clock': 1982555968, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'mcu': got {'#receive_time': 196298.453520145, u'next_clock': 1983555968, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'psu': got {'#receive_time': 196298.566253552, u'next_clock': 2531368775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196297.77485696} mcu 'mcu': got {'#receive_time': 196298.743596293, u'next_clock': 2012555968, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'mcu': got {'#receive_time': 196298.753523348, u'next_clock': 2013555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196297.809091182} mcu 'psu': got {'#receive_time': 196298.866377774, u'next_clock': 2534968775L, u'oid': 3, u'value': 16314, '#name': u'analog_in_state', '#sent_time': 196298.760004756} mcu 'mcu': got {'#receive_time': 196299.043493607, u'next_clock': 2042555968, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196298.793507126} mcu 'mcu': got {'#receive_time': 196299.053477793, u'next_clock': 2043555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196298.793507126} mcu 'psu': got {'#receive_time': 196299.166205904, u'next_clock': 2538568775L, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196298.760004756} mcu 'mcu': got {'#receive_time': 196299.343549218, u'next_clock': 2072555968, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196298.793507126} mcu 'mcu': got {'#receive_time': 196299.353445255, u'next_clock': 2073555968, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196298.793507126} mcu 'psu': got {'#receive_time': 196299.466182107, u'next_clock': 2542168775L, u'oid': 3, u'value': 16322, '#name': u'analog_in_state', '#sent_time': 196298.760004756} mcu 'mcu': got {'#receive_time': 196299.643481996, u'next_clock': 2102555968, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196298.793507126} mcu 'mcu': got {'#receive_time': 196299.653479663, u'next_clock': 2103555968, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196298.793507126} mcu 'psu': got {'#receive_time': 196299.766173403, u'next_clock': 2545768775L, u'oid': 3, u'value': 16325, '#name': u'analog_in_state', '#sent_time': 196299.744111088} mcu 'mcu': got {'#receive_time': 196299.943513385, u'next_clock': 2132555968, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196299.778384366} mcu 'mcu': got {'#receive_time': 196299.953472051, u'next_clock': 2133555968, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196299.778384366} mcu 'psu': got {'#receive_time': 196300.066179662, u'next_clock': 2549368775L, u'oid': 3, u'value': 16324, '#name': u'analog_in_state', '#sent_time': 196299.744111088} mcu 'mcu': got {'#receive_time': 196300.243523755, u'next_clock': 2162555968L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196299.778384366} mcu 'mcu': got {'#receive_time': 196300.253483996, u'next_clock': 2163555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196299.778384366} mcu 'psu': got {'#receive_time': 196300.366267903, u'next_clock': 2552968775L, u'oid': 3, u'value': 16324, '#name': u'analog_in_state', '#sent_time': 196299.744111088} mcu 'mcu': got {'#receive_time': 196300.543506329, u'next_clock': 2192555968L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196299.778384366} mcu 'mcu': got {'#receive_time': 196300.55350294, u'next_clock': 2193555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196299.778384366} mcu 'psu': got {'#receive_time': 196300.66614881, u'next_clock': 2556568775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196299.744111088} mcu 'mcu': got {'#receive_time': 196300.843522088, u'next_clock': 2222555968L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'mcu': got {'#receive_time': 196300.853507958, u'next_clock': 2223555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'psu': got {'#receive_time': 196300.966148903, u'next_clock': 2560168775L, u'oid': 3, u'value': 16306, '#name': u'analog_in_state', '#sent_time': 196300.728470088} mcu 'mcu': got {'#receive_time': 196301.143536143, u'next_clock': 2252555968L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'mcu': got {'#receive_time': 196301.153518791, u'next_clock': 2253555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'psu': got {'#receive_time': 196301.266210143, u'next_clock': 2563768775L, u'oid': 3, u'value': 16328, '#name': u'analog_in_state', '#sent_time': 196300.728470088} mcu 'mcu': got {'#receive_time': 196301.443548754, u'next_clock': 2282555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'mcu': got {'#receive_time': 196301.453535087, u'next_clock': 2283555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'psu': got {'#receive_time': 196301.566131643, u'next_clock': 2567368775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196300.728470088} mcu 'mcu': got {'#receive_time': 196301.743544346, u'next_clock': 2312555968L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196300.76282018} mcu 'mcu': got {'#receive_time': 196301.753515254, u'next_clock': 2313555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'psu': got {'#receive_time': 196301.866120791, u'next_clock': 2570968775L, u'oid': 3, u'value': 16308, '#name': u'analog_in_state', '#sent_time': 196301.713323976} mcu 'mcu': got {'#receive_time': 196302.043594569, u'next_clock': 2342555968L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'mcu': got {'#receive_time': 196302.053550161, u'next_clock': 2343555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'psu': got {'#receive_time': 196302.166131272, u'next_clock': 2574568775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196301.713323976} mcu 'mcu': got {'#receive_time': 196302.343638957, u'next_clock': 2372555968L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'mcu': got {'#receive_time': 196302.353534865, u'next_clock': 2373555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'psu': got {'#receive_time': 196302.466093309, u'next_clock': 2578168775L, u'oid': 3, u'value': 16338, '#name': u'analog_in_state', '#sent_time': 196301.713323976} mcu 'mcu': got {'#receive_time': 196302.64359305, u'next_clock': 2402555968L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'mcu': got {'#receive_time': 196302.653564068, u'next_clock': 2403555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196301.747589365} mcu 'psu': got {'#receive_time': 196302.766071883, u'next_clock': 2581768775L, u'oid': 3, u'value': 16310, '#name': u'analog_in_state', '#sent_time': 196302.697534235} mcu 'mcu': got {'#receive_time': 196302.943620772, u'next_clock': 2432555968L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196302.731786938} mcu 'mcu': got {'#receive_time': 196302.953563401, u'next_clock': 2433555968L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196302.731786938} mcu 'psu': got {'#receive_time': 196303.066136216, u'next_clock': 2585368775L, u'oid': 3, u'value': 16294, '#name': u'analog_in_state', '#sent_time': 196302.697534235} mcu 'mcu': got {'#receive_time': 196303.243736216, u'next_clock': 2462555968L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196302.731786938} mcu 'mcu': got {'#receive_time': 196303.253576734, u'next_clock': 2463555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196302.731786938} mcu 'psu': got {'#receive_time': 196303.366038623, u'next_clock': 2588968775L, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196302.697534235} mcu 'mcu': got {'#receive_time': 196303.543634382, u'next_clock': 2492555968L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196302.731786938} mcu 'mcu': got {'#receive_time': 196303.553600494, u'next_clock': 2493555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196302.731786938} mcu 'psu': got {'#receive_time': 196303.666077734, u'next_clock': 2592568775L, u'oid': 3, u'value': 16327, '#name': u'analog_in_state', '#sent_time': 196302.697534235} mcu 'mcu': got {'#receive_time': 196303.843617993, u'next_clock': 2522555968L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196303.716452456} mcu 'mcu': got {'#receive_time': 196303.853671067, u'next_clock': 2523555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196303.716452456} mcu 'psu': got {'#receive_time': 196303.966186993, u'next_clock': 2596168775L, u'oid': 3, u'value': 16332, '#name': u'analog_in_state', '#sent_time': 196303.682205771} mcu 'mcu': got {'#receive_time': 196304.143689827, u'next_clock': 2552555968L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196303.716452456} mcu 'mcu': got {'#receive_time': 196304.153667771, u'next_clock': 2553555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196303.716452456} mcu 'psu': got {'#receive_time': 196304.266221364, u'next_clock': 2599768775L, u'oid': 3, u'value': 16326, '#name': u'analog_in_state', '#sent_time': 196303.682205771} mcu 'mcu': got {'#receive_time': 196304.443815271, u'next_clock': 2582555968L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196303.716452456} mcu 'mcu': got {'#receive_time': 196304.453699215, u'next_clock': 2583555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196303.716452456} mcu 'psu': got {'#receive_time': 196304.566145567, u'next_clock': 2603368775L, u'oid': 3, u'value': 16323, '#name': u'analog_in_state', '#sent_time': 196303.682205771} mcu 'mcu': got {'#receive_time': 196304.743662956, u'next_clock': 2612555968L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'mcu': got {'#receive_time': 196304.753645993, u'next_clock': 2613555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'psu': got {'#receive_time': 196304.866111826, u'next_clock': 2606968775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196304.666496326} mcu 'mcu': got {'#receive_time': 196305.043767419, u'next_clock': 2642555968L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'mcu': got {'#receive_time': 196305.053716159, u'next_clock': 2643555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'psu': got {'#receive_time': 196305.166219122, u'next_clock': 2610568775L, u'oid': 3, u'value': 16332, '#name': u'analog_in_state', '#sent_time': 196304.666496326} mcu 'mcu': got {'#receive_time': 196305.343737733, u'next_clock': 2672555968L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'mcu': got {'#receive_time': 196305.353717474, u'next_clock': 2673555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'psu': got {'#receive_time': 196305.466111789, u'next_clock': 2614168775L, u'oid': 3, u'value': 16325, '#name': u'analog_in_state', '#sent_time': 196304.666496326} mcu 'mcu': got {'#receive_time': 196305.643795344, u'next_clock': 2702555968L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'mcu': got {'#receive_time': 196305.65373477, u'next_clock': 2703555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196304.701348289} mcu 'psu': got {'#receive_time': 196305.766079863, u'next_clock': 2617768775L, u'oid': 3, u'value': 16324, '#name': u'analog_in_state', '#sent_time': 196305.650597566} mcu 'mcu': got {'#receive_time': 196305.943802474, u'next_clock': 2732555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196305.686670937} mcu 'mcu': got {'#receive_time': 196305.953766233, u'next_clock': 2733555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196305.686670937} mcu 'psu': got {'#receive_time': 196306.066158566, u'next_clock': 2621368775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196305.650597566} mcu 'mcu': got {'#receive_time': 196306.243807214, u'next_clock': 2762555968L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196305.686670937} mcu 'mcu': got {'#receive_time': 196306.253701381, u'next_clock': 2763555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196305.686670937} mcu 'psu': got {'#receive_time': 196306.36605564, u'next_clock': 2624968775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196305.650597566} mcu 'mcu': got {'#receive_time': 196306.54382214, u'next_clock': 2792555968L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196305.686670937} mcu 'mcu': got {'#receive_time': 196306.553777233, u'next_clock': 2793555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196305.686670937} mcu 'psu': got {'#receive_time': 196306.666088973, u'next_clock': 2628568775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196306.635664918} mcu 'mcu': got {'#receive_time': 196306.843816473, u'next_clock': 2822555968L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196306.671211529} mcu 'mcu': got {'#receive_time': 196306.853767714, u'next_clock': 2823555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196306.671211529} mcu 'psu': got {'#receive_time': 196306.96605901, u'next_clock': 2632168775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196306.635664918} mcu 'mcu': got {'#receive_time': 196307.14384888, u'next_clock': 2852555968L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196306.671211529} mcu 'mcu': got {'#receive_time': 196307.153801028, u'next_clock': 2853555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196306.671211529} mcu 'psu': got {'#receive_time': 196307.266065936, u'next_clock': 2635768775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196306.635664918} mcu 'mcu': got {'#receive_time': 196307.443870565, u'next_clock': 2882555968L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196306.671211529} mcu 'mcu': got {'#receive_time': 196307.453797713, u'next_clock': 2883555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196306.671211529} mcu 'psu': got {'#receive_time': 196307.566086084, u'next_clock': 2639368775L, u'oid': 3, u'value': 16319, '#name': u'analog_in_state', '#sent_time': 196306.635664918} mcu 'mcu': got {'#receive_time': 196307.743873769, u'next_clock': 2912555968L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196307.656116676} mcu 'mcu': got {'#receive_time': 196307.75385438, u'next_clock': 2913555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196307.656116676} mcu 'psu': got {'#receive_time': 196307.866049287, u'next_clock': 2642968775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196307.61974538} mcu 'mcu': got {'#receive_time': 196308.04391425, u'next_clock': 2942555968L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196307.656116676} mcu 'mcu': got {'#receive_time': 196308.053863695, u'next_clock': 2943555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196307.656116676} mcu 'psu': got {'#receive_time': 196308.166141917, u'next_clock': 2646568775L, u'oid': 3, u'value': 16349, '#name': u'analog_in_state', '#sent_time': 196307.61974538} mcu 'mcu': got {'#receive_time': 196308.343901861, u'next_clock': 2972555968L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196307.656116676} mcu 'mcu': got {'#receive_time': 196308.353840398, u'next_clock': 2973555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196307.656116676} mcu 'psu': got {'#receive_time': 196308.466100454, u'next_clock': 2650168775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196307.61974538} mcu 'mcu': got {'#receive_time': 196308.64386262, u'next_clock': 3002555968L, u'oid': 17, u'value': 22562, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'mcu': got {'#receive_time': 196308.653826028, u'next_clock': 3003555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'psu': got {'#receive_time': 196308.766006842, u'next_clock': 2653768775L, u'oid': 3, u'value': 16304, '#name': u'analog_in_state', '#sent_time': 196308.603946731} mcu 'mcu': got {'#receive_time': 196308.943881176, u'next_clock': 3032555968L, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'mcu': got {'#receive_time': 196308.953811361, u'next_clock': 3033555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'psu': got {'#receive_time': 196309.065949879, u'next_clock': 2657368775L, u'oid': 3, u'value': 16292, '#name': u'analog_in_state', '#sent_time': 196308.603946731} mcu 'mcu': got {'#receive_time': 196309.244030916, u'next_clock': 3062555968L, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'mcu': got {'#receive_time': 196309.253886768, u'next_clock': 3063555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'psu': got {'#receive_time': 196309.365990472, u'next_clock': 2660968775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196308.603946731} mcu 'mcu': got {'#receive_time': 196309.543890694, u'next_clock': 3092555968L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'mcu': got {'#receive_time': 196309.553835471, u'next_clock': 3093555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196308.640502935} mcu 'psu': got {'#receive_time': 196309.665988731, u'next_clock': 2664568775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196309.58832086} mcu 'mcu': got {'#receive_time': 196309.843923934, u'next_clock': 3122555968L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196309.625189231} mcu 'mcu': got {'#receive_time': 196309.85385186, u'next_clock': 3123555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196309.625189231} mcu 'psu': got {'#receive_time': 196309.965984601, u'next_clock': 2668168775L, u'oid': 3, u'value': 16321, '#name': u'analog_in_state', '#sent_time': 196309.58832086} mcu 'mcu': got {'#receive_time': 196310.143999804, u'next_clock': 3152555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196309.625189231} mcu 'mcu': got {'#receive_time': 196310.153878027, u'next_clock': 3153555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196309.625189231} mcu 'psu': got {'#receive_time': 196310.265908564, u'next_clock': 2671768775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196309.58832086} mcu 'mcu': got {'#receive_time': 196310.44396486, u'next_clock': 3182555968L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196309.625189231} mcu 'mcu': got {'#receive_time': 196310.453914786, u'next_clock': 3183555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196309.625189231} mcu 'psu': got {'#receive_time': 196310.56638423, u'next_clock': 2675368775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196309.58832086} mcu 'mcu': got {'#receive_time': 196310.743952341, u'next_clock': 3212555968L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196310.609523712} mcu 'mcu': got {'#receive_time': 196310.753902174, u'next_clock': 3213555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196310.609523712} mcu 'psu': got {'#receive_time': 196310.865936026, u'next_clock': 2678968775L, u'oid': 3, u'value': 16283, '#name': u'analog_in_state', '#sent_time': 196310.57300186} mcu 'mcu': got {'#receive_time': 196311.04396173, u'next_clock': 3242555968L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196310.609523712} mcu 'mcu': got {'#receive_time': 196311.053943822, u'next_clock': 3243555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196310.609523712} mcu 'psu': got {'#receive_time': 196311.165953878, u'next_clock': 2682568775L, u'oid': 3, u'value': 16313, '#name': u'analog_in_state', '#sent_time': 196310.57300186} mcu 'mcu': got {'#receive_time': 196311.343981359, u'next_clock': 3272555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196310.609523712} mcu 'mcu': got {'#receive_time': 196311.353942211, u'next_clock': 3273555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196310.609523712} mcu 'psu': got {'#receive_time': 196311.465886044, u'next_clock': 2686168775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196310.57300186} mcu 'mcu': got {'#receive_time': 196311.643950322, u'next_clock': 3302555968L, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'mcu': got {'#receive_time': 196311.653946859, u'next_clock': 3303555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'psu': got {'#receive_time': 196311.765888563, u'next_clock': 2689768775L, u'oid': 3, u'value': 16318, '#name': u'analog_in_state', '#sent_time': 196311.55734723} mcu 'mcu': got {'#receive_time': 196311.944020377, u'next_clock': 3332555968L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'mcu': got {'#receive_time': 196311.953974452, u'next_clock': 3333555968L, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'psu': got {'#receive_time': 196312.065890229, u'next_clock': 2693368775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196311.55734723} mcu 'mcu': got {'#receive_time': 196312.244042433, u'next_clock': 3362555968L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'mcu': got {'#receive_time': 196312.253949674, u'next_clock': 3363555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'psu': got {'#receive_time': 196312.365892414, u'next_clock': 2696968775L, u'oid': 3, u'value': 16365, '#name': u'analog_in_state', '#sent_time': 196311.55734723} mcu 'mcu': got {'#receive_time': 196312.543996896, u'next_clock': 3392555968L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'mcu': got {'#receive_time': 196312.553994544, u'next_clock': 3393555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196311.594062489} mcu 'psu': got {'#receive_time': 196312.665874655, u'next_clock': 2700568775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196312.542390655} mcu 'mcu': got {'#receive_time': 196312.844047044, u'next_clock': 3422555968L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196312.579469136} mcu 'mcu': got {'#receive_time': 196312.854015877, u'next_clock': 3423555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196312.579469136} mcu 'psu': got {'#receive_time': 196312.96588434, u'next_clock': 2704168775L, u'oid': 3, u'value': 16350, '#name': u'analog_in_state', '#sent_time': 196312.542390655} mcu 'mcu': got {'#receive_time': 196313.144127988, u'next_clock': 3452555968L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196312.579469136} mcu 'mcu': got {'#receive_time': 196313.153988692, u'next_clock': 3453555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196312.579469136} mcu 'psu': got {'#receive_time': 196313.265806932, u'next_clock': 2707768775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196312.542390655} mcu 'mcu': got {'#receive_time': 196313.444102506, u'next_clock': 3482555968L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196312.579469136} mcu 'mcu': got {'#receive_time': 196313.454051914, u'next_clock': 3483555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196312.579469136} mcu 'psu': got {'#receive_time': 196313.565804247, u'next_clock': 2711368775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196313.526895858} mcu 'mcu': got {'#receive_time': 196313.744028765, u'next_clock': 3512555968L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196313.563627858} mcu 'mcu': got {'#receive_time': 196313.754039969, u'next_clock': 3513555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196313.563627858} mcu 'psu': got {'#receive_time': 196313.865886339, u'next_clock': 2714968775L, u'oid': 3, u'value': 16316, '#name': u'analog_in_state', '#sent_time': 196313.526895858} mcu 'mcu': got {'#receive_time': 196314.044020747, u'next_clock': 3542555968L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196313.563627858} mcu 'mcu': got {'#receive_time': 196314.053971358, u'next_clock': 3543555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196313.563627858} mcu 'psu': got {'#receive_time': 196314.165802561, u'next_clock': 2718568775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196313.526895858} mcu 'mcu': got {'#receive_time': 196314.344004895, u'next_clock': 3572555968L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196313.563627858} mcu 'mcu': got {'#receive_time': 196314.354003672, u'next_clock': 3573555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196313.563627858} mcu 'psu': got {'#receive_time': 196314.465785135, u'next_clock': 2722168775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196313.526895858} mcu 'mcu': got {'#receive_time': 196314.644014765, u'next_clock': 3602555968L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196314.547749413} mcu 'mcu': got {'#receive_time': 196314.654002172, u'next_clock': 3603555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196314.547749413} mcu 'psu': got {'#receive_time': 196314.765710876, u'next_clock': 2725768775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196314.511505172} mcu 'mcu': got {'#receive_time': 196314.944022357, u'next_clock': 3632555968L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196314.547749413} mcu 'mcu': got {'#receive_time': 196314.954012209, u'next_clock': 3633555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196314.547749413} mcu 'psu': got {'#receive_time': 196315.06576445, u'next_clock': 2729368775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196314.511505172} mcu 'mcu': got {'#receive_time': 196315.244014838, u'next_clock': 3662555968L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196314.547749413} mcu 'mcu': got {'#receive_time': 196315.253988931, u'next_clock': 3663555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196314.547749413} mcu 'psu': got {'#receive_time': 196315.365699616, u'next_clock': 2732968775L, u'oid': 3, u'value': 16328, '#name': u'analog_in_state', '#sent_time': 196314.511505172} mcu 'mcu': got {'#receive_time': 196315.544004042, u'next_clock': 3692555968L, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'mcu': got {'#receive_time': 196315.554013579, u'next_clock': 3693555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'psu': got {'#receive_time': 196315.665675838, u'next_clock': 2736568775L, u'oid': 3, u'value': 16318, '#name': u'analog_in_state', '#sent_time': 196315.495914949} mcu 'mcu': got {'#receive_time': 196315.844059894, u'next_clock': 3722555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'mcu': got {'#receive_time': 196315.854009616, u'next_clock': 3723555968L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'psu': got {'#receive_time': 196315.965689875, u'next_clock': 2740168775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196315.495914949} mcu 'mcu': got {'#receive_time': 196316.144182505, u'next_clock': 3752555968L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'mcu': got {'#receive_time': 196316.154094542, u'next_clock': 3753555968L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'psu': got {'#receive_time': 196316.265654282, u'next_clock': 2743768775L, u'oid': 3, u'value': 16310, '#name': u'analog_in_state', '#sent_time': 196315.495914949} mcu 'mcu': got {'#receive_time': 196316.444092227, u'next_clock': 3782555968L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'mcu': got {'#receive_time': 196316.454050023, u'next_clock': 3783555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196315.532295542} mcu 'psu': got {'#receive_time': 196316.565623338, u'next_clock': 2747368775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196316.480456838} mcu 'mcu': got {'#receive_time': 196316.744106523, u'next_clock': 3812555968L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196316.516822264} mcu 'mcu': got {'#receive_time': 196316.754070486, u'next_clock': 3813555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196316.516822264} mcu 'psu': got {'#receive_time': 196316.865661967, u'next_clock': 2750968775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196316.480456838} mcu 'mcu': got {'#receive_time': 196317.044203337, u'next_clock': 3842555968L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196316.516822264} mcu 'mcu': got {'#receive_time': 196317.054124023, u'next_clock': 3843555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196316.516822264} mcu 'psu': got {'#receive_time': 196317.165642745, u'next_clock': 2754568775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196316.480456838} mcu 'mcu': got {'#receive_time': 196317.344127356, u'next_clock': 3872555968L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196316.516822264} mcu 'mcu': got {'#receive_time': 196317.354089837, u'next_clock': 3873555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196316.516822264} mcu 'psu': got {'#receive_time': 196317.465597059, u'next_clock': 2758168775L, u'oid': 3, u'value': 16383, '#name': u'analog_in_state', '#sent_time': 196317.464761874} mcu 'mcu': got {'#receive_time': 196317.644121356, u'next_clock': 3902555968L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196317.501210726} mcu 'mcu': got {'#receive_time': 196317.654077207, u'next_clock': 3903555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196317.501210726} mcu 'psu': got {'#receive_time': 196317.765627781, u'next_clock': 2761768775L, u'oid': 3, u'value': 16374, '#name': u'analog_in_state', '#sent_time': 196317.464761874} mcu 'mcu': got {'#receive_time': 196317.944139707, u'next_clock': 3932555968L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196317.501210726} mcu 'mcu': got {'#receive_time': 196317.954114318, u'next_clock': 3933555968L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196317.501210726} mcu 'psu': got {'#receive_time': 196318.0657013, u'next_clock': 2765368775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196317.464761874} mcu 'mcu': got {'#receive_time': 196318.244139226, u'next_clock': 3962555968L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196317.501210726} mcu 'mcu': got {'#receive_time': 196318.254100207, u'next_clock': 3963555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196317.501210726} mcu 'psu': got {'#receive_time': 196318.365593763, u'next_clock': 2768968775L, u'oid': 3, u'value': 16364, '#name': u'analog_in_state', '#sent_time': 196317.464761874} mcu 'mcu': got {'#receive_time': 196318.544108966, u'next_clock': 3992555968L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'mcu': got {'#receive_time': 196318.55410554, u'next_clock': 3993555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'psu': got {'#receive_time': 196318.665594373, u'next_clock': 2772568775L, u'oid': 3, u'value': 16367, '#name': u'analog_in_state', '#sent_time': 196318.448911781} mcu 'mcu': got {'#receive_time': 196318.844170225, u'next_clock': 4022555968L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'mcu': got {'#receive_time': 196318.855016836, u'next_clock': 4023555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'psu': got {'#receive_time': 196318.965719595, u'next_clock': 2776168775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196318.448911781} mcu 'mcu': got {'#receive_time': 196319.144248781, u'next_clock': 4052555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'mcu': got {'#receive_time': 196319.154202632, u'next_clock': 4053555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'psu': got {'#receive_time': 196319.265725799, u'next_clock': 2779768775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196318.448911781} mcu 'mcu': got {'#receive_time': 196319.444221429, u'next_clock': 4082555968L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'mcu': got {'#receive_time': 196319.454230169, u'next_clock': 4083555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196318.486464837} mcu 'psu': got {'#receive_time': 196319.565655947, u'next_clock': 2783368775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196319.433355799} mcu 'mcu': got {'#receive_time': 196319.744258614, u'next_clock': 4112555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196319.470901132} mcu 'mcu': got {'#receive_time': 196319.75421041, u'next_clock': 4113555968L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196319.470901132} mcu 'psu': got {'#receive_time': 196319.865675947, u'next_clock': 2786968775L, u'oid': 3, u'value': 16313, '#name': u'analog_in_state', '#sent_time': 196319.433355799} mcu 'mcu': got {'#receive_time': 196320.044366743, u'next_clock': 4142555968L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196319.470901132} mcu 'mcu': got {'#receive_time': 196320.054240465, u'next_clock': 4143555968L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196319.470901132} mcu 'psu': got {'#receive_time': 196320.165710113, u'next_clock': 2790568775L, u'oid': 3, u'value': 16332, '#name': u'analog_in_state', '#sent_time': 196319.433355799} mcu 'mcu': got {'#receive_time': 196320.34432865, u'next_clock': 4172555968L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196319.470901132} mcu 'mcu': got {'#receive_time': 196320.354271669, u'next_clock': 4173555968L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196319.470901132} mcu 'psu': got {'#receive_time': 196320.465577891, u'next_clock': 2794168775L, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196320.417510502} mcu 'mcu': got {'#receive_time': 196320.644325335, u'next_clock': 4202555968L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196320.455063743} mcu 'mcu': got {'#receive_time': 196320.654262354, u'next_clock': 4203555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196320.455063743} mcu 'psu': got {'#receive_time': 196320.765655409, u'next_clock': 2797768775L, u'oid': 3, u'value': 16304, '#name': u'analog_in_state', '#sent_time': 196320.417510502} mcu 'mcu': got {'#receive_time': 196320.944304409, u'next_clock': 4232555968L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196320.455063743} mcu 'mcu': got {'#receive_time': 196320.954272057, u'next_clock': 4233555968L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196320.455063743} mcu 'psu': got {'#receive_time': 196321.065712187, u'next_clock': 2801368775L, u'oid': 3, u'value': 16364, '#name': u'analog_in_state', '#sent_time': 196320.417510502} mcu 'mcu': got {'#receive_time': 196321.244319446, u'next_clock': 4262555968L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196320.455063743} mcu 'mcu': got {'#receive_time': 196321.254277909, u'next_clock': 4263555968L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196320.455063743} mcu 'psu': got {'#receive_time': 196321.365580742, u'next_clock': 2804968775L, u'oid': 3, u'value': 16372, '#name': u'analog_in_state', '#sent_time': 196320.417510502} mcu 'mcu': got {'#receive_time': 196321.544323946, u'next_clock': 4292555968L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196321.439744094} mcu 'mcu': got {'#receive_time': 196321.554294075, u'next_clock': 4293555968L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196321.439744094} mcu 'psu': got {'#receive_time': 196321.66558402, u'next_clock': 2808568775L, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196321.402159464} mcu 'mcu': got {'#receive_time': 196321.844423927, u'next_clock': 27588672, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196321.439744094} mcu 'mcu': got {'#receive_time': 196321.854333872, u'next_clock': 28588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196321.439744094} mcu 'psu': got {'#receive_time': 196321.965678501, u'next_clock': 2812168775L, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196321.402159464} mcu 'mcu': got {'#receive_time': 196322.144484927, u'next_clock': 57588672, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196321.439744094} mcu 'mcu': got {'#receive_time': 196322.154354557, u'next_clock': 58588672, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196321.439744094} mcu 'psu': got {'#receive_time': 196322.265560908, u'next_clock': 2815768775L, u'oid': 3, u'value': 16384, '#name': u'analog_in_state', '#sent_time': 196321.402159464} mcu 'mcu': got {'#receive_time': 196322.444346205, u'next_clock': 87588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'mcu': got {'#receive_time': 196322.454354371, u'next_clock': 88588672, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'psu': got {'#receive_time': 196322.565590408, u'next_clock': 2819368775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196322.386748501} mcu 'mcu': got {'#receive_time': 196322.744368982, u'next_clock': 117588672, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'mcu': got {'#receive_time': 196322.754329927, u'next_clock': 118588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'psu': got {'#receive_time': 196322.865547278, u'next_clock': 2822968775L, u'oid': 3, u'value': 16325, '#name': u'analog_in_state', '#sent_time': 196322.386748501} mcu 'mcu': got {'#receive_time': 196323.04451413, u'next_clock': 147588672, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'mcu': got {'#receive_time': 196323.05438426, u'next_clock': 148588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'psu': got {'#receive_time': 196323.165612778, u'next_clock': 2826568775L, u'oid': 3, u'value': 16338, '#name': u'analog_in_state', '#sent_time': 196322.386748501} mcu 'mcu': got {'#receive_time': 196323.344440037, u'next_clock': 177588672, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'mcu': got {'#receive_time': 196323.354377482, u'next_clock': 178588672, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196322.424348149} mcu 'psu': got {'#receive_time': 196323.465553519, u'next_clock': 2830168775L, u'oid': 3, u'value': 16339, '#name': u'analog_in_state', '#sent_time': 196323.371836945} mcu 'mcu': got {'#receive_time': 196323.644486926, u'next_clock': 207588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196323.40920963} mcu 'mcu': got {'#receive_time': 196323.654468963, u'next_clock': 208588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196323.40920963} mcu 'psu': got {'#receive_time': 196323.765569426, u'next_clock': 2833768775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196323.371836945} mcu 'mcu': got {'#receive_time': 196323.944488555, u'next_clock': 237588672, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196323.40920963} mcu 'mcu': got {'#receive_time': 196323.954349722, u'next_clock': 238588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196323.40920963} mcu 'psu': got {'#receive_time': 196324.065465778, u'next_clock': 2837368775L, u'oid': 3, u'value': 16327, '#name': u'analog_in_state', '#sent_time': 196323.371836945} mcu 'mcu': got {'#receive_time': 196324.244425685, u'next_clock': 267588672, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196323.40920963} mcu 'mcu': got {'#receive_time': 196324.254389574, u'next_clock': 268588672, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196323.40920963} mcu 'psu': got {'#receive_time': 196324.365448852, u'next_clock': 2840968775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196324.356034277} mcu 'mcu': got {'#receive_time': 196324.544445481, u'next_clock': 297588672, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196324.394045592} mcu 'mcu': got {'#receive_time': 196324.554404129, u'next_clock': 298588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196324.394045592} mcu 'psu': got {'#receive_time': 196324.665508129, u'next_clock': 2844568775L, u'oid': 3, u'value': 16339, '#name': u'analog_in_state', '#sent_time': 196324.356034277} mcu 'mcu': got {'#receive_time': 196324.844472962, u'next_clock': 327588672, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196324.394045592} mcu 'mcu': got {'#receive_time': 196324.854422129, u'next_clock': 328588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196324.394045592} mcu 'psu': got {'#receive_time': 196324.965574259, u'next_clock': 2848168775L, u'oid': 3, u'value': 16350, '#name': u'analog_in_state', '#sent_time': 196324.356034277} mcu 'mcu': got {'#receive_time': 196325.144503796, u'next_clock': 357588672, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196324.394045592} mcu 'mcu': got {'#receive_time': 196325.154514851, u'next_clock': 358588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196324.394045592} mcu 'psu': got {'#receive_time': 196325.265454425, u'next_clock': 2851768775L, u'oid': 3, u'value': 16322, '#name': u'analog_in_state', '#sent_time': 196324.356034277} mcu 'mcu': got {'#receive_time': 196325.444510721, u'next_clock': 387588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'mcu': got {'#receive_time': 196325.454467258, u'next_clock': 388588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'psu': got {'#receive_time': 196325.565476943, u'next_clock': 2855368775L, u'oid': 3, u'value': 16335, '#name': u'analog_in_state', '#sent_time': 196325.341132203} mcu 'mcu': got {'#receive_time': 196325.744542314, u'next_clock': 417588672, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'mcu': got {'#receive_time': 196325.754456073, u'next_clock': 418588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'psu': got {'#receive_time': 196325.865478332, u'next_clock': 2858968775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196325.341132203} mcu 'mcu': got {'#receive_time': 196326.044532295, u'next_clock': 447588672, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'mcu': got {'#receive_time': 196326.054523017, u'next_clock': 448588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'psu': got {'#receive_time': 196326.16549111, u'next_clock': 2862568775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196325.341132203} mcu 'mcu': got {'#receive_time': 196326.344540665, u'next_clock': 477588672, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'mcu': got {'#receive_time': 196326.354531461, u'next_clock': 478588672, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196325.378642721} mcu 'psu': got {'#receive_time': 196326.465473739, u'next_clock': 2866168775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196326.325814499} mcu 'mcu': got {'#receive_time': 196326.644463776, u'next_clock': 507588672, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196326.363482036} mcu 'mcu': got {'#receive_time': 196326.654436998, u'next_clock': 508588672, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196326.363482036} mcu 'psu': got {'#receive_time': 196326.765355498, u'next_clock': 2869768775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196326.325814499} mcu 'mcu': got {'#receive_time': 196326.944525406, u'next_clock': 537588672, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196326.363482036} mcu 'mcu': got {'#receive_time': 196326.954441868, u'next_clock': 538588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196326.363482036} mcu 'psu': got {'#receive_time': 196327.065333387, u'next_clock': 2873368775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196326.325814499} mcu 'mcu': got {'#receive_time': 196327.244502831, u'next_clock': 567588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196326.363482036} mcu 'mcu': got {'#receive_time': 196327.254454665, u'next_clock': 568588672, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196326.363482036} mcu 'psu': got {'#receive_time': 196327.365319239, u'next_clock': 2876968775L, u'oid': 3, u'value': 16350, '#name': u'analog_in_state', '#sent_time': 196327.310403794} mcu 'mcu': got {'#receive_time': 196327.544496553, u'next_clock': 597588672, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196327.347728498} mcu 'mcu': got {'#receive_time': 196327.554457572, u'next_clock': 598588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196327.347728498} mcu 'psu': got {'#receive_time': 196327.665330572, u'next_clock': 2880568775L, u'oid': 3, u'value': 16340, '#name': u'analog_in_state', '#sent_time': 196327.310403794} mcu 'mcu': got {'#receive_time': 196327.84450122, u'next_clock': 627588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196327.347728498} mcu 'mcu': got {'#receive_time': 196327.854486794, u'next_clock': 628588672, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196327.347728498} mcu 'psu': got {'#receive_time': 196327.965324479, u'next_clock': 2884168775L, u'oid': 3, u'value': 16343, '#name': u'analog_in_state', '#sent_time': 196327.310403794} mcu 'mcu': got {'#receive_time': 196328.144521738, u'next_clock': 657588672, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196327.347728498} mcu 'mcu': got {'#receive_time': 196328.154524331, u'next_clock': 658588672, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196327.347728498} mcu 'psu': got {'#receive_time': 196328.26530672, u'next_clock': 2887768775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196327.310403794} mcu 'mcu': got {'#receive_time': 196328.444530219, u'next_clock': 687588672, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196328.331920053} mcu 'mcu': got {'#receive_time': 196328.454470738, u'next_clock': 688588672, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196328.331920053} mcu 'psu': got {'#receive_time': 196328.565317905, u'next_clock': 2891368775L, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196328.294670553} mcu 'mcu': got {'#receive_time': 196328.744537812, u'next_clock': 717588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196328.331920053} mcu 'mcu': got {'#receive_time': 196328.754550238, u'next_clock': 718588672, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196328.331920053} mcu 'psu': got {'#receive_time': 196328.865387571, u'next_clock': 2894968775L, u'oid': 3, u'value': 16350, '#name': u'analog_in_state', '#sent_time': 196328.294670553} mcu 'mcu': got {'#receive_time': 196329.044542645, u'next_clock': 747588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196328.331920053} mcu 'mcu': got {'#receive_time': 196329.054509127, u'next_clock': 748588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196328.331920053} mcu 'psu': got {'#receive_time': 196329.165298015, u'next_clock': 2898568775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196328.294670553} mcu 'mcu': got {'#receive_time': 196329.344529849, u'next_clock': 777588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'mcu': got {'#receive_time': 196329.354508663, u'next_clock': 778588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'psu': got {'#receive_time': 196329.465290497, u'next_clock': 2902168775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196329.279456497} mcu 'mcu': got {'#receive_time': 196329.644560515, u'next_clock': 807588672, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'mcu': got {'#receive_time': 196329.654528256, u'next_clock': 808588672, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'psu': got {'#receive_time': 196329.765265108, u'next_clock': 2905768775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196329.279456497} mcu 'mcu': got {'#receive_time': 196329.944605793, u'next_clock': 837588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'mcu': got {'#receive_time': 196329.954546348, u'next_clock': 838588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'psu': got {'#receive_time': 196330.065306404, u'next_clock': 2909368775L, u'oid': 3, u'value': 16354, '#name': u'analog_in_state', '#sent_time': 196329.279456497} mcu 'mcu': got {'#receive_time': 196330.244606367, u'next_clock': 867588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'mcu': got {'#receive_time': 196330.254599663, u'next_clock': 868588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196329.3167222} mcu 'psu': got {'#receive_time': 196330.365244329, u'next_clock': 2912968775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196330.264484718} mcu 'mcu': got {'#receive_time': 196330.544591366, u'next_clock': 897588672, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196330.300757867} mcu 'mcu': got {'#receive_time': 196330.554603033, u'next_clock': 898588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196330.300757867} mcu 'psu': got {'#receive_time': 196330.665247607, u'next_clock': 2916568775L, u'oid': 3, u'value': 16317, '#name': u'analog_in_state', '#sent_time': 196330.264484718} mcu 'mcu': got {'#receive_time': 196330.844703088, u'next_clock': 927588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196330.300757867} mcu 'mcu': got {'#receive_time': 196330.854568218, u'next_clock': 928588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196330.300757867} mcu 'psu': got {'#receive_time': 196330.965234829, u'next_clock': 2920168775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196330.264484718} mcu 'mcu': got {'#receive_time': 196331.144598533, u'next_clock': 957588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196330.300757867} mcu 'mcu': got {'#receive_time': 196331.154636162, u'next_clock': 958588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196330.300757867} mcu 'psu': got {'#receive_time': 196331.265172533, u'next_clock': 2923768775L, u'oid': 3, u'value': 16339, '#name': u'analog_in_state', '#sent_time': 196331.248696292} mcu 'mcu': got {'#receive_time': 196331.444643866, u'next_clock': 987588672, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196331.284954884} mcu 'mcu': got {'#receive_time': 196331.454591644, u'next_clock': 988588672, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196331.284954884} mcu 'psu': got {'#receive_time': 196331.565341255, u'next_clock': 2927368775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196331.248696292} mcu 'mcu': got {'#receive_time': 196331.74472231, u'next_clock': 1017588672, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196331.284954884} mcu 'mcu': got {'#receive_time': 196331.754728643, u'next_clock': 1018588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196331.284954884} mcu 'psu': got {'#receive_time': 196331.865287051, u'next_clock': 2930968775L, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196331.248696292} mcu 'mcu': got {'#receive_time': 196332.044748125, u'next_clock': 1047588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196331.284954884} mcu 'mcu': got {'#receive_time': 196332.054703977, u'next_clock': 1048588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196331.284954884} mcu 'psu': got {'#receive_time': 196332.165308773, u'next_clock': 2934568775L, u'oid': 3, u'value': 16357, '#name': u'analog_in_state', '#sent_time': 196331.248696292} mcu 'mcu': got {'#receive_time': 196332.344734328, u'next_clock': 1077588672, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'mcu': got {'#receive_time': 196332.354702199, u'next_clock': 1078588672, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'psu': got {'#receive_time': 196332.465259532, u'next_clock': 2938168775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196332.233030013} mcu 'mcu': got {'#receive_time': 196332.644761384, u'next_clock': 1107588672, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'mcu': got {'#receive_time': 196332.654714013, u'next_clock': 1108588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'psu': got {'#receive_time': 196332.765260476, u'next_clock': 2941768775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196332.233030013} mcu 'mcu': got {'#receive_time': 196332.94477468, u'next_clock': 1137588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'mcu': got {'#receive_time': 196332.954724846, u'next_clock': 1138588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'psu': got {'#receive_time': 196333.065259069, u'next_clock': 2945368775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196332.233030013} mcu 'mcu': got {'#receive_time': 196333.244709828, u'next_clock': 1167588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'mcu': got {'#receive_time': 196333.254738809, u'next_clock': 1168588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196332.269492569} mcu 'psu': got {'#receive_time': 196333.365227087, u'next_clock': 2948968775L, u'oid': 3, u'value': 16336, '#name': u'analog_in_state', '#sent_time': 196333.218009661} mcu 'mcu': got {'#receive_time': 196333.544838013, u'next_clock': 1197588672, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196333.254483291} mcu 'mcu': got {'#receive_time': 196333.55477792, u'next_clock': 1198588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196333.254483291} mcu 'psu': got {'#receive_time': 196333.665279327, u'next_clock': 2952568775L, u'oid': 3, u'value': 16335, '#name': u'analog_in_state', '#sent_time': 196333.218009661} mcu 'mcu': got {'#receive_time': 196333.844930809, u'next_clock': 1227588672, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196333.254483291} mcu 'mcu': got {'#receive_time': 196333.854877161, u'next_clock': 1228588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196333.254483291} mcu 'psu': got {'#receive_time': 196333.965238198, u'next_clock': 2956168775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196333.218009661} mcu 'mcu': got {'#receive_time': 196334.144736531, u'next_clock': 1257588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196333.254483291} mcu 'mcu': got {'#receive_time': 196334.154765216, u'next_clock': 1258588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196333.254483291} mcu 'psu': got {'#receive_time': 196334.265089772, u'next_clock': 2959768775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196334.202902457} mcu 'mcu': got {'#receive_time': 196334.444783383, u'next_clock': 1287588672, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196334.239198809} mcu 'mcu': got {'#receive_time': 196334.454711679, u'next_clock': 1288588672, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196334.239198809} mcu 'psu': got {'#receive_time': 196334.565124197, u'next_clock': 2963368775L, u'oid': 3, u'value': 16278, '#name': u'analog_in_state', '#sent_time': 196334.202902457} mcu 'mcu': got {'#receive_time': 196334.74483779, u'next_clock': 1317588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196334.239198809} mcu 'mcu': got {'#receive_time': 196334.754715827, u'next_clock': 1318588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196334.239198809} mcu 'psu': got {'#receive_time': 196334.86511779, u'next_clock': 2966968775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196334.202902457} mcu 'mcu': got {'#receive_time': 196335.044751956, u'next_clock': 1347588672, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196334.239198809} mcu 'mcu': got {'#receive_time': 196335.054733975, u'next_clock': 1348588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196334.239198809} mcu 'psu': got {'#receive_time': 196335.165103752, u'next_clock': 2970568775L, u'oid': 3, u'value': 16325, '#name': u'analog_in_state', '#sent_time': 196334.202902457} mcu 'mcu': got {'#receive_time': 196335.344794178, u'next_clock': 1377588672, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196335.224072512} mcu 'mcu': got {'#receive_time': 196335.354768901, u'next_clock': 1378588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196335.224072512} mcu 'psu': got {'#receive_time': 196335.465107771, u'next_clock': 2974168775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196335.187804197} mcu 'mcu': got {'#receive_time': 196335.64483416, u'next_clock': 1407588672, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196335.224072512} mcu 'mcu': got {'#receive_time': 196335.654738623, u'next_clock': 1408588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196335.224072512} mcu 'psu': got {'#receive_time': 196335.765123604, u'next_clock': 2977768775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196335.187804197} mcu 'mcu': got {'#receive_time': 196335.9447814, u'next_clock': 1437588672, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196335.224072512} mcu 'mcu': got {'#receive_time': 196335.954755808, u'next_clock': 1438588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196335.224072512} mcu 'psu': got {'#receive_time': 196336.065059196, u'next_clock': 2981368775L, u'oid': 3, u'value': 16340, '#name': u'analog_in_state', '#sent_time': 196335.187804197} mcu 'mcu': got {'#receive_time': 196336.244787159, u'next_clock': 1467588672, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'mcu': got {'#receive_time': 196336.254757196, u'next_clock': 1468588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'psu': got {'#receive_time': 196336.365085048, u'next_clock': 2984968775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196336.172021789} mcu 'mcu': got {'#receive_time': 196336.544813955, u'next_clock': 1497588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'mcu': got {'#receive_time': 196336.554790289, u'next_clock': 1498588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'psu': got {'#receive_time': 196336.665087881, u'next_clock': 2988568775L, u'oid': 3, u'value': 16355, '#name': u'analog_in_state', '#sent_time': 196336.172021789} mcu 'mcu': got {'#receive_time': 196336.844816307, u'next_clock': 1527588672, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'mcu': got {'#receive_time': 196336.854789251, u'next_clock': 1528588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'psu': got {'#receive_time': 196336.965037696, u'next_clock': 2992168775L, u'oid': 3, u'value': 16312, '#name': u'analog_in_state', '#sent_time': 196336.172021789} mcu 'mcu': got {'#receive_time': 196337.144824881, u'next_clock': 1557588672, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'mcu': got {'#receive_time': 196337.154808159, u'next_clock': 1558588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196336.208608548} mcu 'psu': got {'#receive_time': 196337.265067918, u'next_clock': 2995768775L, u'oid': 3, u'value': 16321, '#name': u'analog_in_state', '#sent_time': 196337.157241936} mcu 'mcu': got {'#receive_time': 196337.44486551, u'next_clock': 1587588672, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196337.193340844} mcu 'mcu': got {'#receive_time': 196337.454824455, u'next_clock': 1588588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196337.193340844} mcu 'psu': got {'#receive_time': 196337.565036399, u'next_clock': 2999368775L, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196337.157241936} mcu 'mcu': got {'#receive_time': 196337.744920177, u'next_clock': 1617588672, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196337.193340844} mcu 'mcu': got {'#receive_time': 196337.754835695, u'next_clock': 1618588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196337.193340844} mcu 'psu': got {'#receive_time': 196337.865038251, u'next_clock': 3002968775L, u'oid': 3, u'value': 16335, '#name': u'analog_in_state', '#sent_time': 196337.157241936} mcu 'mcu': got {'#receive_time': 196338.044866066, u'next_clock': 1647588672, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196337.193340844} mcu 'mcu': got {'#receive_time': 196338.05483888, u'next_clock': 1648588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196337.193340844} mcu 'psu': got {'#receive_time': 196338.165033473, u'next_clock': 3006568775L, u'oid': 3, u'value': 16356, '#name': u'analog_in_state', '#sent_time': 196338.141661806} mcu 'mcu': got {'#receive_time': 196338.344869695, u'next_clock': 1677588672, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196338.178309788} mcu 'mcu': got {'#receive_time': 196338.35484001, u'next_clock': 1678588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196338.178309788} mcu 'psu': got {'#receive_time': 196338.465013399, u'next_clock': 3010168775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196338.141661806} mcu 'mcu': got {'#receive_time': 196338.64487838, u'next_clock': 1707588672, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196338.178309788} mcu 'mcu': got {'#receive_time': 196338.654850676, u'next_clock': 1708588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196338.178309788} mcu 'psu': got {'#receive_time': 196338.76505975, u'next_clock': 3013768775L, u'oid': 3, u'value': 16278, '#name': u'analog_in_state', '#sent_time': 196338.141661806} mcu 'mcu': got {'#receive_time': 196338.94498838, u'next_clock': 1737588672, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196338.178309788} mcu 'mcu': got {'#receive_time': 196338.955018361, u'next_clock': 1738588672, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196338.178309788} mcu 'psu': got {'#receive_time': 196339.065054787, u'next_clock': 3017368775L, u'oid': 3, u'value': 16317, '#name': u'analog_in_state', '#sent_time': 196338.141661806} mcu 'mcu': got {'#receive_time': 196339.244995657, u'next_clock': 1767588672, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'mcu': got {'#receive_time': 196339.255042176, u'next_clock': 1768588672, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'psu': got {'#receive_time': 196339.365030824, u'next_clock': 3020968775L, u'oid': 3, u'value': 16371, '#name': u'analog_in_state', '#sent_time': 196339.126004713} mcu 'mcu': got {'#receive_time': 196339.545019842, u'next_clock': 1797588672, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'mcu': got {'#receive_time': 196339.555002028, u'next_clock': 1798588672, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'psu': got {'#receive_time': 196339.665126731, u'next_clock': 3024568775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196339.126004713} mcu 'mcu': got {'#receive_time': 196339.845024139, u'next_clock': 1827588672, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'mcu': got {'#receive_time': 196339.855014416, u'next_clock': 1828588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'psu': got {'#receive_time': 196339.965079101, u'next_clock': 3028168775L, u'oid': 3, u'value': 16272, '#name': u'analog_in_state', '#sent_time': 196339.126004713} mcu 'mcu': got {'#receive_time': 196340.14501099, u'next_clock': 1857588672, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196339.162719972} mcu 'mcu': got {'#receive_time': 196340.15500199, u'next_clock': 1858588672, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'psu': got {'#receive_time': 196340.26503762, u'next_clock': 3031768775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196340.110287175} mcu 'mcu': got {'#receive_time': 196340.44504599, u'next_clock': 1887588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'mcu': got {'#receive_time': 196340.45505562, u'next_clock': 1888588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'psu': got {'#receive_time': 196340.565728823, u'next_clock': 3035368775L, u'oid': 3, u'value': 16298, '#name': u'analog_in_state', '#sent_time': 196340.110287175} mcu 'mcu': got {'#receive_time': 196340.745150675, u'next_clock': 1917588672, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'mcu': got {'#receive_time': 196340.755066601, u'next_clock': 1918588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'psu': got {'#receive_time': 196340.865084397, u'next_clock': 3038968775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196340.110287175} mcu 'mcu': got {'#receive_time': 196341.045066156, u'next_clock': 1947588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'mcu': got {'#receive_time': 196341.055092471, u'next_clock': 1948588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196340.14703949} mcu 'psu': got {'#receive_time': 196341.165100434, u'next_clock': 3042568775L, u'oid': 3, u'value': 16339, '#name': u'analog_in_state', '#sent_time': 196341.095268842} mcu 'mcu': got {'#receive_time': 196341.345113804, u'next_clock': 1977588672, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196341.132263508} mcu 'mcu': got {'#receive_time': 196341.355093082, u'next_clock': 1978588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196341.132263508} mcu 'psu': got {'#receive_time': 196341.465039138, u'next_clock': 3046168775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196341.095268842} mcu 'mcu': got {'#receive_time': 196341.645228545, u'next_clock': 2007588672, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196341.132263508} mcu 'mcu': got {'#receive_time': 196341.655085656, u'next_clock': 2008588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196341.132263508} mcu 'psu': got {'#receive_time': 196341.764991174, u'next_clock': 3049768775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196341.095268842} mcu 'mcu': got {'#receive_time': 196341.945122637, u'next_clock': 2037588672, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196341.132263508} mcu 'mcu': got {'#receive_time': 196341.955075248, u'next_clock': 2038588672, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196341.132263508} mcu 'psu': got {'#receive_time': 196342.065003989, u'next_clock': 3053368775L, u'oid': 3, u'value': 16330, '#name': u'analog_in_state', '#sent_time': 196341.095268842} mcu 'mcu': got {'#receive_time': 196342.245115359, u'next_clock': 2067588672, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196342.117106934} mcu 'mcu': got {'#receive_time': 196342.255073082, u'next_clock': 2068588672, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196342.117106934} mcu 'psu': got {'#receive_time': 196342.365052489, u'next_clock': 3056968775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196342.079597397} mcu 'mcu': got {'#receive_time': 196342.545116267, u'next_clock': 2097588672, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196342.117106934} mcu 'mcu': got {'#receive_time': 196342.555093767, u'next_clock': 2098588672, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196342.117106934} mcu 'psu': got {'#receive_time': 196342.665116155, u'next_clock': 3060568775L, u'oid': 3, u'value': 16363, '#name': u'analog_in_state', '#sent_time': 196342.079597397} mcu 'mcu': got {'#receive_time': 196342.84516747, u'next_clock': 2127588672, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196342.117106934} mcu 'mcu': got {'#receive_time': 196342.855117063, u'next_clock': 2128588672, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196342.117106934} mcu 'psu': got {'#receive_time': 196342.965022118, u'next_clock': 3064168775L, u'oid': 3, u'value': 16367, '#name': u'analog_in_state', '#sent_time': 196342.079597397} mcu 'mcu': got {'#receive_time': 196343.145163803, u'next_clock': 2157588672L, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'mcu': got {'#receive_time': 196343.155116692, u'next_clock': 2158588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'psu': got {'#receive_time': 196343.26497547, u'next_clock': 3067768775L, u'oid': 3, u'value': 16326, '#name': u'analog_in_state', '#sent_time': 196343.063990692} mcu 'mcu': got {'#receive_time': 196343.445181988, u'next_clock': 2187588672L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'mcu': got {'#receive_time': 196343.455148377, u'next_clock': 2188588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'psu': got {'#receive_time': 196343.564948803, u'next_clock': 3071368775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196343.063990692} mcu 'mcu': got {'#receive_time': 196343.745152507, u'next_clock': 2217588672L, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'mcu': got {'#receive_time': 196343.755167858, u'next_clock': 2218588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'psu': got {'#receive_time': 196343.865105581, u'next_clock': 3074968775L, u'oid': 3, u'value': 16357, '#name': u'analog_in_state', '#sent_time': 196343.063990692} mcu 'mcu': got {'#receive_time': 196344.045106877, u'next_clock': 2247588672L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'mcu': got {'#receive_time': 196344.055052747, u'next_clock': 2248588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196343.101473674} mcu 'psu': got {'#receive_time': 196344.164823488, u'next_clock': 3078568775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196344.048237803} mcu 'mcu': got {'#receive_time': 196344.345089636, u'next_clock': 2277588672L, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196344.085499081} mcu 'mcu': got {'#receive_time': 196344.35506958, u'next_clock': 2278588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196344.085499081} mcu 'psu': got {'#receive_time': 196344.464828877, u'next_clock': 3082168775L, u'oid': 3, u'value': 16343, '#name': u'analog_in_state', '#sent_time': 196344.048237803} mcu 'mcu': got {'#receive_time': 196344.645195321, u'next_clock': 2307588672L, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196344.085499081} mcu 'mcu': got {'#receive_time': 196344.655126617, u'next_clock': 2308588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196344.085499081} mcu 'psu': got {'#receive_time': 196344.764872543, u'next_clock': 3085768775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196344.048237803} mcu 'mcu': got {'#receive_time': 196344.945106339, u'next_clock': 2337588672L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196344.085499081} mcu 'mcu': got {'#receive_time': 196344.95507695, u'next_clock': 2338588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196344.085499081} mcu 'psu': got {'#receive_time': 196345.064799876, u'next_clock': 3089368775L, u'oid': 3, u'value': 16328, '#name': u'analog_in_state', '#sent_time': 196345.03306671} mcu 'mcu': got {'#receive_time': 196345.245122635, u'next_clock': 2367588672L, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196345.070430747} mcu 'mcu': got {'#receive_time': 196345.255093413, u'next_clock': 2368588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196345.070430747} mcu 'psu': got {'#receive_time': 196345.364803561, u'next_clock': 3092968775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196345.03306671} mcu 'mcu': got {'#receive_time': 196345.545127024, u'next_clock': 2397588672L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196345.070430747} mcu 'mcu': got {'#receive_time': 196345.555122524, u'next_clock': 2398588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196345.070430747} mcu 'psu': got {'#receive_time': 196345.664854487, u'next_clock': 3096568775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196345.03306671} mcu 'mcu': got {'#receive_time': 196345.845152802, u'next_clock': 2427588672L, u'oid': 17, u'value': 22562, '#name': u'analog_in_state', '#sent_time': 196345.070430747} mcu 'mcu': got {'#receive_time': 196345.855107413, u'next_clock': 2428588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196345.070430747} mcu 'psu': got {'#receive_time': 196345.964778413, u'next_clock': 3100168775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196345.03306671} mcu 'mcu': got {'#receive_time': 196346.145127153, u'next_clock': 2457588672L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196346.055204709} mcu 'mcu': got {'#receive_time': 196346.155128913, u'next_clock': 2458588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196346.055204709} mcu 'psu': got {'#receive_time': 196346.264771653, u'next_clock': 3103768775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196346.017938709} mcu 'mcu': got {'#receive_time': 196346.445176579, u'next_clock': 2487588672L, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196346.055204709} mcu 'mcu': got {'#receive_time': 196346.455182116, u'next_clock': 2488588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196346.055204709} mcu 'psu': got {'#receive_time': 196346.564783301, u'next_clock': 3107368775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196346.017938709} mcu 'mcu': got {'#receive_time': 196346.745169283, u'next_clock': 2517588672L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196346.055204709} mcu 'mcu': got {'#receive_time': 196346.755164709, u'next_clock': 2518588672L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196346.055204709} mcu 'psu': got {'#receive_time': 196346.86478206, u'next_clock': 3110968775L, u'oid': 3, u'value': 16356, '#name': u'analog_in_state', '#sent_time': 196346.017938709} mcu 'mcu': got {'#receive_time': 196347.045208653, u'next_clock': 2547588672L, u'oid': 17, u'value': 22561, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'mcu': got {'#receive_time': 196347.055152597, u'next_clock': 2548588672L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'psu': got {'#receive_time': 196347.164752171, u'next_clock': 3114568775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196347.002474949} mcu 'mcu': got {'#receive_time': 196347.345215949, u'next_clock': 2577588672L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'mcu': got {'#receive_time': 196347.355182986, u'next_clock': 2578588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'psu': got {'#receive_time': 196347.46473769, u'next_clock': 3118168775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196347.002474949} mcu 'mcu': got {'#receive_time': 196347.645263023, u'next_clock': 2607588672L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'mcu': got {'#receive_time': 196347.655187375, u'next_clock': 2608588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'psu': got {'#receive_time': 196347.764747319, u'next_clock': 3121768775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196347.002474949} mcu 'mcu': got {'#receive_time': 196347.945208652, u'next_clock': 2637588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'mcu': got {'#receive_time': 196347.955207597, u'next_clock': 2638588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196347.039728857} mcu 'psu': got {'#receive_time': 196348.064715411, u'next_clock': 3125368775L, u'oid': 3, u'value': 16364, '#name': u'analog_in_state', '#sent_time': 196347.986549374} mcu 'mcu': got {'#receive_time': 196348.245235319, u'next_clock': 2667588672L, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196348.023896041} mcu 'mcu': got {'#receive_time': 196348.255220522, u'next_clock': 2668588672L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196348.023896041} mcu 'psu': got {'#receive_time': 196348.364708004, u'next_clock': 3128968775L, u'oid': 3, u'value': 16372, '#name': u'analog_in_state', '#sent_time': 196347.986549374} mcu 'mcu': got {'#receive_time': 196348.545297467, u'next_clock': 2697588672L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196348.023896041} mcu 'mcu': got {'#receive_time': 196348.55521893, u'next_clock': 2698588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196348.023896041} mcu 'psu': got {'#receive_time': 196348.664686226, u'next_clock': 3132568775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196347.986549374} mcu 'mcu': got {'#receive_time': 196348.845268355, u'next_clock': 2727588672L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196348.023896041} mcu 'mcu': got {'#receive_time': 196348.855279615, u'next_clock': 2728588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196348.023896041} mcu 'psu': got {'#receive_time': 196348.964823318, u'next_clock': 3136168775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196347.986549374} mcu 'mcu': got {'#receive_time': 196349.1453268, u'next_clock': 2757588672L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196349.009245763} mcu 'mcu': got {'#receive_time': 196349.155341115, u'next_clock': 2758588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196349.009245763} mcu 'psu': got {'#receive_time': 196349.264744189, u'next_clock': 3139768775L, u'oid': 3, u'value': 16335, '#name': u'analog_in_state', '#sent_time': 196348.971314189} mcu 'mcu': got {'#receive_time': 196349.445343911, u'next_clock': 2787588672L, u'oid': 17, u'value': 22561, '#name': u'analog_in_state', '#sent_time': 196349.009245763} mcu 'mcu': got {'#receive_time': 196349.455301429, u'next_clock': 2788588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196349.009245763} mcu 'psu': got {'#receive_time': 196349.564872429, u'next_clock': 3143368775L, u'oid': 3, u'value': 16348, '#name': u'analog_in_state', '#sent_time': 196348.971314189} mcu 'mcu': got {'#receive_time': 196349.745372892, u'next_clock': 2817588672L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196349.009245763} mcu 'mcu': got {'#receive_time': 196349.755354059, u'next_clock': 2818588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196349.009245763} mcu 'psu': got {'#receive_time': 196349.864742836, u'next_clock': 3146968775L, u'oid': 3, u'value': 16356, '#name': u'analog_in_state', '#sent_time': 196348.971314189} mcu 'mcu': got {'#receive_time': 196350.045335466, u'next_clock': 2847588672L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'mcu': got {'#receive_time': 196350.055332225, u'next_clock': 2848588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'psu': got {'#receive_time': 196350.164738262, u'next_clock': 3150568775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196349.956200503} mcu 'mcu': got {'#receive_time': 196350.345392503, u'next_clock': 2877588672L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'mcu': got {'#receive_time': 196350.355359169, u'next_clock': 2878588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'psu': got {'#receive_time': 196350.464713669, u'next_clock': 3154168775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196349.956200503} mcu 'mcu': got {'#receive_time': 196350.645398299, u'next_clock': 2907588672L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'mcu': got {'#receive_time': 196350.655356891, u'next_clock': 2908588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'psu': got {'#receive_time': 196350.764769354, u'next_clock': 3157768775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196349.956200503} mcu 'mcu': got {'#receive_time': 196350.945368817, u'next_clock': 2937588672L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'mcu': got {'#receive_time': 196350.955369873, u'next_clock': 2938588672L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196349.993690966} mcu 'psu': got {'#receive_time': 196351.064671873, u'next_clock': 3161368775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196350.940948632} mcu 'mcu': got {'#receive_time': 196351.245414595, u'next_clock': 2967588672L, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196350.978704206} mcu 'mcu': got {'#receive_time': 196351.255369817, u'next_clock': 2968588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196350.978704206} mcu 'psu': got {'#receive_time': 196351.364693132, u'next_clock': 3164968775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196350.940948632} mcu 'mcu': got {'#receive_time': 196351.545484669, u'next_clock': 2997588672L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196350.978704206} mcu 'mcu': got {'#receive_time': 196351.55537065, u'next_clock': 2998588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196350.978704206} mcu 'psu': got {'#receive_time': 196351.664668502, u'next_clock': 3168568775L, u'oid': 3, u'value': 16368, '#name': u'analog_in_state', '#sent_time': 196350.940948632} mcu 'mcu': got {'#receive_time': 196351.845468817, u'next_clock': 3027588672L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196350.978704206} mcu 'mcu': got {'#receive_time': 196351.855462039, u'next_clock': 3028588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196350.978704206} mcu 'psu': got {'#receive_time': 196351.964631409, u'next_clock': 3172168775L, u'oid': 3, u'value': 16311, '#name': u'analog_in_state', '#sent_time': 196351.925772539} mcu 'mcu': got {'#receive_time': 196352.145462798, u'next_clock': 3057588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196351.963838742} mcu 'mcu': got {'#receive_time': 196352.155415224, u'next_clock': 3058588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196351.963838742} mcu 'psu': got {'#receive_time': 196352.264676353, u'next_clock': 3175768775L, u'oid': 3, u'value': 16340, '#name': u'analog_in_state', '#sent_time': 196351.925772539} mcu 'mcu': got {'#receive_time': 196352.445520557, u'next_clock': 3087588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196351.963838742} mcu 'mcu': got {'#receive_time': 196352.455426946, u'next_clock': 3088588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196351.963838742} mcu 'psu': got {'#receive_time': 196352.56474739, u'next_clock': 3179368775L, u'oid': 3, u'value': 16367, '#name': u'analog_in_state', '#sent_time': 196351.925772539} mcu 'mcu': got {'#receive_time': 196352.745497001, u'next_clock': 3117588672L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196351.963838742} mcu 'mcu': got {'#receive_time': 196352.755469038, u'next_clock': 3118588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196351.963838742} mcu 'psu': got {'#receive_time': 196352.864670964, u'next_clock': 3182968775L, u'oid': 3, u'value': 16380, '#name': u'analog_in_state', '#sent_time': 196351.925772539} mcu 'mcu': got {'#receive_time': 196353.045442686, u'next_clock': 3147588672L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196352.948488946} mcu 'mcu': got {'#receive_time': 196353.055497927, u'next_clock': 3148588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196352.948488946} mcu 'psu': got {'#receive_time': 196353.164641501, u'next_clock': 3186568775L, u'oid': 3, u'value': 16340, '#name': u'analog_in_state', '#sent_time': 196352.910345723} mcu 'mcu': got {'#receive_time': 196353.345494316, u'next_clock': 3177588672L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196352.948488946} mcu 'mcu': got {'#receive_time': 196353.355496705, u'next_clock': 3178588672L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196352.948488946} mcu 'psu': got {'#receive_time': 196353.46465189, u'next_clock': 3190168775L, u'oid': 3, u'value': 16372, '#name': u'analog_in_state', '#sent_time': 196352.910345723} mcu 'mcu': got {'#receive_time': 196353.645529038, u'next_clock': 3207588672L, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196352.948488946} mcu 'mcu': got {'#receive_time': 196353.65548739, u'next_clock': 3208588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196352.948488946} mcu 'psu': got {'#receive_time': 196353.764638778, u'next_clock': 3193768775L, u'oid': 3, u'value': 16357, '#name': u'analog_in_state', '#sent_time': 196352.910345723} mcu 'mcu': got {'#receive_time': 196353.945541778, u'next_clock': 3237588672L, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'mcu': got {'#receive_time': 196353.955541075, u'next_clock': 3238588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'psu': got {'#receive_time': 196354.064543019, u'next_clock': 3197368775L, u'oid': 3, u'value': 16378, '#name': u'analog_in_state', '#sent_time': 196353.895318815} mcu 'mcu': got {'#receive_time': 196354.245444778, u'next_clock': 3267588672L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'mcu': got {'#receive_time': 196354.255421537, u'next_clock': 3268588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'psu': got {'#receive_time': 196354.364538704, u'next_clock': 3200968775L, u'oid': 3, u'value': 16364, '#name': u'analog_in_state', '#sent_time': 196353.895318815} mcu 'mcu': got {'#receive_time': 196354.545520074, u'next_clock': 3297588672L, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'mcu': got {'#receive_time': 196354.555445204, u'next_clock': 3298588672L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'psu': got {'#receive_time': 196354.664521815, u'next_clock': 3204568775L, u'oid': 3, u'value': 16344, '#name': u'analog_in_state', '#sent_time': 196353.895318815} mcu 'mcu': got {'#receive_time': 196354.845480685, u'next_clock': 3327588672L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'mcu': got {'#receive_time': 196354.855434907, u'next_clock': 3328588672L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196353.932903352} mcu 'psu': got {'#receive_time': 196354.964506667, u'next_clock': 3208168775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196354.879594852} mcu 'mcu': got {'#receive_time': 196355.145465463, u'next_clock': 3357588672L, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196354.916880722} mcu 'mcu': got {'#receive_time': 196355.155455648, u'next_clock': 3358588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196354.916880722} mcu 'psu': got {'#receive_time': 196355.264506148, u'next_clock': 3211768775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196354.879594852} mcu 'mcu': got {'#receive_time': 196355.445568981, u'next_clock': 3387588672L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196354.916880722} mcu 'mcu': got {'#receive_time': 196355.455467111, u'next_clock': 3388588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196354.916880722} mcu 'psu': got {'#receive_time': 196355.5645155, u'next_clock': 3215368775L, u'oid': 3, u'value': 16343, '#name': u'analog_in_state', '#sent_time': 196354.879594852} mcu 'mcu': got {'#receive_time': 196355.745495907, u'next_clock': 3417588672L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196354.916880722} mcu 'mcu': got {'#receive_time': 196355.755469981, u'next_clock': 3418588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196354.916880722} mcu 'psu': got {'#receive_time': 196355.864434314, u'next_clock': 3218968775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196355.863823036} mcu 'mcu': got {'#receive_time': 196356.045518888, u'next_clock': 3447588672L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196355.90110437} mcu 'mcu': got {'#receive_time': 196356.055504518, u'next_clock': 3448588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196355.90110437} mcu 'psu': got {'#receive_time': 196356.164460073, u'next_clock': 3222568775L, u'oid': 3, u'value': 16329, '#name': u'analog_in_state', '#sent_time': 196355.863823036} mcu 'mcu': got {'#receive_time': 196356.345509092, u'next_clock': 3477588672L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196355.90110437} mcu 'mcu': got {'#receive_time': 196356.355486684, u'next_clock': 3478588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196355.90110437} mcu 'psu': got {'#receive_time': 196356.464540129, u'next_clock': 3226168775L, u'oid': 3, u'value': 16337, '#name': u'analog_in_state', '#sent_time': 196355.863823036} mcu 'mcu': got {'#receive_time': 196356.645524258, u'next_clock': 3507588672L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196355.90110437} mcu 'mcu': got {'#receive_time': 196356.655513351, u'next_clock': 3508588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196355.90110437} mcu 'psu': got {'#receive_time': 196356.764450054, u'next_clock': 3229768775L, u'oid': 3, u'value': 16367, '#name': u'analog_in_state', '#sent_time': 196355.863823036} mcu 'mcu': got {'#receive_time': 196356.945535999, u'next_clock': 3537588672L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'mcu': got {'#receive_time': 196356.955513388, u'next_clock': 3538588672L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'psu': got {'#receive_time': 196357.064441221, u'next_clock': 3233368775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196356.848242832} mcu 'mcu': got {'#receive_time': 196357.245564721, u'next_clock': 3567588672L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'mcu': got {'#receive_time': 196357.255547536, u'next_clock': 3568588672L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'psu': got {'#receive_time': 196357.364454073, u'next_clock': 3236968775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196356.848242832} mcu 'mcu': got {'#receive_time': 196357.545553906, u'next_clock': 3597588672L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'mcu': got {'#receive_time': 196357.555540832, u'next_clock': 3598588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'psu': got {'#receive_time': 196357.664416702, u'next_clock': 3240568775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196356.848242832} mcu 'mcu': got {'#receive_time': 196357.845553869, u'next_clock': 3627588672L, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'mcu': got {'#receive_time': 196357.855542239, u'next_clock': 3628588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196356.885516591} mcu 'psu': got {'#receive_time': 196357.964413924, u'next_clock': 3244168775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196357.832839646} mcu 'mcu': got {'#receive_time': 196358.145595628, u'next_clock': 3657588672L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196357.87010322} mcu 'mcu': got {'#receive_time': 196358.155572942, u'next_clock': 3658588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196357.87010322} mcu 'psu': got {'#receive_time': 196358.264417424, u'next_clock': 3247768775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196357.832839646} mcu 'mcu': got {'#receive_time': 196358.445630109, u'next_clock': 3687588672L, u'oid': 17, u'value': 22563, '#name': u'analog_in_state', '#sent_time': 196357.87010322} mcu 'mcu': got {'#receive_time': 196358.455578424, u'next_clock': 3688588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196357.87010322} mcu 'psu': got {'#receive_time': 196358.564387035, u'next_clock': 3251368775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196357.832839646} mcu 'mcu': got {'#receive_time': 196358.745613924, u'next_clock': 3717588672L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196357.87010322} mcu 'mcu': got {'#receive_time': 196358.755577516, u'next_clock': 3718588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196357.87010322} mcu 'psu': got {'#receive_time': 196358.864396405, u'next_clock': 3254968775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196358.81699809} mcu 'mcu': got {'#receive_time': 196359.045726201, u'next_clock': 3747588672L, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196358.854971924} mcu 'mcu': got {'#receive_time': 196359.055675998, u'next_clock': 3748588672L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196358.854971924} mcu 'psu': got {'#receive_time': 196359.164412534, u'next_clock': 3258568775L, u'oid': 3, u'value': 16309, '#name': u'analog_in_state', '#sent_time': 196358.81699809} mcu 'mcu': got {'#receive_time': 196359.34570859, u'next_clock': 3777588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196358.854971924} mcu 'mcu': got {'#receive_time': 196359.355738349, u'next_clock': 3778588672L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196358.854971924} mcu 'psu': got {'#receive_time': 196359.464531794, u'next_clock': 3262168775L, u'oid': 3, u'value': 16385, '#name': u'analog_in_state', '#sent_time': 196358.81699809} mcu 'mcu': got {'#receive_time': 196359.645760682, u'next_clock': 3807588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196358.854971924} mcu 'mcu': got {'#receive_time': 196359.655696516, u'next_clock': 3808588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196358.854971924} mcu 'psu': got {'#receive_time': 196359.764463627, u'next_clock': 3265768775L, u'oid': 3, u'value': 16346, '#name': u'analog_in_state', '#sent_time': 196358.81699809} mcu 'mcu': got {'#receive_time': 196359.94577133, u'next_clock': 3837588672L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196359.839155608} mcu 'mcu': got {'#receive_time': 196359.955713312, u'next_clock': 3838588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196359.839155608} mcu 'psu': got {'#receive_time': 196360.06445409, u'next_clock': 3269368775L, u'oid': 3, u'value': 16384, '#name': u'analog_in_state', '#sent_time': 196359.801559312} mcu 'mcu': got {'#receive_time': 196360.245761219, u'next_clock': 3867588672L, u'oid': 17, u'value': 22563, '#name': u'analog_in_state', '#sent_time': 196359.839155608} mcu 'mcu': got {'#receive_time': 196360.255725849, u'next_clock': 3868588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196359.839155608} mcu 'psu': got {'#receive_time': 196360.364452737, u'next_clock': 3272968775L, u'oid': 3, u'value': 16367, '#name': u'analog_in_state', '#sent_time': 196359.801559312} mcu 'mcu': got {'#receive_time': 196360.545738386, u'next_clock': 3897588672L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196359.839155608} mcu 'mcu': got {'#receive_time': 196360.555728071, u'next_clock': 3898588672L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196359.839155608} mcu 'psu': got {'#receive_time': 196360.664394311, u'next_clock': 3276568775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196359.801559312} mcu 'mcu': got {'#receive_time': 196360.845746422, u'next_clock': 3927588672L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'mcu': got {'#receive_time': 196360.855744496, u'next_clock': 3928588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'psu': got {'#receive_time': 196360.964417774, u'next_clock': 3280168775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196360.7863277} mcu 'mcu': got {'#receive_time': 196361.145785996, u'next_clock': 3957588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'mcu': got {'#receive_time': 196361.155746607, u'next_clock': 3958588672L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'psu': got {'#receive_time': 196361.264423144, u'next_clock': 3283768775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196360.7863277} mcu 'mcu': got {'#receive_time': 196361.445895848, u'next_clock': 3987588672L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'mcu': got {'#receive_time': 196361.455766978, u'next_clock': 3988588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'psu': got {'#receive_time': 196361.564384792, u'next_clock': 3287368775L, u'oid': 3, u'value': 16376, '#name': u'analog_in_state', '#sent_time': 196360.7863277} mcu 'mcu': got {'#receive_time': 196361.745814663, u'next_clock': 4017588672L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'mcu': got {'#receive_time': 196361.755795903, u'next_clock': 4018588672L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196360.823888237} mcu 'psu': got {'#receive_time': 196361.864368607, u'next_clock': 3290968775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196361.770437329} mcu 'mcu': got {'#receive_time': 196362.045810088, u'next_clock': 4047588672L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196361.807973403} mcu 'mcu': got {'#receive_time': 196362.055785699, u'next_clock': 4048588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196361.807973403} mcu 'psu': got {'#receive_time': 196362.164340885, u'next_clock': 3294568775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196361.770437329} mcu 'mcu': got {'#receive_time': 196362.345899347, u'next_clock': 4077588672L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196361.807973403} mcu 'mcu': got {'#receive_time': 196362.355786366, u'next_clock': 4078588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196361.807973403} mcu 'psu': got {'#receive_time': 196362.464375958, u'next_clock': 3298168775L, u'oid': 3, u'value': 16356, '#name': u'analog_in_state', '#sent_time': 196361.770437329} mcu 'mcu': got {'#receive_time': 196362.645831162, u'next_clock': 4107588672L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196361.807973403} mcu 'mcu': got {'#receive_time': 196362.65578731, u'next_clock': 4108588672L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196361.807973403} mcu 'psu': got {'#receive_time': 196362.764345514, u'next_clock': 3301768775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196362.755311958} mcu 'mcu': got {'#receive_time': 196362.945870532, u'next_clock': 4137588672L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196362.792848125} mcu 'mcu': got {'#receive_time': 196362.955859699, u'next_clock': 4138588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196362.792848125} mcu 'psu': got {'#receive_time': 196363.064367736, u'next_clock': 3305368775L, u'oid': 3, u'value': 16369, '#name': u'analog_in_state', '#sent_time': 196362.755311958} mcu 'mcu': got {'#receive_time': 196363.245910588, u'next_clock': 4167588672L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196362.792848125} mcu 'mcu': got {'#receive_time': 196363.255894921, u'next_clock': 4168588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196362.792848125} mcu 'psu': got {'#receive_time': 196363.364434643, u'next_clock': 3308968775L, u'oid': 3, u'value': 16406, '#name': u'analog_in_state', '#sent_time': 196362.755311958} mcu 'mcu': got {'#receive_time': 196363.545908402, u'next_clock': 4197588672L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196362.792848125} mcu 'mcu': got {'#receive_time': 196363.555909661, u'next_clock': 4198588672L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196362.792848125} mcu 'psu': got {'#receive_time': 196363.664286865, u'next_clock': 3312568775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196362.755311958} mcu 'mcu': got {'#receive_time': 196363.845876032, u'next_clock': 4227588672L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'mcu': got {'#receive_time': 196363.855910328, u'next_clock': 4228588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'psu': got {'#receive_time': 196363.964314772, u'next_clock': 3316168775L, u'oid': 3, u'value': 16372, '#name': u'analog_in_state', '#sent_time': 196363.739960884} mcu 'mcu': got {'#receive_time': 196364.145897883, u'next_clock': 4257588672L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'mcu': got {'#receive_time': 196364.155869291, u'next_clock': 4258588672L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'psu': got {'#receive_time': 196364.264306457, u'next_clock': 3319768775L, u'oid': 3, u'value': 16365, '#name': u'analog_in_state', '#sent_time': 196363.739960884} mcu 'mcu': got {'#receive_time': 196364.445947402, u'next_clock': 4287588672L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'mcu': got {'#receive_time': 196364.455891476, u'next_clock': 4288588672L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'psu': got {'#receive_time': 196364.564306087, u'next_clock': 3323368775L, u'oid': 3, u'value': 16379, '#name': u'analog_in_state', '#sent_time': 196363.739960884} mcu 'mcu': got {'#receive_time': 196364.745892309, u'next_clock': 22621376, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'mcu': got {'#receive_time': 196364.755899531, u'next_clock': 23621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196363.77732018} mcu 'psu': got {'#receive_time': 196364.864309716, u'next_clock': 3326968775L, u'oid': 3, u'value': 16387, '#name': u'analog_in_state', '#sent_time': 196364.72434792} mcu 'mcu': got {'#receive_time': 196365.046028327, u'next_clock': 52621376, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196364.761743198} mcu 'mcu': got {'#receive_time': 196365.055995864, u'next_clock': 53621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196364.761743198} mcu 'psu': got {'#receive_time': 196365.164259605, u'next_clock': 3330568775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196364.72434792} mcu 'mcu': got {'#receive_time': 196365.346036642, u'next_clock': 82621376, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196364.761743198} mcu 'mcu': got {'#receive_time': 196365.355942364, u'next_clock': 83621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196364.761743198} mcu 'psu': got {'#receive_time': 196365.464269234, u'next_clock': 3334168775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196364.72434792} mcu 'mcu': got {'#receive_time': 196365.645948494, u'next_clock': 112621376, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196364.761743198} mcu 'mcu': got {'#receive_time': 196365.655922901, u'next_clock': 113621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196364.761743198} mcu 'psu': got {'#receive_time': 196365.764273568, u'next_clock': 3337768775L, u'oid': 3, u'value': 16354, '#name': u'analog_in_state', '#sent_time': 196365.709537234} mcu 'mcu': got {'#receive_time': 196365.945962938, u'next_clock': 142621376, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196365.746032679} mcu 'mcu': got {'#receive_time': 196365.955929438, u'next_clock': 143621376, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196365.746032679} mcu 'psu': got {'#receive_time': 196366.064326438, u'next_clock': 3341368775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196365.709537234} mcu 'mcu': got {'#receive_time': 196366.246064882, u'next_clock': 172621376, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196365.746032679} mcu 'mcu': got {'#receive_time': 196366.256030975, u'next_clock': 173621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196365.746032679} mcu 'psu': got {'#receive_time': 196366.364284382, u'next_clock': 3344968775L, u'oid': 3, u'value': 16378, '#name': u'analog_in_state', '#sent_time': 196365.709537234} mcu 'mcu': got {'#receive_time': 196366.545978975, u'next_clock': 202621376, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196365.746032679} mcu 'mcu': got {'#receive_time': 196366.556005475, u'next_clock': 203621376, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196365.746032679} mcu 'psu': got {'#receive_time': 196366.664237511, u'next_clock': 3348568775L, u'oid': 3, u'value': 16356, '#name': u'analog_in_state', '#sent_time': 196365.709537234} mcu 'mcu': got {'#receive_time': 196366.846002771, u'next_clock': 232621376, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196366.730472511} mcu 'mcu': got {'#receive_time': 196366.855958437, u'next_clock': 233621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196366.730472511} mcu 'psu': got {'#receive_time': 196366.964251697, u'next_clock': 3352168775L, u'oid': 3, u'value': 16342, '#name': u'analog_in_state', '#sent_time': 196366.694073752} mcu 'mcu': got {'#receive_time': 196367.145995937, u'next_clock': 262621376, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196366.730472511} mcu 'mcu': got {'#receive_time': 196367.155971104, u'next_clock': 263621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196366.730472511} mcu 'psu': got {'#receive_time': 196367.264282807, u'next_clock': 3355768775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196366.694073752} mcu 'mcu': got {'#receive_time': 196367.446056085, u'next_clock': 292621376, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196366.730472511} mcu 'mcu': got {'#receive_time': 196367.45600627, u'next_clock': 293621376, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196366.730472511} mcu 'psu': got {'#receive_time': 196367.564211937, u'next_clock': 3359368775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196366.694073752} mcu 'mcu': got {'#receive_time': 196367.745986918, u'next_clock': 322621376, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'mcu': got {'#receive_time': 196367.756015566, u'next_clock': 323621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'psu': got {'#receive_time': 196367.864209418, u'next_clock': 3362968775L, u'oid': 3, u'value': 16390, '#name': u'analog_in_state', '#sent_time': 196367.678992307} mcu 'mcu': got {'#receive_time': 196368.046038159, u'next_clock': 352621376, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'mcu': got {'#receive_time': 196368.056066066, u'next_clock': 353621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'psu': got {'#receive_time': 196368.164158122, u'next_clock': 3366568775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196367.678992307} mcu 'mcu': got {'#receive_time': 196368.346139214, u'next_clock': 382621376, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'mcu': got {'#receive_time': 196368.355981881, u'next_clock': 383621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'psu': got {'#receive_time': 196368.464305622, u'next_clock': 3370168775L, u'oid': 3, u'value': 16334, '#name': u'analog_in_state', '#sent_time': 196367.678992307} mcu 'mcu': got {'#receive_time': 196368.646061381, u'next_clock': 412621376, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'mcu': got {'#receive_time': 196368.656036103, u'next_clock': 413621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196367.714563492} mcu 'psu': got {'#receive_time': 196368.764174325, u'next_clock': 3373768775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196368.663905473} mcu 'mcu': got {'#receive_time': 196368.946066769, u'next_clock': 442621376, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196368.699439103} mcu 'mcu': got {'#receive_time': 196368.956011769, u'next_clock': 443621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196368.699439103} mcu 'psu': got {'#receive_time': 196369.064102917, u'next_clock': 3377368775L, u'oid': 3, u'value': 16372, '#name': u'analog_in_state', '#sent_time': 196368.663905473} mcu 'mcu': got {'#receive_time': 196369.246183825, u'next_clock': 472621376, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196368.699439103} mcu 'mcu': got {'#receive_time': 196369.256046788, u'next_clock': 473621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196368.699439103} mcu 'psu': got {'#receive_time': 196369.364148973, u'next_clock': 3380968775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196368.663905473} mcu 'mcu': got {'#receive_time': 196369.546084399, u'next_clock': 502621376, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196368.699439103} mcu 'mcu': got {'#receive_time': 196369.55603401, u'next_clock': 503621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196368.699439103} mcu 'psu': got {'#receive_time': 196369.664085417, u'next_clock': 3384568775L, u'oid': 3, u'value': 16368, '#name': u'analog_in_state', '#sent_time': 196369.648713991} mcu 'mcu': got {'#receive_time': 196369.846124806, u'next_clock': 532621376, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196369.684187102} mcu 'mcu': got {'#receive_time': 196369.856058695, u'next_clock': 533621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196369.684187102} mcu 'psu': got {'#receive_time': 196369.964157917, u'next_clock': 3388168775L, u'oid': 3, u'value': 16341, '#name': u'analog_in_state', '#sent_time': 196369.648713991} mcu 'mcu': got {'#receive_time': 196370.146108787, u'next_clock': 562621376, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196369.684187102} mcu 'mcu': got {'#receive_time': 196370.156068528, u'next_clock': 563621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196369.684187102} mcu 'psu': got {'#receive_time': 196370.264257398, u'next_clock': 3391768775L, u'oid': 3, u'value': 16354, '#name': u'analog_in_state', '#sent_time': 196369.648713991} mcu 'mcu': got {'#receive_time': 196370.44615025, u'next_clock': 592621376, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196369.684187102} mcu 'mcu': got {'#receive_time': 196370.456092843, u'next_clock': 593621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196369.684187102} mcu 'psu': got {'#receive_time': 196370.564121435, u'next_clock': 3395368775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196369.648713991} mcu 'mcu': got {'#receive_time': 196370.746117602, u'next_clock': 622621376, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'mcu': got {'#receive_time': 196370.756099639, u'next_clock': 623621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'psu': got {'#receive_time': 196370.864129713, u'next_clock': 3398968775L, u'oid': 3, u'value': 16388, '#name': u'analog_in_state', '#sent_time': 196370.633716657} mcu 'mcu': got {'#receive_time': 196371.046152731, u'next_clock': 652621376, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'mcu': got {'#receive_time': 196371.056151046, u'next_clock': 653621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'psu': got {'#receive_time': 196371.164098046, u'next_clock': 3402568775L, u'oid': 3, u'value': 16354, '#name': u'analog_in_state', '#sent_time': 196370.633716657} mcu 'mcu': got {'#receive_time': 196371.346129046, u'next_clock': 682621376, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'mcu': got {'#receive_time': 196371.356110786, u'next_clock': 683621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'psu': got {'#receive_time': 196371.464105286, u'next_clock': 3406168775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196370.633716657} mcu 'mcu': got {'#receive_time': 196371.646127842, u'next_clock': 712621376, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196370.669161194} mcu 'mcu': got {'#receive_time': 196371.656102675, u'next_clock': 713621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'psu': got {'#receive_time': 196371.76414049, u'next_clock': 3409768775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196371.618764342} mcu 'mcu': got {'#receive_time': 196371.946180897, u'next_clock': 742621376, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'mcu': got {'#receive_time': 196371.956154675, u'next_clock': 743621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'psu': got {'#receive_time': 196372.064072175, u'next_clock': 3413368775L, u'oid': 3, u'value': 16340, '#name': u'analog_in_state', '#sent_time': 196371.618764342} mcu 'mcu': got {'#receive_time': 196372.246324175, u'next_clock': 772621376, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'mcu': got {'#receive_time': 196372.256196638, u'next_clock': 773621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'psu': got {'#receive_time': 196372.364055786, u'next_clock': 3416968775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196371.618764342} mcu 'mcu': got {'#receive_time': 196372.546194767, u'next_clock': 802621376, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'mcu': got {'#receive_time': 196372.556231008, u'next_clock': 803621376, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196371.653271527} mcu 'psu': got {'#receive_time': 196372.664023323, u'next_clock': 3420568775L, u'oid': 3, u'value': 16387, '#name': u'analog_in_state', '#sent_time': 196372.60342823} mcu 'mcu': got {'#receive_time': 196372.846229267, u'next_clock': 832621376, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196372.638115045} mcu 'mcu': got {'#receive_time': 196372.85617886, u'next_clock': 833621376, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196372.638115045} mcu 'psu': got {'#receive_time': 196372.964086489, u'next_clock': 3424168775L, u'oid': 3, u'value': 16365, '#name': u'analog_in_state', '#sent_time': 196372.60342823} mcu 'mcu': got {'#receive_time': 196373.1463516, u'next_clock': 862621376, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196372.638115045} mcu 'mcu': got {'#receive_time': 196373.156234859, u'next_clock': 863621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196372.638115045} mcu 'psu': got {'#receive_time': 196373.264039748, u'next_clock': 3427768775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196372.60342823} mcu 'mcu': got {'#receive_time': 196373.446236433, u'next_clock': 892621376, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196372.638115045} mcu 'mcu': got {'#receive_time': 196373.456212896, u'next_clock': 893621376, u'oid': 18, u'value': 31454, '#name': u'analog_in_state', '#sent_time': 196372.638115045} mcu 'psu': got {'#receive_time': 196373.564016081, u'next_clock': 3431368775L, u'oid': 3, u'value': 16349, '#name': u'analog_in_state', '#sent_time': 196372.60342823} mcu 'mcu': got {'#receive_time': 196373.746212822, u'next_clock': 922621376, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196373.622814193} mcu 'mcu': got {'#receive_time': 196373.756206989, u'next_clock': 923621376, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196373.622814193} mcu 'psu': got {'#receive_time': 196373.864118433, u'next_clock': 3434968775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196373.588353822} mcu 'mcu': got {'#receive_time': 196374.046200155, u'next_clock': 952621376, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196373.622814193} mcu 'mcu': got {'#receive_time': 196374.056177914, u'next_clock': 953621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196373.622814193} mcu 'psu': got {'#receive_time': 196374.164094711, u'next_clock': 3438568775L, u'oid': 3, u'value': 16364, '#name': u'analog_in_state', '#sent_time': 196373.588353822} mcu 'mcu': got {'#receive_time': 196374.346236896, u'next_clock': 982621376, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196373.622814193} mcu 'mcu': got {'#receive_time': 196374.356218266, u'next_clock': 983621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196373.622814193} mcu 'psu': got {'#receive_time': 196374.464034303, u'next_clock': 3442168775L, u'oid': 3, u'value': 16360, '#name': u'analog_in_state', '#sent_time': 196373.588353822} mcu 'mcu': got {'#receive_time': 196374.646234988, u'next_clock': 1012621376, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'mcu': got {'#receive_time': 196374.65626784, u'next_clock': 1013621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'psu': got {'#receive_time': 196374.76400734, u'next_clock': 3445768775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196374.572740081} mcu 'mcu': got {'#receive_time': 196374.946285284, u'next_clock': 1042621376, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'mcu': got {'#receive_time': 196374.956240821, u'next_clock': 1043621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'psu': got {'#receive_time': 196375.064001803, u'next_clock': 3449368775L, u'oid': 3, u'value': 16368, '#name': u'analog_in_state', '#sent_time': 196374.572740081} mcu 'mcu': got {'#receive_time': 196375.246272877, u'next_clock': 1072621376, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'mcu': got {'#receive_time': 196375.256219543, u'next_clock': 1073621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'psu': got {'#receive_time': 196375.363950154, u'next_clock': 3452968775L, u'oid': 3, u'value': 16351, '#name': u'analog_in_state', '#sent_time': 196374.572740081} mcu 'mcu': got {'#receive_time': 196375.546285265, u'next_clock': 1102621376, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'mcu': got {'#receive_time': 196375.556255154, u'next_clock': 1103621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196374.607011599} mcu 'psu': got {'#receive_time': 196375.663968377, u'next_clock': 3456568775L, u'oid': 3, u'value': 16364, '#name': u'analog_in_state', '#sent_time': 196375.557144247} mcu 'mcu': got {'#receive_time': 196375.846527469, u'next_clock': 1132621376, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196375.592208877} mcu 'mcu': got {'#receive_time': 196375.856277858, u'next_clock': 1133621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196375.592208877} mcu 'psu': got {'#receive_time': 196375.96399395, u'next_clock': 3460168775L, u'oid': 3, u'value': 16357, '#name': u'analog_in_state', '#sent_time': 196375.557144247} mcu 'mcu': got {'#receive_time': 196376.146439691, u'next_clock': 1162621376, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196375.592208877} mcu 'mcu': got {'#receive_time': 196376.15630821, u'next_clock': 1163621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196375.592208877} mcu 'psu': got {'#receive_time': 196376.263971006, u'next_clock': 3463768775L, u'oid': 3, u'value': 16365, '#name': u'analog_in_state', '#sent_time': 196375.557144247} mcu 'mcu': got {'#receive_time': 196376.446352006, u'next_clock': 1192621376, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196375.592208877} mcu 'mcu': got {'#receive_time': 196376.456302358, u'next_clock': 1193621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196375.592208877} mcu 'psu': got {'#receive_time': 196376.563931357, u'next_clock': 3467368775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196376.542011339} mcu 'mcu': got {'#receive_time': 196376.746355005, u'next_clock': 1222621376, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196376.576276191} mcu 'mcu': got {'#receive_time': 196376.756360191, u'next_clock': 1223621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196376.576276191} mcu 'psu': got {'#receive_time': 196376.863928505, u'next_clock': 3470968775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196376.542011339} mcu 'mcu': got {'#receive_time': 196377.046410116, u'next_clock': 1252621376, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196376.576276191} mcu 'mcu': got {'#receive_time': 196377.056346802, u'next_clock': 1253621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196376.576276191} mcu 'psu': got {'#receive_time': 196377.163999635, u'next_clock': 3474568775L, u'oid': 3, u'value': 16371, '#name': u'analog_in_state', '#sent_time': 196376.542011339} mcu 'mcu': got {'#receive_time': 196377.346361357, u'next_clock': 1282621376, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196376.576276191} mcu 'mcu': got {'#receive_time': 196377.356347468, u'next_clock': 1283621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196376.576276191} mcu 'psu': got {'#receive_time': 196377.463981801, u'next_clock': 3478168775L, u'oid': 3, u'value': 16282, '#name': u'analog_in_state', '#sent_time': 196376.542011339} mcu 'mcu': got {'#receive_time': 196377.646356153, u'next_clock': 1312621376, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196377.560680042} mcu 'mcu': got {'#receive_time': 196377.656363283, u'next_clock': 1313621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196377.560680042} mcu 'psu': got {'#receive_time': 196377.763913486, u'next_clock': 3481768775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196377.526905931} mcu 'mcu': got {'#receive_time': 196377.946421171, u'next_clock': 1342621376, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196377.560680042} mcu 'mcu': got {'#receive_time': 196377.956357597, u'next_clock': 1343621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196377.560680042} mcu 'psu': got {'#receive_time': 196378.064002912, u'next_clock': 3485368775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196377.526905931} mcu 'mcu': got {'#receive_time': 196378.246393875, u'next_clock': 1372621376, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196377.560680042} mcu 'mcu': got {'#receive_time': 196378.256350782, u'next_clock': 1373621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196377.560680042} mcu 'psu': got {'#receive_time': 196378.363887264, u'next_clock': 3488968775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196377.526905931} mcu 'mcu': got {'#receive_time': 196378.546338301, u'next_clock': 1402621376, u'oid': 17, u'value': 22559, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'mcu': got {'#receive_time': 196378.556371153, u'next_clock': 1403621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'psu': got {'#receive_time': 196378.663962227, u'next_clock': 3492568775L, u'oid': 3, u'value': 16359, '#name': u'analog_in_state', '#sent_time': 196378.511572986} mcu 'mcu': got {'#receive_time': 196378.846441615, u'next_clock': 1432621376, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'mcu': got {'#receive_time': 196378.857677356, u'next_clock': 1433621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'psu': got {'#receive_time': 196378.963822671, u'next_clock': 3496168775L, u'oid': 3, u'value': 16349, '#name': u'analog_in_state', '#sent_time': 196378.511572986} mcu 'mcu': got {'#receive_time': 196379.14643956, u'next_clock': 1462621376, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'mcu': got {'#receive_time': 196379.156322393, u'next_clock': 1463621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'psu': got {'#receive_time': 196379.263792967, u'next_clock': 3499768775L, u'oid': 3, u'value': 16367, '#name': u'analog_in_state', '#sent_time': 196378.511572986} mcu 'mcu': got {'#receive_time': 196379.446375485, u'next_clock': 1492621376, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'mcu': got {'#receive_time': 196379.456340726, u'next_clock': 1493621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196378.545635227} mcu 'psu': got {'#receive_time': 196379.563734226, u'next_clock': 3503368775L, u'oid': 3, u'value': 16407, '#name': u'analog_in_state', '#sent_time': 196379.496615004} mcu 'mcu': got {'#receive_time': 196379.746355615, u'next_clock': 1522621376, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196379.529981393} mcu 'mcu': got {'#receive_time': 196379.756353078, u'next_clock': 1523621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196379.529981393} mcu 'psu': got {'#receive_time': 196379.863785393, u'next_clock': 3506968775L, u'oid': 3, u'value': 16366, '#name': u'analog_in_state', '#sent_time': 196379.496615004} mcu 'mcu': got {'#receive_time': 196380.046410707, u'next_clock': 1552621376, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196379.529981393} mcu 'mcu': got {'#receive_time': 196380.056361374, u'next_clock': 1553621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196379.529981393} mcu 'psu': got {'#receive_time': 196380.163756392, u'next_clock': 3510568775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196379.496615004} mcu 'mcu': got {'#receive_time': 196380.346395522, u'next_clock': 1582621376, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196379.529981393} mcu 'mcu': got {'#receive_time': 196380.356374281, u'next_clock': 1583621376, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196379.529981393} mcu 'psu': got {'#receive_time': 196380.463744466, u'next_clock': 3514168775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196379.496615004} mcu 'mcu': got {'#receive_time': 196380.646412077, u'next_clock': 1612621376, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196380.5141648} mcu 'mcu': got {'#receive_time': 196380.656375818, u'next_clock': 1613621376, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196380.5141648} mcu 'psu': got {'#receive_time': 196380.76375117, u'next_clock': 3517768775L, u'oid': 3, u'value': 16319, '#name': u'analog_in_state', '#sent_time': 196380.480858577} mcu 'mcu': got {'#receive_time': 196380.946431207, u'next_clock': 1642621376, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196380.5141648} mcu 'mcu': got {'#receive_time': 196380.956397929, u'next_clock': 1643621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196380.5141648} mcu 'psu': got {'#receive_time': 196381.063803558, u'next_clock': 3521368775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196380.480858577} mcu 'mcu': got {'#receive_time': 196381.246431447, u'next_clock': 1672621376, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196380.5141648} mcu 'mcu': got {'#receive_time': 196381.256403262, u'next_clock': 1673621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196380.5141648} mcu 'psu': got {'#receive_time': 196381.363704503, u'next_clock': 3524968775L, u'oid': 3, u'value': 16385, '#name': u'analog_in_state', '#sent_time': 196380.480858577} mcu 'mcu': got {'#receive_time': 196381.546458466, u'next_clock': 1702621376, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'mcu': got {'#receive_time': 196381.556440262, u'next_clock': 1703621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'psu': got {'#receive_time': 196381.663711095, u'next_clock': 3528568775L, u'oid': 3, u'value': 16393, '#name': u'analog_in_state', '#sent_time': 196381.465173743} mcu 'mcu': got {'#receive_time': 196381.846462891, u'next_clock': 1732621376, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'mcu': got {'#receive_time': 196381.856394188, u'next_clock': 1733621376, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'psu': got {'#receive_time': 196381.963690539, u'next_clock': 3532168775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196381.465173743} mcu 'mcu': got {'#receive_time': 196382.146436873, u'next_clock': 1762621376, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'mcu': got {'#receive_time': 196382.15642141, u'next_clock': 1763621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'psu': got {'#receive_time': 196382.263708039, u'next_clock': 3535768775L, u'oid': 3, u'value': 16369, '#name': u'analog_in_state', '#sent_time': 196381.465173743} mcu 'mcu': got {'#receive_time': 196382.446465372, u'next_clock': 1792621376, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'mcu': got {'#receive_time': 196382.456433206, u'next_clock': 1793621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196381.498467021} mcu 'psu': got {'#receive_time': 196382.563662465, u'next_clock': 3539368775L, u'oid': 3, u'value': 16371, '#name': u'analog_in_state', '#sent_time': 196382.449488576} mcu 'mcu': got {'#receive_time': 196382.74646452, u'next_clock': 1822621376, u'oid': 17, u'value': 22560, '#name': u'analog_in_state', '#sent_time': 196382.482747317} mcu 'mcu': got {'#receive_time': 196382.756443632, u'next_clock': 1823621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196382.482747317} mcu 'psu': got {'#receive_time': 196382.863669002, u'next_clock': 3542968775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196382.449488576} mcu 'mcu': got {'#receive_time': 196383.04652878, u'next_clock': 1852621376, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196382.482747317} mcu 'mcu': got {'#receive_time': 196383.056439557, u'next_clock': 1853621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196382.482747317} mcu 'psu': got {'#receive_time': 196383.163702798, u'next_clock': 3546568775L, u'oid': 3, u'value': 16378, '#name': u'analog_in_state', '#sent_time': 196382.449488576} mcu 'mcu': got {'#receive_time': 196383.346497557, u'next_clock': 1882621376, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196382.482747317} mcu 'mcu': got {'#receive_time': 196383.356472631, u'next_clock': 1883621376, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196382.482747317} mcu 'psu': got {'#receive_time': 196383.463603483, u'next_clock': 3550168775L, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196383.434050779} mcu 'mcu': got {'#receive_time': 196383.646502038, u'next_clock': 1912621376, u'oid': 17, u'value': 22565, '#name': u'analog_in_state', '#sent_time': 196383.467333039} mcu 'mcu': got {'#receive_time': 196383.656476631, u'next_clock': 1913621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196383.467333039} mcu 'psu': got {'#receive_time': 196383.763636353, u'next_clock': 3553768775L, u'oid': 3, u'value': 16314, '#name': u'analog_in_state', '#sent_time': 196383.434050779} mcu 'mcu': got {'#receive_time': 196383.94657376, u'next_clock': 1942621376, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196383.467333039} mcu 'mcu': got {'#receive_time': 196383.956584946, u'next_clock': 1943621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196383.467333039} mcu 'psu': got {'#receive_time': 196384.063782853, u'next_clock': 3557368775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196383.434050779} mcu 'mcu': got {'#receive_time': 196384.246653575, u'next_clock': 1972621376, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196383.467333039} mcu 'mcu': got {'#receive_time': 196384.25659326, u'next_clock': 1973621376, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196383.467333039} mcu 'psu': got {'#receive_time': 196384.363706779, u'next_clock': 3560968775L, u'oid': 3, u'value': 16353, '#name': u'analog_in_state', '#sent_time': 196383.434050779} mcu 'mcu': got {'#receive_time': 196384.546585482, u'next_clock': 2002621376, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196384.451884482} mcu 'mcu': got {'#receive_time': 196384.556564519, u'next_clock': 2003621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196384.451884482} mcu 'psu': got {'#receive_time': 196384.663727204, u'next_clock': 3564568775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196384.419098649} mcu 'mcu': got {'#receive_time': 196384.846595038, u'next_clock': 2032621376, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196384.451884482} mcu 'mcu': got {'#receive_time': 196384.856581686, u'next_clock': 2033621376, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196384.451884482} mcu 'psu': got {'#receive_time': 196384.963828852, u'next_clock': 3568168775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196384.419098649} mcu 'mcu': got {'#receive_time': 196385.146657741, u'next_clock': 2062621376, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196384.451884482} mcu 'mcu': got {'#receive_time': 196385.156605019, u'next_clock': 2063621376, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196384.451884482} mcu 'psu': got {'#receive_time': 196385.263717056, u'next_clock': 3571768775L, u'oid': 3, u'value': 16394, '#name': u'analog_in_state', '#sent_time': 196384.419098649} mcu 'mcu': got {'#receive_time': 196385.446633611, u'next_clock': 2092621376, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'mcu': got {'#receive_time': 196385.456612834, u'next_clock': 2093621376, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'psu': got {'#receive_time': 196385.563680111, u'next_clock': 3575368775L, u'oid': 3, u'value': 16369, '#name': u'analog_in_state', '#sent_time': 196385.40415} mcu 'mcu': got {'#receive_time': 196385.746660019, u'next_clock': 2122621376, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'mcu': got {'#receive_time': 196385.756656963, u'next_clock': 2123621376, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'psu': got {'#receive_time': 196385.863719611, u'next_clock': 3578968775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196385.40415} mcu 'mcu': got {'#receive_time': 196386.046830222, u'next_clock': 2152621376L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'mcu': got {'#receive_time': 196386.056656555, u'next_clock': 2153621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'psu': got {'#receive_time': 196386.163701167, u'next_clock': 3582568775L, u'oid': 3, u'value': 16399, '#name': u'analog_in_state', '#sent_time': 196385.40415} mcu 'mcu': got {'#receive_time': 196386.346653741, u'next_clock': 2182621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'mcu': got {'#receive_time': 196386.35660987, u'next_clock': 2183621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196385.436092611} mcu 'psu': got {'#receive_time': 196386.463619, u'next_clock': 3586168775L, u'oid': 3, u'value': 16376, '#name': u'analog_in_state', '#sent_time': 196386.388823018} mcu 'mcu': got {'#receive_time': 196386.646731129, u'next_clock': 2212621376L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196386.420291666} mcu 'mcu': got {'#receive_time': 196386.656670166, u'next_clock': 2213621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196386.420291666} mcu 'psu': got {'#receive_time': 196386.76368637, u'next_clock': 3589768775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196386.388823018} mcu 'mcu': got {'#receive_time': 196386.946868555, u'next_clock': 2242621376L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196386.420291666} mcu 'mcu': got {'#receive_time': 196386.956690314, u'next_clock': 2243621376L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196386.420291666} mcu 'psu': got {'#receive_time': 196387.063628999, u'next_clock': 3593368775L, u'oid': 3, u'value': 16390, '#name': u'analog_in_state', '#sent_time': 196386.388823018} mcu 'mcu': got {'#receive_time': 196387.246770703, u'next_clock': 2272621376L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196386.420291666} mcu 'mcu': got {'#receive_time': 196387.258889962, u'next_clock': 2273621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196386.420291666} mcu 'psu': got {'#receive_time': 196387.363643425, u'next_clock': 3596968775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196386.388823018} mcu 'mcu': got {'#receive_time': 196387.546740795, u'next_clock': 2302621376L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196387.405485795} mcu 'mcu': got {'#receive_time': 196387.556698981, u'next_clock': 2303621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196387.405485795} mcu 'psu': got {'#receive_time': 196387.663641055, u'next_clock': 3600568775L, u'oid': 3, u'value': 16354, '#name': u'analog_in_state', '#sent_time': 196387.373062814} mcu 'mcu': got {'#receive_time': 196387.846702462, u'next_clock': 2332621376L, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196387.405485795} mcu 'mcu': got {'#receive_time': 196387.856683332, u'next_clock': 2333621376L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196387.405485795} mcu 'psu': got {'#receive_time': 196387.963780277, u'next_clock': 3604168775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196387.373062814} mcu 'mcu': got {'#receive_time': 196388.146813462, u'next_clock': 2362621376L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196387.405485795} mcu 'mcu': got {'#receive_time': 196388.156760943, u'next_clock': 2363621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196387.405485795} mcu 'psu': got {'#receive_time': 196388.263733758, u'next_clock': 3607768775L, u'oid': 3, u'value': 16376, '#name': u'analog_in_state', '#sent_time': 196387.373062814} mcu 'mcu': got {'#receive_time': 196388.446825758, u'next_clock': 2392621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'mcu': got {'#receive_time': 196388.456756313, u'next_clock': 2393621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'psu': got {'#receive_time': 196388.563606906, u'next_clock': 3611368775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196388.357441295} mcu 'mcu': got {'#receive_time': 196388.746809628, u'next_clock': 2422621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'mcu': got {'#receive_time': 196388.756753184, u'next_clock': 2423621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'psu': got {'#receive_time': 196388.863701591, u'next_clock': 3614968775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196388.357441295} mcu 'mcu': got {'#receive_time': 196389.046764683, u'next_clock': 2452621376L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'mcu': got {'#receive_time': 196389.05673672, u'next_clock': 2453621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'psu': got {'#receive_time': 196389.163581868, u'next_clock': 3618568775L, u'oid': 3, u'value': 16361, '#name': u'analog_in_state', '#sent_time': 196388.357441295} mcu 'mcu': got {'#receive_time': 196389.346761276, u'next_clock': 2482621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'mcu': got {'#receive_time': 196389.356738202, u'next_clock': 2483621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196388.389870184} mcu 'psu': got {'#receive_time': 196389.463576331, u'next_clock': 3622168775L, u'oid': 3, u'value': 16378, '#name': u'analog_in_state', '#sent_time': 196389.342377183} mcu 'mcu': got {'#receive_time': 196389.646923813, u'next_clock': 2512621376L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196389.374774887} mcu 'mcu': got {'#receive_time': 196389.656792535, u'next_clock': 2513621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196389.374774887} mcu 'psu': got {'#receive_time': 196389.763551831, u'next_clock': 3625768775L, u'oid': 3, u'value': 16384, '#name': u'analog_in_state', '#sent_time': 196389.342377183} mcu 'mcu': got {'#receive_time': 196389.946955961, u'next_clock': 2542621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196389.374774887} mcu 'mcu': got {'#receive_time': 196389.956793868, u'next_clock': 2543621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196389.374774887} mcu 'psu': got {'#receive_time': 196390.063586294, u'next_clock': 3629368775L, u'oid': 3, u'value': 16347, '#name': u'analog_in_state', '#sent_time': 196389.342377183} mcu 'mcu': got {'#receive_time': 196390.24684746, u'next_clock': 2572621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196389.374774887} mcu 'mcu': got {'#receive_time': 196390.25682522, u'next_clock': 2573621376L, u'oid': 18, u'value': 31445, '#name': u'analog_in_state', '#sent_time': 196389.374774887} mcu 'psu': got {'#receive_time': 196390.363492905, u'next_clock': 3632968775L, u'oid': 3, u'value': 16368, '#name': u'analog_in_state', '#sent_time': 196390.327082757} mcu 'mcu': got {'#receive_time': 196390.546900738, u'next_clock': 2602621376L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196390.359318886} mcu 'mcu': got {'#receive_time': 196390.556907905, u'next_clock': 2603621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196390.359318886} mcu 'psu': got {'#receive_time': 196390.663554849, u'next_clock': 3636568775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196390.327082757} mcu 'mcu': got {'#receive_time': 196390.846870404, u'next_clock': 2632621376L, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196390.359318886} mcu 'mcu': got {'#receive_time': 196390.857001497, u'next_clock': 2633621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196390.359318886} mcu 'psu': got {'#receive_time': 196390.963675275, u'next_clock': 3640168775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196390.327082757} mcu 'mcu': got {'#receive_time': 196391.146909904, u'next_clock': 2662621376L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196390.359318886} mcu 'mcu': got {'#receive_time': 196391.156873645, u'next_clock': 2663621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196390.359318886} mcu 'psu': got {'#receive_time': 196391.263523941, u'next_clock': 3643768775L, u'oid': 3, u'value': 16376, '#name': u'analog_in_state', '#sent_time': 196390.327082757} mcu 'mcu': got {'#receive_time': 196391.446934237, u'next_clock': 2692621376L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196391.343386145} mcu 'mcu': got {'#receive_time': 196391.456881478, u'next_clock': 2693621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196391.343386145} mcu 'psu': got {'#receive_time': 196391.563517015, u'next_clock': 3647368775L, u'oid': 3, u'value': 16345, '#name': u'analog_in_state', '#sent_time': 196391.312082608} mcu 'mcu': got {'#receive_time': 196391.746899997, u'next_clock': 2722621376L, u'oid': 17, u'value': 22568, '#name': u'analog_in_state', '#sent_time': 196391.343386145} mcu 'mcu': got {'#receive_time': 196391.756882145, u'next_clock': 2723621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196391.343386145} mcu 'psu': got {'#receive_time': 196391.863669385, u'next_clock': 3650968775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196391.312082608} mcu 'mcu': got {'#receive_time': 196392.046894126, u'next_clock': 2752621376L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196391.343386145} mcu 'mcu': got {'#receive_time': 196392.05691657, u'next_clock': 2753621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196391.343386145} mcu 'psu': got {'#receive_time': 196392.163503144, u'next_clock': 3654568775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196391.312082608} mcu 'mcu': got {'#receive_time': 196392.346826978, u'next_clock': 2782621376L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'mcu': got {'#receive_time': 196392.356841181, u'next_clock': 2783621376L, u'oid': 18, u'value': 31445, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'psu': got {'#receive_time': 196392.463468329, u'next_clock': 3658168775L, u'oid': 3, u'value': 16387, '#name': u'analog_in_state', '#sent_time': 196392.296833163} mcu 'mcu': got {'#receive_time': 196392.6469652, u'next_clock': 2812621376L, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'mcu': got {'#receive_time': 196392.656904311, u'next_clock': 2813621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'psu': got {'#receive_time': 196392.763495848, u'next_clock': 3661768775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196392.296833163} mcu 'mcu': got {'#receive_time': 196392.947033255, u'next_clock': 2842621376L, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'mcu': got {'#receive_time': 196392.956943366, u'next_clock': 2843621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'psu': got {'#receive_time': 196393.063480348, u'next_clock': 3665368775L, u'oid': 3, u'value': 16419, '#name': u'analog_in_state', '#sent_time': 196392.296833163} mcu 'mcu': got {'#receive_time': 196393.246964792, u'next_clock': 2872621376L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'mcu': got {'#receive_time': 196393.256934625, u'next_clock': 2873621376L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196392.328015774} mcu 'psu': got {'#receive_time': 196393.36341407, u'next_clock': 3668968775L, u'oid': 3, u'value': 16432, '#name': u'analog_in_state', '#sent_time': 196393.28131207} mcu 'mcu': got {'#receive_time': 196393.546972514, u'next_clock': 2902621376L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196393.312913033} mcu 'mcu': got {'#receive_time': 196393.556911958, u'next_clock': 2903621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196393.312913033} mcu 'psu': got {'#receive_time': 196393.663426607, u'next_clock': 3672568775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196393.28131207} mcu 'mcu': got {'#receive_time': 196393.846972736, u'next_clock': 2932621376L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196393.312913033} mcu 'mcu': got {'#receive_time': 196393.857005032, u'next_clock': 2933621376L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196393.312913033} mcu 'psu': got {'#receive_time': 196393.963394736, u'next_clock': 3676168775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196393.28131207} mcu 'mcu': got {'#receive_time': 196394.146975365, u'next_clock': 2962621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196393.312913033} mcu 'mcu': got {'#receive_time': 196394.156913736, u'next_clock': 2963621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196393.312913033} mcu 'psu': got {'#receive_time': 196394.263359236, u'next_clock': 3679768775L, u'oid': 3, u'value': 16396, '#name': u'analog_in_state', '#sent_time': 196393.28131207} mcu 'mcu': got {'#receive_time': 196394.446943791, u'next_clock': 2992621376L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196394.297741458} mcu 'mcu': got {'#receive_time': 196394.456981384, u'next_clock': 2993621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196394.297741458} mcu 'psu': got {'#receive_time': 196394.563419402, u'next_clock': 3683368775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196394.26637418} mcu 'mcu': got {'#receive_time': 196394.746958087, u'next_clock': 3022621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196394.297741458} mcu 'mcu': got {'#receive_time': 196394.756939291, u'next_clock': 3023621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196394.297741458} mcu 'psu': got {'#receive_time': 196394.863408458, u'next_clock': 3686968775L, u'oid': 3, u'value': 16358, '#name': u'analog_in_state', '#sent_time': 196394.26637418} mcu 'mcu': got {'#receive_time': 196395.046975124, u'next_clock': 3052621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196394.297741458} mcu 'mcu': got {'#receive_time': 196395.056973791, u'next_clock': 3053621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196394.297741458} mcu 'psu': got {'#receive_time': 196395.163338254, u'next_clock': 3690568775L, u'oid': 3, u'value': 16408, '#name': u'analog_in_state', '#sent_time': 196394.26637418} mcu 'mcu': got {'#receive_time': 196395.346959828, u'next_clock': 3082621376L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'mcu': got {'#receive_time': 196395.357109254, u'next_clock': 3083621376L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'psu': got {'#receive_time': 196395.463337291, u'next_clock': 3694168775L, u'oid': 3, u'value': 16383, '#name': u'analog_in_state', '#sent_time': 196395.25106218} mcu 'mcu': got {'#receive_time': 196395.646989809, u'next_clock': 3112621376L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'mcu': got {'#receive_time': 196395.65695455, u'next_clock': 3113621376L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'psu': got {'#receive_time': 196395.763340902, u'next_clock': 3697768775L, u'oid': 3, u'value': 16406, '#name': u'analog_in_state', '#sent_time': 196395.25106218} mcu 'mcu': got {'#receive_time': 196395.94698279, u'next_clock': 3142621376L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'mcu': got {'#receive_time': 196395.957008364, u'next_clock': 3143621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'psu': got {'#receive_time': 196396.06331729, u'next_clock': 3701368775L, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196395.25106218} mcu 'mcu': got {'#receive_time': 196396.247035179, u'next_clock': 3172621376L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'mcu': got {'#receive_time': 196396.257050123, u'next_clock': 3173621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196395.282795994} mcu 'psu': got {'#receive_time': 196396.363405012, u'next_clock': 3704968775L, u'oid': 3, u'value': 16349, '#name': u'analog_in_state', '#sent_time': 196396.239088994} mcu 'mcu': got {'#receive_time': 196396.547036586, u'next_clock': 3202621376L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196396.267579161} mcu 'mcu': got {'#receive_time': 196396.557035568, u'next_clock': 3203621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196396.267579161} mcu 'psu': got {'#receive_time': 196396.663312475, u'next_clock': 3708568775L, u'oid': 3, u'value': 16375, '#name': u'analog_in_state', '#sent_time': 196396.239088994} mcu 'mcu': got {'#receive_time': 196396.847119586, u'next_clock': 3232621376L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196396.267579161} mcu 'mcu': got {'#receive_time': 196396.857028419, u'next_clock': 3233621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196396.267579161} mcu 'psu': got {'#receive_time': 196396.963333568, u'next_clock': 3712168775L, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196396.239088994} mcu 'mcu': got {'#receive_time': 196397.147068438, u'next_clock': 3262621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196396.267579161} mcu 'mcu': got {'#receive_time': 196397.157085919, u'next_clock': 3263621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196396.267579161} mcu 'psu': got {'#receive_time': 196397.26329379, u'next_clock': 3715768775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196397.223558234} mcu 'mcu': got {'#receive_time': 196397.447078345, u'next_clock': 3292621376L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196397.251905308} mcu 'mcu': got {'#receive_time': 196397.457058771, u'next_clock': 3293621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196397.251905308} mcu 'psu': got {'#receive_time': 196397.563309475, u'next_clock': 3719368775L, u'oid': 3, u'value': 16388, '#name': u'analog_in_state', '#sent_time': 196397.223558234} mcu 'mcu': got {'#receive_time': 196397.7470974, u'next_clock': 3322621376L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196397.251905308} mcu 'mcu': got {'#receive_time': 196397.757167067, u'next_clock': 3323621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196397.251905308} mcu 'psu': got {'#receive_time': 196397.863282641, u'next_clock': 3722968775L, u'oid': 3, u'value': 16399, '#name': u'analog_in_state', '#sent_time': 196397.223558234} mcu 'mcu': got {'#receive_time': 196398.047100011, u'next_clock': 3352621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196397.251905308} mcu 'mcu': got {'#receive_time': 196398.057075511, u'next_clock': 3353621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196397.251905308} mcu 'psu': got {'#receive_time': 196398.163327511, u'next_clock': 3726568775L, u'oid': 3, u'value': 16382, '#name': u'analog_in_state', '#sent_time': 196397.223558234} mcu 'mcu': got {'#receive_time': 196398.347124715, u'next_clock': 3382621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196398.23687577} mcu 'mcu': got {'#receive_time': 196398.357077122, u'next_clock': 3383621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196398.23687577} mcu 'psu': got {'#receive_time': 196398.46326753, u'next_clock': 3730168775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196398.208433215} mcu 'mcu': got {'#receive_time': 196398.647105881, u'next_clock': 3412621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196398.23687577} mcu 'mcu': got {'#receive_time': 196398.657066344, u'next_clock': 3413621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196398.23687577} mcu 'psu': got {'#receive_time': 196398.763292678, u'next_clock': 3733768775L, u'oid': 3, u'value': 16405, '#name': u'analog_in_state', '#sent_time': 196398.208433215} mcu 'mcu': got {'#receive_time': 196398.947096437, u'next_clock': 3442621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196398.23687577} mcu 'mcu': got {'#receive_time': 196398.957106863, u'next_clock': 3443621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196398.23687577} mcu 'psu': got {'#receive_time': 196399.063235863, u'next_clock': 3737368775L, u'oid': 3, u'value': 16386, '#name': u'analog_in_state', '#sent_time': 196398.208433215} mcu 'mcu': got {'#receive_time': 196399.247085048, u'next_clock': 3472621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'mcu': got {'#receive_time': 196399.257086474, u'next_clock': 3473621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'psu': got {'#receive_time': 196399.363258585, u'next_clock': 3740968775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196399.193354825} mcu 'mcu': got {'#receive_time': 196399.547130436, u'next_clock': 3502621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'mcu': got {'#receive_time': 196399.557102918, u'next_clock': 3503621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'psu': got {'#receive_time': 196399.66325801, u'next_clock': 3744568775L, u'oid': 3, u'value': 16399, '#name': u'analog_in_state', '#sent_time': 196399.193354825} mcu 'mcu': got {'#receive_time': 196399.847237621, u'next_clock': 3532621376L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'mcu': got {'#receive_time': 196399.857120084, u'next_clock': 3533621376L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'psu': got {'#receive_time': 196399.963167843, u'next_clock': 3748168775L, u'oid': 3, u'value': 16393, '#name': u'analog_in_state', '#sent_time': 196399.193354825} mcu 'mcu': got {'#receive_time': 196400.147320232, u'next_clock': 3562621376L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'mcu': got {'#receive_time': 196400.157116899, u'next_clock': 3563621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196399.222236659} mcu 'psu': got {'#receive_time': 196400.263265603, u'next_clock': 3751768775L, u'oid': 3, u'value': 16415, '#name': u'analog_in_state', '#sent_time': 196400.178025343} mcu 'mcu': got {'#receive_time': 196400.447275177, u'next_clock': 3592621376L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196400.206706177} mcu 'mcu': got {'#receive_time': 196400.457144491, u'next_clock': 3593621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196400.206706177} mcu 'psu': got {'#receive_time': 196400.563159547, u'next_clock': 3755368775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196400.178025343} mcu 'mcu': got {'#receive_time': 196400.747244454, u'next_clock': 3622621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196400.206706177} mcu 'mcu': got {'#receive_time': 196400.757107602, u'next_clock': 3623621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196400.206706177} mcu 'psu': got {'#receive_time': 196400.863127769, u'next_clock': 3758968775L, u'oid': 3, u'value': 16392, '#name': u'analog_in_state', '#sent_time': 196400.178025343} mcu 'mcu': got {'#receive_time': 196401.047156213, u'next_clock': 3652621376L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196400.206706177} mcu 'mcu': got {'#receive_time': 196401.057117195, u'next_clock': 3653621376L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196400.206706177} mcu 'psu': got {'#receive_time': 196401.163106213, u'next_clock': 3762568775L, u'oid': 3, u'value': 16419, '#name': u'analog_in_state', '#sent_time': 196400.178025343} mcu 'mcu': got {'#receive_time': 196401.347169195, u'next_clock': 3682621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196401.193623898} mcu 'mcu': got {'#receive_time': 196401.357122009, u'next_clock': 3683621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196401.193623898} mcu 'psu': got {'#receive_time': 196401.463122102, u'next_clock': 3766168775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196401.163008417} mcu 'mcu': got {'#receive_time': 196401.647179805, u'next_clock': 3712621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196401.193623898} mcu 'mcu': got {'#receive_time': 196401.657116102, u'next_clock': 3713621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196401.193623898} mcu 'psu': got {'#receive_time': 196401.763169361, u'next_clock': 3769768775L, u'oid': 3, u'value': 16390, '#name': u'analog_in_state', '#sent_time': 196401.163008417} mcu 'mcu': got {'#receive_time': 196401.947183824, u'next_clock': 3742621376L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196401.193623898} mcu 'mcu': got {'#receive_time': 196401.957628435, u'next_clock': 3743621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196401.193623898} mcu 'psu': got {'#receive_time': 196402.063098305, u'next_clock': 3773368775L, u'oid': 3, u'value': 16393, '#name': u'analog_in_state', '#sent_time': 196401.163008417} mcu 'mcu': got {'#receive_time': 196402.247245675, u'next_clock': 3772621376L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'mcu': got {'#receive_time': 196402.257213601, u'next_clock': 3773621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'psu': got {'#receive_time': 196402.363119009, u'next_clock': 3776968775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196402.147125842} mcu 'mcu': got {'#receive_time': 196402.547254879, u'next_clock': 3802621376L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'mcu': got {'#receive_time': 196402.557178879, u'next_clock': 3803621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'psu': got {'#receive_time': 196402.663140842, u'next_clock': 3780568775L, u'oid': 3, u'value': 16407, '#name': u'analog_in_state', '#sent_time': 196402.147125842} mcu 'mcu': got {'#receive_time': 196402.847263916, u'next_clock': 3832621376L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'mcu': got {'#receive_time': 196402.857243601, u'next_clock': 3833621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'psu': got {'#receive_time': 196402.963107638, u'next_clock': 3784168775L, u'oid': 3, u'value': 16380, '#name': u'analog_in_state', '#sent_time': 196402.147125842} mcu 'mcu': got {'#receive_time': 196403.14731549, u'next_clock': 3862621376L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'mcu': got {'#receive_time': 196403.157277101, u'next_clock': 3863621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196402.178500361} mcu 'psu': got {'#receive_time': 196403.263080582, u'next_clock': 3787768775L, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196403.131420379} mcu 'mcu': got {'#receive_time': 196403.447260212, u'next_clock': 3892621376L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196403.162675323} mcu 'mcu': got {'#receive_time': 196403.457201656, u'next_clock': 3893621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196403.162675323} mcu 'psu': got {'#receive_time': 196403.563076841, u'next_clock': 3791368775L, u'oid': 3, u'value': 16403, '#name': u'analog_in_state', '#sent_time': 196403.131420379} mcu 'mcu': got {'#receive_time': 196403.747346286, u'next_clock': 3922621376L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196403.162675323} mcu 'mcu': got {'#receive_time': 196403.7572081, u'next_clock': 3923621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196403.162675323} mcu 'psu': got {'#receive_time': 196403.863071989, u'next_clock': 3794968775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196403.131420379} mcu 'mcu': got {'#receive_time': 196404.047305323, u'next_clock': 3952621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196403.162675323} mcu 'mcu': got {'#receive_time': 196404.057268915, u'next_clock': 3953621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196403.162675323} mcu 'psu': got {'#receive_time': 196404.163041322, u'next_clock': 3798568775L, u'oid': 3, u'value': 16401, '#name': u'analog_in_state', '#sent_time': 196404.11646536} mcu 'mcu': got {'#receive_time': 196404.347384804, u'next_clock': 3982621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196404.14726086} mcu 'mcu': got {'#receive_time': 196404.357381433, u'next_clock': 3983621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196404.14726086} mcu 'psu': got {'#receive_time': 196404.463088304, u'next_clock': 3802168775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196404.11646536} mcu 'mcu': got {'#receive_time': 196404.647400933, u'next_clock': 4012621376L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196404.14726086} mcu 'mcu': got {'#receive_time': 196404.657483878, u'next_clock': 4013621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196404.14726086} mcu 'psu': got {'#receive_time': 196404.763110989, u'next_clock': 3805768775L, u'oid': 3, u'value': 16410, '#name': u'analog_in_state', '#sent_time': 196404.11646536} mcu 'mcu': got {'#receive_time': 196404.947389063, u'next_clock': 4042621376L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196404.14726086} mcu 'mcu': got {'#receive_time': 196404.957326359, u'next_clock': 4043621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196404.14726086} mcu 'psu': got {'#receive_time': 196405.063102618, u'next_clock': 3809368775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196404.11646536} mcu 'mcu': got {'#receive_time': 196405.247432026, u'next_clock': 4072621376L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196405.131890526} mcu 'mcu': got {'#receive_time': 196405.257355359, u'next_clock': 4073621376L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196405.131890526} mcu 'psu': got {'#receive_time': 196405.363060377, u'next_clock': 3812968775L, u'oid': 3, u'value': 16377, '#name': u'analog_in_state', '#sent_time': 196405.1013556} mcu 'mcu': got {'#receive_time': 196405.547427322, u'next_clock': 4102621376L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196405.131890526} mcu 'mcu': got {'#receive_time': 196405.557341044, u'next_clock': 4103621376L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196405.131890526} mcu 'psu': got {'#receive_time': 196405.663165859, u'next_clock': 3816568775L, u'oid': 3, u'value': 16396, '#name': u'analog_in_state', '#sent_time': 196405.1013556} mcu 'mcu': got {'#receive_time': 196405.847416303, u'next_clock': 4132621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196405.131890526} mcu 'mcu': got {'#receive_time': 196405.857411155, u'next_clock': 4133621376L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196405.131890526} mcu 'psu': got {'#receive_time': 196405.963080821, u'next_clock': 3820168775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196405.1013556} mcu 'mcu': got {'#receive_time': 196406.147454877, u'next_clock': 4162621376L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'mcu': got {'#receive_time': 196406.157358969, u'next_clock': 4163621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'psu': got {'#receive_time': 196406.263082655, u'next_clock': 3823768775L, u'oid': 3, u'value': 16413, '#name': u'analog_in_state', '#sent_time': 196406.086381229} mcu 'mcu': got {'#receive_time': 196406.447346136, u'next_clock': 4192621376L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'mcu': got {'#receive_time': 196406.457328747, u'next_clock': 4193621376L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'psu': got {'#receive_time': 196406.562955136, u'next_clock': 3827368775L, u'oid': 3, u'value': 16405, '#name': u'analog_in_state', '#sent_time': 196406.086381229} mcu 'mcu': got {'#receive_time': 196406.747381136, u'next_clock': 4222621376L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'mcu': got {'#receive_time': 196406.757315265, u'next_clock': 4223621376L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'psu': got {'#receive_time': 196406.862955043, u'next_clock': 3830968775L, u'oid': 3, u'value': 16431, '#name': u'analog_in_state', '#sent_time': 196406.086381229} mcu 'mcu': got {'#receive_time': 196407.047359321, u'next_clock': 4252621376L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'mcu': got {'#receive_time': 196407.057378358, u'next_clock': 4253621376L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196406.116957877} mcu 'psu': got {'#receive_time': 196407.162967839, u'next_clock': 3834568775L, u'oid': 3, u'value': 16412, '#name': u'analog_in_state', '#sent_time': 196407.071386432} mcu 'mcu': got {'#receive_time': 196407.347362487, u'next_clock': 4282621376L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196407.101701858} mcu 'mcu': got {'#receive_time': 196407.357351302, u'next_clock': 4283621376L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196407.101701858} mcu 'psu': got {'#receive_time': 196407.462971024, u'next_clock': 3838168775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196407.071386432} mcu 'mcu': got {'#receive_time': 196407.647439691, u'next_clock': 17654080, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196407.101701858} mcu 'mcu': got {'#receive_time': 196407.657345357, u'next_clock': 18654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196407.101701858} mcu 'psu': got {'#receive_time': 196407.762974894, u'next_clock': 3841768775L, u'oid': 3, u'value': 16408, '#name': u'analog_in_state', '#sent_time': 196407.071386432} mcu 'mcu': got {'#receive_time': 196407.947392654, u'next_clock': 47654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196407.101701858} mcu 'mcu': got {'#receive_time': 196407.957373357, u'next_clock': 48654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196407.101701858} mcu 'psu': got {'#receive_time': 196408.062859394, u'next_clock': 3845368775L, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196408.05584882} mcu 'mcu': got {'#receive_time': 196408.247378413, u'next_clock': 77654080, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196408.086125024} mcu 'mcu': got {'#receive_time': 196408.257376468, u'next_clock': 78654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196408.086125024} mcu 'psu': got {'#receive_time': 196408.362906394, u'next_clock': 3848968775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196408.05584882} mcu 'mcu': got {'#receive_time': 196408.547406301, u'next_clock': 107654080, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196408.086125024} mcu 'mcu': got {'#receive_time': 196408.557385672, u'next_clock': 108654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196408.086125024} mcu 'psu': got {'#receive_time': 196408.662928709, u'next_clock': 3852568775L, u'oid': 3, u'value': 16422, '#name': u'analog_in_state', '#sent_time': 196408.05584882} mcu 'mcu': got {'#receive_time': 196408.847422005, u'next_clock': 137654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196408.086125024} mcu 'mcu': got {'#receive_time': 196408.857459394, u'next_clock': 138654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196408.086125024} mcu 'psu': got {'#receive_time': 196408.962925634, u'next_clock': 3856168775L, u'oid': 3, u'value': 16412, '#name': u'analog_in_state', '#sent_time': 196408.05584882} mcu 'mcu': got {'#receive_time': 196409.14743119, u'next_clock': 167654080, u'oid': 17, u'value': 22564, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'mcu': got {'#receive_time': 196409.157440079, u'next_clock': 168654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'psu': got {'#receive_time': 196409.262864856, u'next_clock': 3859768775L, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196409.040733783} mcu 'mcu': got {'#receive_time': 196409.447436708, u'next_clock': 197654080, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'mcu': got {'#receive_time': 196409.457398449, u'next_clock': 198654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'psu': got {'#receive_time': 196409.562857653, u'next_clock': 3863368775L, u'oid': 3, u'value': 16396, '#name': u'analog_in_state', '#sent_time': 196409.040733783} mcu 'mcu': got {'#receive_time': 196409.747440986, u'next_clock': 227654080, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'mcu': got {'#receive_time': 196409.757412301, u'next_clock': 228654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'psu': got {'#receive_time': 196409.862871912, u'next_clock': 3866968775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196409.040733783} mcu 'mcu': got {'#receive_time': 196410.047426578, u'next_clock': 257654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196409.071033227} mcu 'mcu': got {'#receive_time': 196410.057426597, u'next_clock': 258654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'psu': got {'#receive_time': 196410.162836171, u'next_clock': 3870568775L, u'oid': 3, u'value': 16390, '#name': u'analog_in_state', '#sent_time': 196410.025384115} mcu 'mcu': got {'#receive_time': 196410.347491615, u'next_clock': 287654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'mcu': got {'#receive_time': 196410.357449448, u'next_clock': 288654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'psu': got {'#receive_time': 196410.462828059, u'next_clock': 3874168775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196410.025384115} mcu 'mcu': got {'#receive_time': 196410.64754367, u'next_clock': 317654080, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'mcu': got {'#receive_time': 196410.65747067, u'next_clock': 318654080, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'psu': got {'#receive_time': 196410.76284767, u'next_clock': 3877768775L, u'oid': 3, u'value': 16383, '#name': u'analog_in_state', '#sent_time': 196410.025384115} mcu 'mcu': got {'#receive_time': 196410.947533485, u'next_clock': 347654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'mcu': got {'#receive_time': 196410.957471078, u'next_clock': 348654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196410.055651023} mcu 'psu': got {'#receive_time': 196411.062786763, u'next_clock': 3881368775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196411.00995017} mcu 'mcu': got {'#receive_time': 196411.247464022, u'next_clock': 377654080, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196411.040210541} mcu 'mcu': got {'#receive_time': 196411.257494374, u'next_clock': 378654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196411.040210541} mcu 'psu': got {'#receive_time': 196411.362902133, u'next_clock': 3884968775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196411.00995017} mcu 'mcu': got {'#receive_time': 196411.547702559, u'next_clock': 407654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196411.040210541} mcu 'mcu': got {'#receive_time': 196411.557569448, u'next_clock': 408654080, u'oid': 18, u'value': 31444, '#name': u'analog_in_state', '#sent_time': 196411.040210541} mcu 'psu': got {'#receive_time': 196411.662927151, u'next_clock': 3888568775L, u'oid': 3, u'value': 16401, '#name': u'analog_in_state', '#sent_time': 196411.00995017} mcu 'mcu': got {'#receive_time': 196411.847625151, u'next_clock': 437654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196411.040210541} mcu 'mcu': got {'#receive_time': 196411.857600633, u'next_clock': 438654080, u'oid': 18, u'value': 31443, '#name': u'analog_in_state', '#sent_time': 196411.040210541} mcu 'psu': got {'#receive_time': 196411.962894947, u'next_clock': 3892168775L, u'oid': 3, u'value': 16397, '#name': u'analog_in_state', '#sent_time': 196411.00995017} mcu 'mcu': got {'#receive_time': 196412.147595595, u'next_clock': 467654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196412.024882781} mcu 'mcu': got {'#receive_time': 196412.157601688, u'next_clock': 468654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196412.024882781} mcu 'psu': got {'#receive_time': 196412.262891225, u'next_clock': 3895768775L, u'oid': 3, u'value': 16388, '#name': u'analog_in_state', '#sent_time': 196411.994476818} mcu 'mcu': got {'#receive_time': 196412.447633429, u'next_clock': 497654080, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196412.024882781} mcu 'mcu': got {'#receive_time': 196412.457594095, u'next_clock': 498654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196412.024882781} mcu 'psu': got {'#receive_time': 196412.562955947, u'next_clock': 3899368775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196411.994476818} mcu 'mcu': got {'#receive_time': 196412.74764391, u'next_clock': 527654080, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196412.024882781} mcu 'mcu': got {'#receive_time': 196412.757618947, u'next_clock': 528654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196412.024882781} mcu 'psu': got {'#receive_time': 196412.862865151, u'next_clock': 3902968775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196411.994476818} mcu 'mcu': got {'#receive_time': 196413.047617095, u'next_clock': 557654080, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'mcu': got {'#receive_time': 196413.057618132, u'next_clock': 558654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'psu': got {'#receive_time': 196413.162834873, u'next_clock': 3906568775L, u'oid': 3, u'value': 16388, '#name': u'analog_in_state', '#sent_time': 196412.97924491} mcu 'mcu': got {'#receive_time': 196413.347681743, u'next_clock': 587654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'mcu': got {'#receive_time': 196413.357628113, u'next_clock': 588654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'psu': got {'#receive_time': 196413.462836076, u'next_clock': 3910168775L, u'oid': 3, u'value': 16403, '#name': u'analog_in_state', '#sent_time': 196412.97924491} mcu 'mcu': got {'#receive_time': 196413.647663113, u'next_clock': 617654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'mcu': got {'#receive_time': 196413.657641909, u'next_clock': 618654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'psu': got {'#receive_time': 196413.762839724, u'next_clock': 3913768775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196412.97924491} mcu 'mcu': got {'#receive_time': 196413.947666076, u'next_clock': 647654080, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'mcu': got {'#receive_time': 196413.957664428, u'next_clock': 648654080, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196413.009906243} mcu 'psu': got {'#receive_time': 196414.062728743, u'next_clock': 3917368775L, u'oid': 3, u'value': 16381, '#name': u'analog_in_state', '#sent_time': 196413.963956168} mcu 'mcu': got {'#receive_time': 196414.247712854, u'next_clock': 677654080, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196413.994543261} mcu 'mcu': got {'#receive_time': 196414.257660983, u'next_clock': 678654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196413.994543261} mcu 'psu': got {'#receive_time': 196414.362841613, u'next_clock': 3920968775L, u'oid': 3, u'value': 16416, '#name': u'analog_in_state', '#sent_time': 196413.963956168} mcu 'mcu': got {'#receive_time': 196414.547809687, u'next_clock': 707654080, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196413.994543261} mcu 'mcu': got {'#receive_time': 196414.557674261, u'next_clock': 708654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196413.994543261} mcu 'psu': got {'#receive_time': 196414.66277465, u'next_clock': 3924568775L, u'oid': 3, u'value': 16408, '#name': u'analog_in_state', '#sent_time': 196413.963956168} mcu 'mcu': got {'#receive_time': 196414.847741261, u'next_clock': 737654080, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196413.994543261} mcu 'mcu': got {'#receive_time': 196414.857713168, u'next_clock': 738654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196413.994543261} mcu 'psu': got {'#receive_time': 196414.962789038, u'next_clock': 3928168775L, u'oid': 3, u'value': 16373, '#name': u'analog_in_state', '#sent_time': 196414.948786075} mcu 'mcu': got {'#receive_time': 196415.14769702, u'next_clock': 767654080, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196414.979393705} mcu 'mcu': got {'#receive_time': 196415.157720594, u'next_clock': 768654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196414.979393705} mcu 'psu': got {'#receive_time': 196415.262782631, u'next_clock': 3931768775L, u'oid': 3, u'value': 16405, '#name': u'analog_in_state', '#sent_time': 196414.948786075} mcu 'mcu': got {'#receive_time': 196415.447746779, u'next_clock': 797654080, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196414.979393705} mcu 'mcu': got {'#receive_time': 196415.457700445, u'next_clock': 798654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196414.979393705} mcu 'psu': got {'#receive_time': 196415.562791649, u'next_clock': 3935368775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196414.948786075} mcu 'mcu': got {'#receive_time': 196415.747730538, u'next_clock': 827654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196414.979393705} mcu 'mcu': got {'#receive_time': 196415.757779223, u'next_clock': 828654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196414.979393705} mcu 'psu': got {'#receive_time': 196415.862772741, u'next_clock': 3938968775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196414.948786075} mcu 'mcu': got {'#receive_time': 196416.047762686, u'next_clock': 857654080, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'mcu': got {'#receive_time': 196416.057759001, u'next_clock': 858654080, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'psu': got {'#receive_time': 196416.162740667, u'next_clock': 3942568775L, u'oid': 3, u'value': 16417, '#name': u'analog_in_state', '#sent_time': 196415.933427519} mcu 'mcu': got {'#receive_time': 196416.347859204, u'next_clock': 887654080, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'mcu': got {'#receive_time': 196416.357858463, u'next_clock': 888654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'psu': got {'#receive_time': 196416.462708778, u'next_clock': 3946168775L, u'oid': 3, u'value': 16371, '#name': u'analog_in_state', '#sent_time': 196415.933427519} mcu 'mcu': got {'#receive_time': 196416.647770278, u'next_clock': 917654080, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'mcu': got {'#receive_time': 196416.657743074, u'next_clock': 918654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'psu': got {'#receive_time': 196416.762737482, u'next_clock': 3949768775L, u'oid': 3, u'value': 16393, '#name': u'analog_in_state', '#sent_time': 196415.933427519} mcu 'mcu': got {'#receive_time': 196416.947814222, u'next_clock': 947654080, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196415.96405589} mcu 'mcu': got {'#receive_time': 196416.957767815, u'next_clock': 948654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'psu': got {'#receive_time': 196417.062722833, u'next_clock': 3953368775L, u'oid': 3, u'value': 16385, '#name': u'analog_in_state', '#sent_time': 196416.918581278} mcu 'mcu': got {'#receive_time': 196417.247805629, u'next_clock': 977654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'mcu': got {'#receive_time': 196417.257806611, u'next_clock': 978654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'psu': got {'#receive_time': 196417.362800944, u'next_clock': 3956968775L, u'oid': 3, u'value': 16372, '#name': u'analog_in_state', '#sent_time': 196416.918581278} mcu 'mcu': got {'#receive_time': 196417.547931889, u'next_clock': 1007654080, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'mcu': got {'#receive_time': 196417.557824055, u'next_clock': 1008654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'psu': got {'#receive_time': 196417.662701611, u'next_clock': 3960568775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196416.918581278} mcu 'mcu': got {'#receive_time': 196417.847847092, u'next_clock': 1037654080, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'mcu': got {'#receive_time': 196417.857804129, u'next_clock': 1038654080, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196416.949240556} mcu 'psu': got {'#receive_time': 196417.96280237, u'next_clock': 3964168775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196417.903227333} mcu 'mcu': got {'#receive_time': 196418.147862481, u'next_clock': 1067654080, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196417.933183092} mcu 'mcu': got {'#receive_time': 196418.157835222, u'next_clock': 1068654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196417.933183092} mcu 'psu': got {'#receive_time': 196418.262683351, u'next_clock': 3967768775L, u'oid': 3, u'value': 16353, '#name': u'analog_in_state', '#sent_time': 196417.903227333} mcu 'mcu': got {'#receive_time': 196418.448000129, u'next_clock': 1097654080, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196417.933183092} mcu 'mcu': got {'#receive_time': 196418.457859777, u'next_clock': 1098654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196417.933183092} mcu 'psu': got {'#receive_time': 196418.562684499, u'next_clock': 3971368775L, u'oid': 3, u'value': 16390, '#name': u'analog_in_state', '#sent_time': 196417.903227333} mcu 'mcu': got {'#receive_time': 196418.747872573, u'next_clock': 1127654080, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196417.933183092} mcu 'mcu': got {'#receive_time': 196418.757849777, u'next_clock': 1128654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196417.933183092} mcu 'psu': got {'#receive_time': 196418.862752277, u'next_clock': 3974968775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196417.903227333} mcu 'mcu': got {'#receive_time': 196419.047799962, u'next_clock': 1157654080, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196418.917714721} mcu 'mcu': got {'#receive_time': 196419.057761332, u'next_clock': 1158654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196418.917714721} mcu 'psu': got {'#receive_time': 196419.162578554, u'next_clock': 3978568775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196418.888074036} mcu 'mcu': got {'#receive_time': 196419.347837536, u'next_clock': 1187654080, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196418.917714721} mcu 'mcu': got {'#receive_time': 196419.357795832, u'next_clock': 1188654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196418.917714721} mcu 'psu': got {'#receive_time': 196419.462799295, u'next_clock': 3982168775L, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196418.888074036} mcu 'mcu': got {'#receive_time': 196419.64780785, u'next_clock': 1217654080, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196418.917714721} mcu 'mcu': got {'#receive_time': 196419.657794795, u'next_clock': 1218654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196418.917714721} mcu 'psu': got {'#receive_time': 196419.762549795, u'next_clock': 3985768775L, u'oid': 3, u'value': 16417, '#name': u'analog_in_state', '#sent_time': 196418.888074036} mcu 'mcu': got {'#receive_time': 196419.947814535, u'next_clock': 1247654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'mcu': got {'#receive_time': 196419.957801943, u'next_clock': 1248654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'psu': got {'#receive_time': 196420.062555294, u'next_clock': 3989368775L, u'oid': 3, u'value': 16427, '#name': u'analog_in_state', '#sent_time': 196419.873143535} mcu 'mcu': got {'#receive_time': 196420.24784648, u'next_clock': 1277654080, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'mcu': got {'#receive_time': 196420.25782735, u'next_clock': 1278654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'psu': got {'#receive_time': 196420.362565202, u'next_clock': 3992968775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196419.873143535} mcu 'mcu': got {'#receive_time': 196420.547836646, u'next_clock': 1307654080, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'mcu': got {'#receive_time': 196420.557823998, u'next_clock': 1308654080, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'psu': got {'#receive_time': 196420.66252822, u'next_clock': 3996568775L, u'oid': 3, u'value': 16419, '#name': u'analog_in_state', '#sent_time': 196419.873143535} mcu 'mcu': got {'#receive_time': 196420.847851813, u'next_clock': 1337654080, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'mcu': got {'#receive_time': 196420.857815516, u'next_clock': 1338654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196419.902449258} mcu 'psu': got {'#receive_time': 196420.962544683, u'next_clock': 4000168775L, u'oid': 3, u'value': 16410, '#name': u'analog_in_state', '#sent_time': 196420.857509979} mcu 'mcu': got {'#receive_time': 196421.147868183, u'next_clock': 1367654080, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196420.886800553} mcu 'mcu': got {'#receive_time': 196421.157845053, u'next_clock': 1368654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196420.886800553} mcu 'psu': got {'#receive_time': 196421.262518479, u'next_clock': 4003768775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196420.857509979} mcu 'mcu': got {'#receive_time': 196421.447983868, u'next_clock': 1397654080, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196420.886800553} mcu 'mcu': got {'#receive_time': 196421.457862905, u'next_clock': 1398654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196420.886800553} mcu 'psu': got {'#receive_time': 196421.56252796, u'next_clock': 4007368775L, u'oid': 3, u'value': 16450, '#name': u'analog_in_state', '#sent_time': 196420.857509979} mcu 'mcu': got {'#receive_time': 196421.747899368, u'next_clock': 1427654080, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196420.886800553} mcu 'mcu': got {'#receive_time': 196421.75787846, u'next_clock': 1428654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196420.886800553} mcu 'psu': got {'#receive_time': 196421.862472405, u'next_clock': 4010968775L, u'oid': 3, u'value': 16404, '#name': u'analog_in_state', '#sent_time': 196421.842558312} mcu 'mcu': got {'#receive_time': 196422.047899478, u'next_clock': 1457654080, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196421.870835108} mcu 'mcu': got {'#receive_time': 196422.057882256, u'next_clock': 1458654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196421.870835108} mcu 'psu': got {'#receive_time': 196422.162498775, u'next_clock': 4014568775L, u'oid': 3, u'value': 16401, '#name': u'analog_in_state', '#sent_time': 196421.842558312} mcu 'mcu': got {'#receive_time': 196422.347945386, u'next_clock': 1487654080, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196421.870835108} mcu 'mcu': got {'#receive_time': 196422.357935793, u'next_clock': 1488654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196421.870835108} mcu 'psu': got {'#receive_time': 196422.4625377, u'next_clock': 4018168775L, u'oid': 3, u'value': 16391, '#name': u'analog_in_state', '#sent_time': 196421.842558312} mcu 'mcu': got {'#receive_time': 196422.647931552, u'next_clock': 1517654080, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196421.870835108} mcu 'mcu': got {'#receive_time': 196422.657922682, u'next_clock': 1518654080, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196421.870835108} mcu 'psu': got {'#receive_time': 196422.762477441, u'next_clock': 4021768775L, u'oid': 3, u'value': 16378, '#name': u'analog_in_state', '#sent_time': 196421.842558312} mcu 'mcu': got {'#receive_time': 196422.947949996, u'next_clock': 1547654080, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196422.855724256} mcu 'mcu': got {'#receive_time': 196422.957927256, u'next_clock': 1548654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196422.855724256} mcu 'psu': got {'#receive_time': 196423.062487811, u'next_clock': 4025368775L, u'oid': 3, u'value': 16397, '#name': u'analog_in_state', '#sent_time': 196422.827400237} mcu 'mcu': got {'#receive_time': 196423.247955126, u'next_clock': 1577654080, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196422.855724256} mcu 'mcu': got {'#receive_time': 196423.257933293, u'next_clock': 1578654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196422.855724256} mcu 'psu': got {'#receive_time': 196423.362564274, u'next_clock': 4028968775L, u'oid': 3, u'value': 16333, '#name': u'analog_in_state', '#sent_time': 196422.827400237} mcu 'mcu': got {'#receive_time': 196423.547958163, u'next_clock': 1607654080, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196422.855724256} mcu 'mcu': got {'#receive_time': 196423.557946478, u'next_clock': 1608654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196422.855724256} mcu 'psu': got {'#receive_time': 196423.66244357, u'next_clock': 4032568775L, u'oid': 3, u'value': 16352, '#name': u'analog_in_state', '#sent_time': 196422.827400237} mcu 'mcu': got {'#receive_time': 196423.847936255, u'next_clock': 1637654080, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'mcu': got {'#receive_time': 196423.859735848, u'next_clock': 1638654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'psu': got {'#receive_time': 196423.962581051, u'next_clock': 4036168775L, u'oid': 3, u'value': 16448, '#name': u'analog_in_state', '#sent_time': 196423.811808089} mcu 'mcu': got {'#receive_time': 196424.14797994, u'next_clock': 1667654080, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'mcu': got {'#receive_time': 196424.157963866, u'next_clock': 1668654080, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'psu': got {'#receive_time': 196424.262422422, u'next_clock': 4039768775L, u'oid': 3, u'value': 16380, '#name': u'analog_in_state', '#sent_time': 196423.811808089} mcu 'mcu': got {'#receive_time': 196424.448018366, u'next_clock': 1697654080, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'mcu': got {'#receive_time': 196424.45796844, u'next_clock': 1698654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'psu': got {'#receive_time': 196424.562416644, u'next_clock': 4043368775L, u'oid': 3, u'value': 16397, '#name': u'analog_in_state', '#sent_time': 196423.811808089} mcu 'mcu': got {'#receive_time': 196424.748009569, u'next_clock': 1727654080, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'mcu': got {'#receive_time': 196424.757996255, u'next_clock': 1728654080, u'oid': 18, u'value': 31445, '#name': u'analog_in_state', '#sent_time': 196423.840067589} mcu 'psu': got {'#receive_time': 196424.862397773, u'next_clock': 4046968775L, u'oid': 3, u'value': 16393, '#name': u'analog_in_state', '#sent_time': 196424.795858736} mcu 'mcu': got {'#receive_time': 196425.04801544, u'next_clock': 1757654080, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196424.824114866} mcu 'mcu': got {'#receive_time': 196425.058019514, u'next_clock': 1758654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196424.824114866} mcu 'psu': got {'#receive_time': 196425.162408884, u'next_clock': 4050568775L, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196424.795858736} mcu 'mcu': got {'#receive_time': 196425.348108921, u'next_clock': 1787654080, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196424.824114866} mcu 'mcu': got {'#receive_time': 196425.358058902, u'next_clock': 1788654080, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196424.824114866} mcu 'psu': got {'#receive_time': 196425.462372088, u'next_clock': 4054168775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196424.795858736} mcu 'mcu': got {'#receive_time': 196425.648034013, u'next_clock': 1817654080, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196424.824114866} mcu 'mcu': got {'#receive_time': 196425.65800718, u'next_clock': 1818654080, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196424.824114866} mcu 'psu': got {'#receive_time': 196425.762402773, u'next_clock': 4057768775L, u'oid': 3, u'value': 16385, '#name': u'analog_in_state', '#sent_time': 196424.795858736} mcu 'mcu': got {'#receive_time': 196425.948049495, u'next_clock': 1847654080, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196425.808909773} mcu 'mcu': got {'#receive_time': 196425.958050235, u'next_clock': 1848654080, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196425.808909773} mcu 'psu': got {'#receive_time': 196426.062392828, u'next_clock': 4061368775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196425.780637754} mcu 'mcu': got {'#receive_time': 196426.24804968, u'next_clock': 1877654080, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196425.808909773} mcu 'mcu': got {'#receive_time': 196426.258017032, u'next_clock': 1878654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196425.808909773} mcu 'psu': got {'#receive_time': 196426.362507717, u'next_clock': 4064968775L, u'oid': 3, u'value': 16401, '#name': u'analog_in_state', '#sent_time': 196425.780637754} mcu 'mcu': got {'#receive_time': 196426.548016161, u'next_clock': 1907654080, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196425.808909773} mcu 'mcu': got {'#receive_time': 196426.558037902, u'next_clock': 1908654080, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196425.808909773} mcu 'psu': got {'#receive_time': 196426.663445605, u'next_clock': 4068568775L, u'oid': 3, u'value': 16387, '#name': u'analog_in_state', '#sent_time': 196425.780637754} mcu 'mcu': got {'#receive_time': 196426.848042753, u'next_clock': 1937654080, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'mcu': got {'#receive_time': 196426.858049161, u'next_clock': 1938654080, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'psu': got {'#receive_time': 196426.962355476, u'next_clock': 4072168775L, u'oid': 3, u'value': 16410, '#name': u'analog_in_state', '#sent_time': 196426.764939253} mcu 'mcu': got {'#receive_time': 196427.148087309, u'next_clock': 1967654080, u'oid': 17, u'value': 22597, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'mcu': got {'#receive_time': 196427.158056401, u'next_clock': 1968654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'psu': got {'#receive_time': 196427.262337531, u'next_clock': 4075768775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196426.764939253} mcu 'mcu': got {'#receive_time': 196427.448102216, u'next_clock': 1997654080, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'mcu': got {'#receive_time': 196427.458104697, u'next_clock': 1998654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'psu': got {'#receive_time': 196427.562333383, u'next_clock': 4079368775L, u'oid': 3, u'value': 16374, '#name': u'analog_in_state', '#sent_time': 196426.764939253} mcu 'mcu': got {'#receive_time': 196427.748163808, u'next_clock': 2027654080, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'mcu': got {'#receive_time': 196427.758145068, u'next_clock': 2028654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196426.793221828} mcu 'psu': got {'#receive_time': 196427.862310771, u'next_clock': 4082968775L, u'oid': 3, u'value': 16378, '#name': u'analog_in_state', '#sent_time': 196427.749775234} mcu 'mcu': got {'#receive_time': 196428.048119771, u'next_clock': 2057654080, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196427.778068716} mcu 'mcu': got {'#receive_time': 196428.05809916, u'next_clock': 2058654080, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196427.778068716} mcu 'psu': got {'#receive_time': 196428.162348271, u'next_clock': 4086568775L, u'oid': 3, u'value': 16416, '#name': u'analog_in_state', '#sent_time': 196427.749775234} mcu 'mcu': got {'#receive_time': 196428.348175271, u'next_clock': 2087654080, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196427.778068716} mcu 'mcu': got {'#receive_time': 196428.358175215, u'next_clock': 2088654080, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196427.778068716} mcu 'psu': got {'#receive_time': 196428.462304086, u'next_clock': 4090168775L, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196427.749775234} mcu 'mcu': got {'#receive_time': 196428.648147826, u'next_clock': 2117654080, u'oid': 17, u'value': 22597, '#name': u'analog_in_state', '#sent_time': 196427.778068716} mcu 'mcu': got {'#receive_time': 196428.658117604, u'next_clock': 2118654080, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196427.778068716} mcu 'psu': got {'#receive_time': 196428.762293178, u'next_clock': 4093768775L, u'oid': 3, u'value': 16410, '#name': u'analog_in_state', '#sent_time': 196428.734054456} mcu 'mcu': got {'#receive_time': 196428.948168363, u'next_clock': 2147654080L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196428.762317252} mcu 'mcu': got {'#receive_time': 196428.958172085, u'next_clock': 2148654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196428.762317252} mcu 'psu': got {'#receive_time': 196429.062403937, u'next_clock': 4097368775L, u'oid': 3, u'value': 16380, '#name': u'analog_in_state', '#sent_time': 196428.734054456} mcu 'mcu': got {'#receive_time': 196429.248263733, u'next_clock': 2177654080L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196428.762317252} mcu 'mcu': got {'#receive_time': 196429.258227604, u'next_clock': 2178654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196428.762317252} mcu 'psu': got {'#receive_time': 196429.362526696, u'next_clock': 4100968775L, u'oid': 3, u'value': 16414, '#name': u'analog_in_state', '#sent_time': 196428.734054456} mcu 'mcu': got {'#receive_time': 196429.548292752, u'next_clock': 2207654080L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196428.762317252} mcu 'mcu': got {'#receive_time': 196429.558259659, u'next_clock': 2208654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196428.762317252} mcu 'psu': got {'#receive_time': 196429.662363363, u'next_clock': 4104568775L, u'oid': 3, u'value': 16389, '#name': u'analog_in_state', '#sent_time': 196428.734054456} mcu 'mcu': got {'#receive_time': 196429.848290326, u'next_clock': 2237654080L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196429.747047066} mcu 'mcu': got {'#receive_time': 196429.85825827, u'next_clock': 2238654080L, u'oid': 18, u'value': 31443, '#name': u'analog_in_state', '#sent_time': 196429.747047066} mcu 'psu': got {'#receive_time': 196429.962363474, u'next_clock': 4108168775L, u'oid': 3, u'value': 16396, '#name': u'analog_in_state', '#sent_time': 196429.718574011} mcu 'mcu': got {'#receive_time': 196430.148263455, u'next_clock': 2267654080L, u'oid': 17, u'value': 22595, '#name': u'analog_in_state', '#sent_time': 196429.747047066} mcu 'mcu': got {'#receive_time': 196430.158240196, u'next_clock': 2268654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196429.747047066} mcu 'psu': got {'#receive_time': 196430.262433437, u'next_clock': 4111768775L, u'oid': 3, u'value': 16441, '#name': u'analog_in_state', '#sent_time': 196429.718574011} mcu 'mcu': got {'#receive_time': 196430.448307159, u'next_clock': 2297654080L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196429.747047066} mcu 'mcu': got {'#receive_time': 196430.458254288, u'next_clock': 2298654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196429.747047066} mcu 'psu': got {'#receive_time': 196430.562356992, u'next_clock': 4115368775L, u'oid': 3, u'value': 16404, '#name': u'analog_in_state', '#sent_time': 196429.718574011} mcu 'mcu': got {'#receive_time': 196430.748261621, u'next_clock': 2327654080L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'mcu': got {'#receive_time': 196430.75829951, u'next_clock': 2328654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'psu': got {'#receive_time': 196430.86231877, u'next_clock': 4118968775L, u'oid': 3, u'value': 16362, '#name': u'analog_in_state', '#sent_time': 196430.702993862} mcu 'mcu': got {'#receive_time': 196431.048338806, u'next_clock': 2357654080L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'mcu': got {'#receive_time': 196431.058282769, u'next_clock': 2358654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'psu': got {'#receive_time': 196431.162323047, u'next_clock': 4122568775L, u'oid': 3, u'value': 16355, '#name': u'analog_in_state', '#sent_time': 196430.702993862} mcu 'mcu': got {'#receive_time': 196431.348437917, u'next_clock': 2387654080L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'mcu': got {'#receive_time': 196431.358307843, u'next_clock': 2388654080L, u'oid': 18, u'value': 31453, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'psu': got {'#receive_time': 196431.46228651, u'next_clock': 4126168775L, u'oid': 3, u'value': 16414, '#name': u'analog_in_state', '#sent_time': 196430.702993862} mcu 'mcu': got {'#receive_time': 196431.64836438, u'next_clock': 2417654080L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'mcu': got {'#receive_time': 196431.658274565, u'next_clock': 2418654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196430.731690807} mcu 'psu': got {'#receive_time': 196431.762314454, u'next_clock': 4129768775L, u'oid': 3, u'value': 16430, '#name': u'analog_in_state', '#sent_time': 196431.687972454} mcu 'mcu': got {'#receive_time': 196431.948342028, u'next_clock': 2447654080L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196431.715698602} mcu 'mcu': got {'#receive_time': 196431.958342973, u'next_clock': 2448654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196431.715698602} mcu 'psu': got {'#receive_time': 196432.062335065, u'next_clock': 4133368775L, u'oid': 3, u'value': 16404, '#name': u'analog_in_state', '#sent_time': 196431.687972454} mcu 'mcu': got {'#receive_time': 196432.248526158, u'next_clock': 2477654080L, u'oid': 17, u'value': 22594, '#name': u'analog_in_state', '#sent_time': 196431.715698602} mcu 'mcu': got {'#receive_time': 196432.258379528, u'next_clock': 2478654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196431.715698602} mcu 'psu': got {'#receive_time': 196432.36236688, u'next_clock': 4136968775L, u'oid': 3, u'value': 16423, '#name': u'analog_in_state', '#sent_time': 196431.687972454} mcu 'mcu': got {'#receive_time': 196432.54836162, u'next_clock': 2507654080L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196431.715698602} mcu 'mcu': got {'#receive_time': 196432.558342157, u'next_clock': 2508654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196431.715698602} mcu 'psu': got {'#receive_time': 196432.662277676, u'next_clock': 4140568775L, u'oid': 3, u'value': 16420, '#name': u'analog_in_state', '#sent_time': 196431.687972454} mcu 'mcu': got {'#receive_time': 196432.848403657, u'next_clock': 2537654080L, u'oid': 17, u'value': 22596, '#name': u'analog_in_state', '#sent_time': 196432.700310954} mcu 'mcu': got {'#receive_time': 196432.858366231, u'next_clock': 2538654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196432.700310954} mcu 'psu': got {'#receive_time': 196432.962275009, u'next_clock': 4144168775L, u'oid': 3, u'value': 16413, '#name': u'analog_in_state', '#sent_time': 196432.672824305} mcu 'mcu': got {'#receive_time': 196433.14843099, u'next_clock': 2567654080L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196432.700310954} mcu 'mcu': got {'#receive_time': 196433.158450435, u'next_clock': 2568654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196432.700310954} mcu 'psu': got {'#receive_time': 196433.262234379, u'next_clock': 4147768775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196432.672824305} mcu 'mcu': got {'#receive_time': 196433.448394972, u'next_clock': 2597654080L, u'oid': 17, u'value': 22593, '#name': u'analog_in_state', '#sent_time': 196432.700310954} mcu 'mcu': got {'#receive_time': 196433.458367657, u'next_clock': 2598654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196432.700310954} mcu 'psu': got {'#receive_time': 196433.562239675, u'next_clock': 4151368775L, u'oid': 3, u'value': 16412, '#name': u'analog_in_state', '#sent_time': 196432.672824305} mcu 'mcu': got {'#receive_time': 196433.74843262, u'next_clock': 2627654080L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'mcu': got {'#receive_time': 196433.758381564, u'next_clock': 2628654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'psu': got {'#receive_time': 196433.86226899, u'next_clock': 4154968775L, u'oid': 3, u'value': 16433, '#name': u'analog_in_state', '#sent_time': 196433.657295972} mcu 'mcu': got {'#receive_time': 196434.048396953, u'next_clock': 2657654080L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'mcu': got {'#receive_time': 196434.058356286, u'next_clock': 2658654080L, u'oid': 18, u'value': 31445, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'psu': got {'#receive_time': 196434.162212045, u'next_clock': 4158568775L, u'oid': 3, u'value': 16394, '#name': u'analog_in_state', '#sent_time': 196433.657295972} mcu 'mcu': got {'#receive_time': 196434.348432119, u'next_clock': 2687654080L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'mcu': got {'#receive_time': 196434.358433434, u'next_clock': 2688654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'psu': got {'#receive_time': 196434.462224656, u'next_clock': 4162168775L, u'oid': 3, u'value': 16432, '#name': u'analog_in_state', '#sent_time': 196433.657295972} mcu 'mcu': got {'#receive_time': 196434.648386378, u'next_clock': 2717654080L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'mcu': got {'#receive_time': 196434.658409434, u'next_clock': 2718654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196433.684834379} mcu 'psu': got {'#receive_time': 196434.762156897, u'next_clock': 4165768775L, u'oid': 3, u'value': 16394, '#name': u'analog_in_state', '#sent_time': 196434.642008397} mcu 'mcu': got {'#receive_time': 196434.948494674, u'next_clock': 2747654080L, u'oid': 17, u'value': 22592, '#name': u'analog_in_state', '#sent_time': 196434.669480638} mcu 'mcu': got {'#receive_time': 196434.958443915, u'next_clock': 2748654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196434.669480638} mcu 'psu': got {'#receive_time': 196435.062170397, u'next_clock': 4169368775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196434.642008397} mcu 'mcu': got {'#receive_time': 196435.248568452, u'next_clock': 2777654080L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196434.669480638} mcu 'mcu': got {'#receive_time': 196435.258432545, u'next_clock': 2778654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196434.669480638} mcu 'psu': got {'#receive_time': 196435.36218723, u'next_clock': 4172968775L, u'oid': 3, u'value': 16431, '#name': u'analog_in_state', '#sent_time': 196434.642008397} mcu 'mcu': got {'#receive_time': 196435.548480822, u'next_clock': 2807654080L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196434.669480638} mcu 'mcu': got {'#receive_time': 196435.558473433, u'next_clock': 2808654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196434.669480638} mcu 'psu': got {'#receive_time': 196435.662120989, u'next_clock': 4176568775L, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196435.626838044} mcu 'mcu': got {'#receive_time': 196435.848495174, u'next_clock': 2837654080L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196435.654334174} mcu 'mcu': got {'#receive_time': 196435.858457859, u'next_clock': 2838654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196435.654334174} mcu 'psu': got {'#receive_time': 196435.962179026, u'next_clock': 4180168775L, u'oid': 3, u'value': 16397, '#name': u'analog_in_state', '#sent_time': 196435.626838044} mcu 'mcu': got {'#receive_time': 196436.148485174, u'next_clock': 2867654080L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196435.654334174} mcu 'mcu': got {'#receive_time': 196436.158490785, u'next_clock': 2868654080L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196435.654334174} mcu 'psu': got {'#receive_time': 196436.262137896, u'next_clock': 4183768775L, u'oid': 3, u'value': 16435, '#name': u'analog_in_state', '#sent_time': 196435.626838044} mcu 'mcu': got {'#receive_time': 196436.448487266, u'next_clock': 2897654080L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196435.654334174} mcu 'mcu': got {'#receive_time': 196436.458448155, u'next_clock': 2898654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196435.654334174} mcu 'psu': got {'#receive_time': 196436.562142748, u'next_clock': 4187368775L, u'oid': 3, u'value': 16412, '#name': u'analog_in_state', '#sent_time': 196435.626838044} mcu 'mcu': got {'#receive_time': 196436.74857084, u'next_clock': 2927654080L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196436.638562062} mcu 'mcu': got {'#receive_time': 196436.758548488, u'next_clock': 2928654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196436.638562062} mcu 'psu': got {'#receive_time': 196436.862166062, u'next_clock': 4190968775L, u'oid': 3, u'value': 16399, '#name': u'analog_in_state', '#sent_time': 196436.61108284} mcu 'mcu': got {'#receive_time': 196437.048551395, u'next_clock': 2957654080L, u'oid': 17, u'value': 22591, '#name': u'analog_in_state', '#sent_time': 196436.638562062} mcu 'mcu': got {'#receive_time': 196437.058546803, u'next_clock': 2958654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196436.638562062} mcu 'psu': got {'#receive_time': 196437.162258914, u'next_clock': 4194568775L, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196436.61108284} mcu 'mcu': got {'#receive_time': 196437.34854758, u'next_clock': 2987654080L, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196436.638562062} mcu 'mcu': got {'#receive_time': 196437.358595636, u'next_clock': 2988654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196436.638562062} mcu 'psu': got {'#receive_time': 196437.462111173, u'next_clock': 4198168775L, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196436.61108284} mcu 'mcu': got {'#receive_time': 196437.648550247, u'next_clock': 3017654080L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'mcu': got {'#receive_time': 196437.658514228, u'next_clock': 3018654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'psu': got {'#receive_time': 196437.762093284, u'next_clock': 4201768775L, u'oid': 3, u'value': 16388, '#name': u'analog_in_state', '#sent_time': 196437.595597025} mcu 'mcu': got {'#receive_time': 196437.948606654, u'next_clock': 3047654080L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'mcu': got {'#receive_time': 196437.958569469, u'next_clock': 3048654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'psu': got {'#receive_time': 196438.062121839, u'next_clock': 4205368775L, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196437.595597025} mcu 'mcu': got {'#receive_time': 196438.248685024, u'next_clock': 3077654080L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'mcu': got {'#receive_time': 196438.258567635, u'next_clock': 3078654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'psu': got {'#receive_time': 196438.362133172, u'next_clock': 4208968775L, u'oid': 3, u'value': 16430, '#name': u'analog_in_state', '#sent_time': 196437.595597025} mcu 'mcu': got {'#receive_time': 196438.54860045, u'next_clock': 3107654080L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'mcu': got {'#receive_time': 196438.558563691, u'next_clock': 3108654080L, u'oid': 18, u'value': 31446, '#name': u'analog_in_state', '#sent_time': 196437.623715747} mcu 'psu': got {'#receive_time': 196438.662083024, u'next_clock': 4212568775L, u'oid': 3, u'value': 16415, '#name': u'analog_in_state', '#sent_time': 196438.579793913} mcu 'mcu': got {'#receive_time': 196438.848587839, u'next_clock': 3137654080L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196438.608244506} mcu 'mcu': got {'#receive_time': 196438.858627302, u'next_clock': 3138654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196438.608244506} mcu 'psu': got {'#receive_time': 196438.962062339, u'next_clock': 4216168775L, u'oid': 3, u'value': 16419, '#name': u'analog_in_state', '#sent_time': 196438.579793913} mcu 'mcu': got {'#receive_time': 196439.148548191, u'next_clock': 3167654080L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196438.608244506} mcu 'mcu': got {'#receive_time': 196439.158528135, u'next_clock': 3168654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196438.608244506} mcu 'psu': got {'#receive_time': 196439.261967153, u'next_clock': 4219768775L, u'oid': 3, u'value': 16448, '#name': u'analog_in_state', '#sent_time': 196438.579793913} mcu 'mcu': got {'#receive_time': 196439.448543227, u'next_clock': 3197654080L, u'oid': 17, u'value': 22586, '#name': u'analog_in_state', '#sent_time': 196438.608244506} mcu 'mcu': got {'#receive_time': 196439.45851719, u'next_clock': 3198654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196438.608244506} mcu 'psu': got {'#receive_time': 196439.561977394, u'next_clock': 4223368775L, u'oid': 3, u'value': 16404, '#name': u'analog_in_state', '#sent_time': 196438.579793913} mcu 'mcu': got {'#receive_time': 196439.748518023, u'next_clock': 3227654080L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196439.592662524} mcu 'mcu': got {'#receive_time': 196439.758519894, u'next_clock': 3228654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196439.592662524} mcu 'psu': got {'#receive_time': 196439.861943375, u'next_clock': 4226968775L, u'oid': 3, u'value': 16408, '#name': u'analog_in_state', '#sent_time': 196439.564414746} mcu 'mcu': got {'#receive_time': 196440.048536912, u'next_clock': 3257654080L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196439.592662524} mcu 'mcu': got {'#receive_time': 196440.058523986, u'next_clock': 3258654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196439.592662524} mcu 'psu': got {'#receive_time': 196440.161943079, u'next_clock': 4230568775L, u'oid': 3, u'value': 16401, '#name': u'analog_in_state', '#sent_time': 196439.564414746} mcu 'mcu': got {'#receive_time': 196440.348549597, u'next_clock': 3287654080L, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196439.592662524} mcu 'mcu': got {'#receive_time': 196440.358566042, u'next_clock': 3288654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196439.592662524} mcu 'psu': got {'#receive_time': 196440.462001023, u'next_clock': 4234168775L, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196439.564414746} mcu 'mcu': got {'#receive_time': 196440.648536838, u'next_clock': 3317654080L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'mcu': got {'#receive_time': 196440.658527653, u'next_clock': 3318654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'psu': got {'#receive_time': 196440.76193843, u'next_clock': 4237768775L, u'oid': 3, u'value': 16406, '#name': u'analog_in_state', '#sent_time': 196440.548673264} mcu 'mcu': got {'#receive_time': 196440.948587652, u'next_clock': 3347654080L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'mcu': got {'#receive_time': 196440.958556819, u'next_clock': 3348654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'psu': got {'#receive_time': 196441.061909393, u'next_clock': 4241368775L, u'oid': 3, u'value': 16425, '#name': u'analog_in_state', '#sent_time': 196440.548673264} mcu 'mcu': got {'#receive_time': 196441.248573282, u'next_clock': 3377654080L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'mcu': got {'#receive_time': 196441.258571856, u'next_clock': 3378654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'psu': got {'#receive_time': 196441.361902652, u'next_clock': 4244968775L, u'oid': 3, u'value': 16399, '#name': u'analog_in_state', '#sent_time': 196440.548673264} mcu 'mcu': got {'#receive_time': 196441.548571671, u'next_clock': 3407654080L, u'oid': 17, u'value': 22589, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'mcu': got {'#receive_time': 196441.558582226, u'next_clock': 3408654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196440.576944264} mcu 'psu': got {'#receive_time': 196441.661889374, u'next_clock': 4248568775L, u'oid': 3, u'value': 16392, '#name': u'analog_in_state', '#sent_time': 196441.533596059} mcu 'mcu': got {'#receive_time': 196441.848597448, u'next_clock': 3437654080L, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196441.56185843} mcu 'mcu': got {'#receive_time': 196441.8585738, u'next_clock': 3438654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196441.56185843} mcu 'psu': got {'#receive_time': 196441.961880133, u'next_clock': 4252168775L, u'oid': 3, u'value': 16440, '#name': u'analog_in_state', '#sent_time': 196441.533596059} mcu 'mcu': got {'#receive_time': 196442.148655726, u'next_clock': 3467654080L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196441.56185843} mcu 'mcu': got {'#receive_time': 196442.158600133, u'next_clock': 3468654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196441.56185843} mcu 'psu': got {'#receive_time': 196442.261857337, u'next_clock': 4255768775L, u'oid': 3, u'value': 16392, '#name': u'analog_in_state', '#sent_time': 196441.533596059} mcu 'mcu': got {'#receive_time': 196442.448644374, u'next_clock': 3497654080L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196441.56185843} mcu 'mcu': got {'#receive_time': 196442.458606503, u'next_clock': 3498654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196441.56185843} mcu 'psu': got {'#receive_time': 196442.56183554, u'next_clock': 4259368775L, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196442.517886781} mcu 'mcu': got {'#receive_time': 196442.748630948, u'next_clock': 3527654080L, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196442.546123763} mcu 'mcu': got {'#receive_time': 196442.758612948, u'next_clock': 3528654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196442.546123763} mcu 'psu': got {'#receive_time': 196442.861869262, u'next_clock': 4262968775L, u'oid': 3, u'value': 16376, '#name': u'analog_in_state', '#sent_time': 196442.517886781} mcu 'mcu': got {'#receive_time': 196443.048709096, u'next_clock': 3557654080L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196442.546123763} mcu 'mcu': got {'#receive_time': 196443.058638392, u'next_clock': 3558654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196442.546123763} mcu 'psu': got {'#receive_time': 196443.161846484, u'next_clock': 4266568775L, u'oid': 3, u'value': 16397, '#name': u'analog_in_state', '#sent_time': 196442.517886781} mcu 'mcu': got {'#receive_time': 196443.348658744, u'next_clock': 3587654080L, u'oid': 17, u'value': 22588, '#name': u'analog_in_state', '#sent_time': 196442.546123763} mcu 'mcu': got {'#receive_time': 196443.358650503, u'next_clock': 3588654080L, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196442.546123763} mcu 'psu': got {'#receive_time': 196443.461851706, u'next_clock': 4270168775L, u'oid': 3, u'value': 16408, '#name': u'analog_in_state', '#sent_time': 196442.517886781} mcu 'mcu': got {'#receive_time': 196443.648674336, u'next_clock': 3617654080L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196443.531098521} mcu 'mcu': got {'#receive_time': 196443.658646929, u'next_clock': 3618654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196443.531098521} mcu 'psu': got {'#receive_time': 196443.76183328, u'next_clock': 4273768775L, u'oid': 3, u'value': 16414, '#name': u'analog_in_state', '#sent_time': 196443.502438447} mcu 'mcu': got {'#receive_time': 196443.948806151, u'next_clock': 3647654080L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196443.531098521} mcu 'mcu': got {'#receive_time': 196443.959577706, u'next_clock': 3648654080L, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196443.531098521} mcu 'psu': got {'#receive_time': 196444.061940391, u'next_clock': 4277368775L, u'oid': 3, u'value': 16415, '#name': u'analog_in_state', '#sent_time': 196443.502438447} mcu 'mcu': got {'#receive_time': 196444.248755206, u'next_clock': 3677654080L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196443.531098521} mcu 'mcu': got {'#receive_time': 196444.258736836, u'next_clock': 3678654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196443.531098521} mcu 'psu': got {'#receive_time': 196444.361880484, u'next_clock': 4280968775L, u'oid': 3, u'value': 16370, '#name': u'analog_in_state', '#sent_time': 196443.502438447} mcu 'mcu': got {'#receive_time': 196444.548743539, u'next_clock': 3707654080L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'mcu': got {'#receive_time': 196444.558769817, u'next_clock': 3708654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'psu': got {'#receive_time': 196444.661889632, u'next_clock': 4284568775L, u'oid': 3, u'value': 16436, '#name': u'analog_in_state', '#sent_time': 196444.487125613} mcu 'mcu': got {'#receive_time': 196444.848829632, u'next_clock': 3737654080L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'mcu': got {'#receive_time': 196444.85877678, u'next_clock': 3738654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'psu': got {'#receive_time': 196444.961881594, u'next_clock': 4288168775L, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196444.487125613} mcu 'mcu': got {'#receive_time': 196445.148799594, u'next_clock': 3767654080L, u'oid': 17, u'value': 22585, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'mcu': got {'#receive_time': 196445.158792428, u'next_clock': 3768654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'psu': got {'#receive_time': 196445.261833668, u'next_clock': 4291768775L, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196444.487125613} mcu 'mcu': got {'#receive_time': 196445.448823335, u'next_clock': 3797654080L, u'oid': 17, u'value': 22576, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'mcu': got {'#receive_time': 196445.458771798, u'next_clock': 3798654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196444.516066984} mcu 'psu': got {'#receive_time': 196445.561851502, u'next_clock': 401479, u'oid': 3, u'value': 16406, '#name': u'analog_in_state', '#sent_time': 196445.472242168} mcu 'mcu': got {'#receive_time': 196445.748880094, u'next_clock': 3827654080L, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196445.500515631} mcu 'mcu': got {'#receive_time': 196445.758829464, u'next_clock': 3828654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196445.500515631} mcu 'psu': got {'#receive_time': 196445.86185139, u'next_clock': 4001479, u'oid': 3, u'value': 16425, '#name': u'analog_in_state', '#sent_time': 196445.472242168} mcu 'mcu': got {'#receive_time': 196446.04900839, u'next_clock': 3857654080L, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196445.500515631} mcu 'mcu': got {'#receive_time': 196446.05886776, u'next_clock': 3858654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196445.500515631} mcu 'psu': got {'#receive_time': 196446.161810834, u'next_clock': 7601479, u'oid': 3, u'value': 16414, '#name': u'analog_in_state', '#sent_time': 196445.472242168} mcu 'mcu': got {'#receive_time': 196446.348874057, u'next_clock': 3887654080L, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196445.500515631} mcu 'mcu': got {'#receive_time': 196446.35884452, u'next_clock': 3888654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196445.500515631} mcu 'psu': got {'#receive_time': 196446.461750575, u'next_clock': 11201479, u'oid': 3, u'value': 16409, '#name': u'analog_in_state', '#sent_time': 196446.456591557} mcu 'mcu': got {'#receive_time': 196446.648871279, u'next_clock': 3917654080L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196446.48497976} mcu 'mcu': got {'#receive_time': 196446.658836445, u'next_clock': 3918654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196446.48497976} mcu 'psu': got {'#receive_time': 196446.761857538, u'next_clock': 14801479, u'oid': 3, u'value': 16399, '#name': u'analog_in_state', '#sent_time': 196446.456591557} mcu 'mcu': got {'#receive_time': 196446.948896315, u'next_clock': 3947654080L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196446.48497976} mcu 'mcu': got {'#receive_time': 196446.95890189, u'next_clock': 3948654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196446.48497976} mcu 'psu': got {'#receive_time': 196447.061911834, u'next_clock': 18401479, u'oid': 3, u'value': 16430, '#name': u'analog_in_state', '#sent_time': 196446.456591557} mcu 'mcu': got {'#receive_time': 196447.248902908, u'next_clock': 3977654080L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196446.48497976} mcu 'mcu': got {'#receive_time': 196447.258873297, u'next_clock': 3978654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196446.48497976} mcu 'psu': got {'#receive_time': 196447.361846686, u'next_clock': 22001479, u'oid': 3, u'value': 16404, '#name': u'analog_in_state', '#sent_time': 196446.456591557} mcu 'mcu': got {'#receive_time': 196447.548856204, u'next_clock': 4007654080L, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'mcu': got {'#receive_time': 196447.558848148, u'next_clock': 4008654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'psu': got {'#receive_time': 196447.66179013, u'next_clock': 25601479, u'oid': 3, u'value': 16412, '#name': u'analog_in_state', '#sent_time': 196447.441571611} mcu 'mcu': got {'#receive_time': 196447.848910667, u'next_clock': 4037654080L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'mcu': got {'#receive_time': 196447.858861111, u'next_clock': 4038654080L, u'oid': 18, u'value': 31445, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'psu': got {'#receive_time': 196447.961796741, u'next_clock': 29201479, u'oid': 3, u'value': 16414, '#name': u'analog_in_state', '#sent_time': 196447.441571611} mcu 'mcu': got {'#receive_time': 196448.148961352, u'next_clock': 4067654080L, u'oid': 17, u'value': 22582, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'mcu': got {'#receive_time': 196448.158904907, u'next_clock': 4068654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'psu': got {'#receive_time': 196448.261733815, u'next_clock': 32801479, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196447.441571611} mcu 'mcu': got {'#receive_time': 196448.448909537, u'next_clock': 4097654080L, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196447.469678908} mcu 'mcu': got {'#receive_time': 196448.458883944, u'next_clock': 4098654080L, u'oid': 18, u'value': 31447, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'psu': got {'#receive_time': 196448.561763481, u'next_clock': 36401479, u'oid': 3, u'value': 16394, '#name': u'analog_in_state', '#sent_time': 196448.426099981} mcu 'mcu': got {'#receive_time': 196448.748977888, u'next_clock': 4127654080L, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'mcu': got {'#receive_time': 196448.758939833, u'next_clock': 4128654080L, u'oid': 18, u'value': 31444, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'psu': got {'#receive_time': 196448.861763907, u'next_clock': 40001479, u'oid': 3, u'value': 16415, '#name': u'analog_in_state', '#sent_time': 196448.426099981} mcu 'mcu': got {'#receive_time': 196449.04905187, u'next_clock': 4157654080L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'mcu': got {'#receive_time': 196449.058871629, u'next_clock': 4158654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'psu': got {'#receive_time': 196449.161744073, u'next_clock': 43601479, u'oid': 3, u'value': 16403, '#name': u'analog_in_state', '#sent_time': 196448.426099981} mcu 'mcu': got {'#receive_time': 196449.348965777, u'next_clock': 4187654080L, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'mcu': got {'#receive_time': 196449.358939703, u'next_clock': 4188654080L, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196448.454161741} mcu 'psu': got {'#receive_time': 196449.461715851, u'next_clock': 47201479, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196449.412165907} mcu 'mcu': got {'#receive_time': 196449.649030332, u'next_clock': 4217654080L, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196449.439250814} mcu 'mcu': got {'#receive_time': 196449.65895574, u'next_clock': 4218654080L, u'oid': 18, u'value': 31444, '#name': u'analog_in_state', '#sent_time': 196449.439250814} mcu 'psu': got {'#receive_time': 196449.761772055, u'next_clock': 50801479, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196449.412165907} mcu 'mcu': got {'#receive_time': 196449.949087166, u'next_clock': 4247654080L, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196449.439250814} mcu 'mcu': got {'#receive_time': 196449.958982888, u'next_clock': 4248654080L, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196449.439250814} mcu 'psu': got {'#receive_time': 196450.061715573, u'next_clock': 54401479, u'oid': 3, u'value': 16379, '#name': u'analog_in_state', '#sent_time': 196449.412165907} mcu 'mcu': got {'#receive_time': 196450.249036499, u'next_clock': 4277654080L, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196449.439250814} mcu 'mcu': got {'#receive_time': 196450.259002406, u'next_clock': 4278654080L, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196449.439250814} mcu 'psu': got {'#receive_time': 196450.361671369, u'next_clock': 58001479, u'oid': 3, u'value': 16384, '#name': u'analog_in_state', '#sent_time': 196449.412165907} mcu 'mcu': got {'#receive_time': 196450.548960239, u'next_clock': 12686784, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196450.424097554} mcu 'mcu': got {'#receive_time': 196450.558971369, u'next_clock': 13686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196450.424097554} mcu 'psu': got {'#receive_time': 196450.661714443, u'next_clock': 61601479, u'oid': 3, u'value': 16438, '#name': u'analog_in_state', '#sent_time': 196450.396302202} mcu 'mcu': got {'#receive_time': 196450.84902348, u'next_clock': 42686784, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196450.424097554} mcu 'mcu': got {'#receive_time': 196450.858961165, u'next_clock': 43686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196450.424097554} mcu 'psu': got {'#receive_time': 196450.961801665, u'next_clock': 65201479, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196450.396302202} mcu 'mcu': got {'#receive_time': 196451.149038572, u'next_clock': 72686784, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196450.424097554} mcu 'mcu': got {'#receive_time': 196451.159008906, u'next_clock': 73686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196450.424097554} mcu 'psu': got {'#receive_time': 196451.261713517, u'next_clock': 68801479, u'oid': 3, u'value': 16405, '#name': u'analog_in_state', '#sent_time': 196450.396302202} mcu 'mcu': got {'#receive_time': 196451.449046017, u'next_clock': 102686784, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'mcu': got {'#receive_time': 196451.45901422, u'next_clock': 103686784, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'psu': got {'#receive_time': 196451.561700313, u'next_clock': 72401479, u'oid': 3, u'value': 16422, '#name': u'analog_in_state', '#sent_time': 196451.381149702} mcu 'mcu': got {'#receive_time': 196451.749128461, u'next_clock': 132686784, u'oid': 17, u'value': 22571, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'mcu': got {'#receive_time': 196451.759112868, u'next_clock': 133686784, u'oid': 18, u'value': 31452, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'psu': got {'#receive_time': 196451.861673035, u'next_clock': 76001479, u'oid': 3, u'value': 16425, '#name': u'analog_in_state', '#sent_time': 196451.381149702} mcu 'mcu': got {'#receive_time': 196452.049060664, u'next_clock': 162686784, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'mcu': got {'#receive_time': 196452.059033868, u'next_clock': 163686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'psu': got {'#receive_time': 196452.161657942, u'next_clock': 79601479, u'oid': 3, u'value': 16423, '#name': u'analog_in_state', '#sent_time': 196451.381149702} mcu 'mcu': got {'#receive_time': 196452.349079127, u'next_clock': 192686784, u'oid': 17, u'value': 22562, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'mcu': got {'#receive_time': 196452.359037831, u'next_clock': 193686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196451.408968183} mcu 'psu': got {'#receive_time': 196452.461654812, u'next_clock': 83201479, u'oid': 3, u'value': 16404, '#name': u'analog_in_state', '#sent_time': 196452.365932164} mcu 'mcu': got {'#receive_time': 196452.649127386, u'next_clock': 222686784, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196452.393347127} mcu 'mcu': got {'#receive_time': 196452.65903659, u'next_clock': 223686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196452.393347127} mcu 'psu': got {'#receive_time': 196452.761656664, u'next_clock': 86801479, u'oid': 3, u'value': 16415, '#name': u'analog_in_state', '#sent_time': 196452.365932164} mcu 'mcu': got {'#receive_time': 196452.949197386, u'next_clock': 252686784, u'oid': 17, u'value': 22581, '#name': u'analog_in_state', '#sent_time': 196452.393347127} mcu 'mcu': got {'#receive_time': 196452.959120701, u'next_clock': 253686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196452.393347127} mcu 'psu': got {'#receive_time': 196453.061627275, u'next_clock': 90401479, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196452.365932164} mcu 'mcu': got {'#receive_time': 196453.249160534, u'next_clock': 282686784, u'oid': 17, u'value': 22573, '#name': u'analog_in_state', '#sent_time': 196452.393347127} mcu 'mcu': got {'#receive_time': 196453.259211441, u'next_clock': 283686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196452.393347127} mcu 'psu': got {'#receive_time': 196453.361541682, u'next_clock': 94001479, u'oid': 3, u'value': 16436, '#name': u'analog_in_state', '#sent_time': 196453.350877571} mcu 'mcu': got {'#receive_time': 196453.549177015, u'next_clock': 312686784, u'oid': 17, u'value': 22574, '#name': u'analog_in_state', '#sent_time': 196453.377592978} mcu 'mcu': got {'#receive_time': 196453.559099719, u'next_clock': 313686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196453.377592978} mcu 'psu': got {'#receive_time': 196453.661654034, u'next_clock': 97601479, u'oid': 3, u'value': 16422, '#name': u'analog_in_state', '#sent_time': 196453.350877571} mcu 'mcu': got {'#receive_time': 196453.849142997, u'next_clock': 342686784, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196453.377592978} mcu 'mcu': got {'#receive_time': 196453.863310848, u'next_clock': 343686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196453.377592978} mcu 'psu': got {'#receive_time': 196453.961666108, u'next_clock': 101201479, u'oid': 3, u'value': 16421, '#name': u'analog_in_state', '#sent_time': 196453.350877571} mcu 'mcu': got {'#receive_time': 196454.149148885, u'next_clock': 372686784, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196453.377592978} mcu 'mcu': got {'#receive_time': 196454.159129811, u'next_clock': 373686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196453.377592978} mcu 'psu': got {'#receive_time': 196454.261589589, u'next_clock': 104801479, u'oid': 3, u'value': 16428, '#name': u'analog_in_state', '#sent_time': 196453.350877571} mcu 'mcu': got {'#receive_time': 196454.449147422, u'next_clock': 402686784, u'oid': 17, u'value': 22578, '#name': u'analog_in_state', '#sent_time': 196454.362215052} mcu 'mcu': got {'#receive_time': 196454.45910533, u'next_clock': 403686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196454.362215052} mcu 'psu': got {'#receive_time': 196454.561600348, u'next_clock': 108401479, u'oid': 3, u'value': 16391, '#name': u'analog_in_state', '#sent_time': 196454.335083978} mcu 'mcu': got {'#receive_time': 196454.749180552, u'next_clock': 432686784, u'oid': 17, u'value': 22562, '#name': u'analog_in_state', '#sent_time': 196454.362215052} mcu 'mcu': got {'#receive_time': 196454.759176311, u'next_clock': 433686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196454.362215052} mcu 'psu': got {'#receive_time': 196454.861542089, u'next_clock': 112001479, u'oid': 3, u'value': 16427, '#name': u'analog_in_state', '#sent_time': 196454.335083978} mcu 'mcu': got {'#receive_time': 196455.049191403, u'next_clock': 462686784, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196454.362215052} mcu 'mcu': got {'#receive_time': 196455.0591742, u'next_clock': 463686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196454.362215052} mcu 'psu': got {'#receive_time': 196455.16158894, u'next_clock': 115601479, u'oid': 3, u'value': 16415, '#name': u'analog_in_state', '#sent_time': 196454.335083978} mcu 'mcu': got {'#receive_time': 196455.349173959, u'next_clock': 492686784, u'oid': 17, u'value': 22570, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'mcu': got {'#receive_time': 196455.359225959, u'next_clock': 493686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'psu': got {'#receive_time': 196455.461569977, u'next_clock': 119201479, u'oid': 3, u'value': 16395, '#name': u'analog_in_state', '#sent_time': 196455.319669922} mcu 'mcu': got {'#receive_time': 196455.649197144, u'next_clock': 522686784, u'oid': 17, u'value': 22579, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'mcu': got {'#receive_time': 196455.659148144, u'next_clock': 523686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'psu': got {'#receive_time': 196455.761573144, u'next_clock': 122801479, u'oid': 3, u'value': 16408, '#name': u'analog_in_state', '#sent_time': 196455.319669922} mcu 'mcu': got {'#receive_time': 196455.949305958, u'next_clock': 552686784, u'oid': 17, u'value': 22575, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'mcu': got {'#receive_time': 196455.959189829, u'next_clock': 553686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'psu': got {'#receive_time': 196456.061551755, u'next_clock': 126401479, u'oid': 3, u'value': 16405, '#name': u'analog_in_state', '#sent_time': 196455.319669922} mcu 'mcu': got {'#receive_time': 196456.249220514, u'next_clock': 582686784, u'oid': 17, u'value': 22572, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'mcu': got {'#receive_time': 196456.259178606, u'next_clock': 583686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196455.346893551} mcu 'psu': got {'#receive_time': 196456.361501495, u'next_clock': 130001479, u'oid': 3, u'value': 16390, '#name': u'analog_in_state', '#sent_time': 196456.303790236} mcu 'mcu': got {'#receive_time': 196456.549211217, u'next_clock': 612686784, u'oid': 17, u'value': 22566, '#name': u'analog_in_state', '#sent_time': 196456.331213421} mcu 'mcu': got {'#receive_time': 196456.559204291, u'next_clock': 613686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196456.331213421} mcu 'psu': got {'#receive_time': 196456.661525476, u'next_clock': 133601479, u'oid': 3, u'value': 16407, '#name': u'analog_in_state', '#sent_time': 196456.303790236} mcu 'mcu': got {'#receive_time': 196456.849349754, u'next_clock': 642686784, u'oid': 17, u'value': 22567, '#name': u'analog_in_state', '#sent_time': 196456.331213421} mcu 'mcu': got {'#receive_time': 196456.859212661, u'next_clock': 643686784, u'oid': 18, u'value': 31451, '#name': u'analog_in_state', '#sent_time': 196456.331213421} mcu 'psu': got {'#receive_time': 196456.961515661, u'next_clock': 137201479, u'oid': 3, u'value': 16394, '#name': u'analog_in_state', '#sent_time': 196456.303790236} mcu 'mcu': got {'#receive_time': 196457.149257532, u'next_clock': 672686784, u'oid': 17, u'value': 22577, '#name': u'analog_in_state', '#sent_time': 196456.331213421} mcu 'mcu': got {'#receive_time': 196457.159219458, u'next_clock': 673686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196456.331213421} mcu 'psu': got {'#receive_time': 196457.261506957, u'next_clock': 140801479, u'oid': 3, u'value': 16402, '#name': u'analog_in_state', '#sent_time': 196456.303790236} mcu 'mcu': got {'#receive_time': 196457.449268957, u'next_clock': 702686784, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196457.315368791} mcu 'mcu': got {'#receive_time': 196457.45922518, u'next_clock': 703686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196457.315368791} mcu 'psu': got {'#receive_time': 196457.561594587, u'next_clock': 144401479, u'oid': 3, u'value': 16411, '#name': u'analog_in_state', '#sent_time': 196457.288811532} mcu 'mcu': got {'#receive_time': 196457.749271254, u'next_clock': 732686784, u'oid': 17, u'value': 22587, '#name': u'analog_in_state', '#sent_time': 196457.315368791} mcu 'mcu': got {'#receive_time': 196457.759281716, u'next_clock': 733686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196457.315368791} mcu 'psu': got {'#receive_time': 196457.861523365, u'next_clock': 148001479, u'oid': 3, u'value': 16393, '#name': u'analog_in_state', '#sent_time': 196457.288811532} mcu 'mcu': got {'#receive_time': 196458.049290939, u'next_clock': 762686784, u'oid': 17, u'value': 22584, '#name': u'analog_in_state', '#sent_time': 196457.315368791} mcu 'mcu': got {'#receive_time': 196458.059250513, u'next_clock': 763686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196457.315368791} mcu 'psu': got {'#receive_time': 196458.161482087, u'next_clock': 151601479, u'oid': 3, u'value': 16418, '#name': u'analog_in_state', '#sent_time': 196457.288811532} mcu 'mcu': got {'#receive_time': 196458.349282124, u'next_clock': 792686784, u'oid': 17, u'value': 22590, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'mcu': got {'#receive_time': 196458.359334198, u'next_clock': 793686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'psu': got {'#receive_time': 196458.461463735, u'next_clock': 155201479, u'oid': 3, u'value': 16400, '#name': u'analog_in_state', '#sent_time': 196458.273999716} mcu 'mcu': got {'#receive_time': 196458.649319327, u'next_clock': 822686784, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'mcu': got {'#receive_time': 196458.659282697, u'next_clock': 823686784, u'oid': 18, u'value': 31450, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'psu': got {'#receive_time': 196458.761475086, u'next_clock': 158801479, u'oid': 3, u'value': 16431, '#name': u'analog_in_state', '#sent_time': 196458.273999716} mcu 'mcu': got {'#receive_time': 196458.949339956, u'next_clock': 852686784, u'oid': 17, u'value': 22580, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'mcu': got {'#receive_time': 196458.959247179, u'next_clock': 853686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'psu': got {'#receive_time': 196459.061359808, u'next_clock': 162401479, u'oid': 3, u'value': 16398, '#name': u'analog_in_state', '#sent_time': 196458.273999716} mcu 'mcu': got {'#receive_time': 196459.249242716, u'next_clock': 882686784, u'oid': 17, u'value': 22583, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'mcu': got {'#receive_time': 196459.259197104, u'next_clock': 883686784, u'oid': 18, u'value': 31448, '#name': u'analog_in_state', '#sent_time': 196458.299992068} mcu 'psu': got {'#receive_time': 196459.361360882, u'next_clock': 166001479, u'oid': 3, u'value': 16413, '#name': u'analog_in_state', '#sent_time': 196459.258953067} mcu 'mcu': got {'#receive_time': 196459.549247901, u'next_clock': 912686784, u'oid': 17, u'value': 22569, '#name': u'analog_in_state', '#sent_time': 196459.285025771} mcu 'mcu': got {'#receive_time': 196459.559232086, u'next_clock': 913686784, u'oid': 18, u'value': 31449, '#name': u'analog_in_state', '#sent_time': 196459.285025771} mcu 'psu': got {'#receive_time': 196459.661346715, u'next_clock': 169601479, u'oid': 3, u'value': 16425, '#name': u'analog_in_state', '#sent_time': 196459.258953067} Attempting MCU 'mcu' reset command Attempting MCU 'psu' reset command Attempting MCU 'toolhead' reset command webhooks client 4128194648: Disconnected Restarting printer Start printer at Tue Nov 22 20:26:00 2022 (1669177560.2 196460.9) ===== Config file ===== [gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL] description = Helper: park toolhead used in PAUSE and CANCEL_PRINT variable_extrude = 1.0 gcode = {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %} {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %} {% set z_park_delta = 2.0 %} {% set max_z = printer.toolhead.axis_maximum.z|float %} {% set act_z = printer.toolhead.position.z|float %} {% if act_z < (max_z - z_park_delta) %} {% set z_safe = z_park_delta %} {% else %} {% set z_safe = max_z - act_z %} {% endif %} {% if printer.extruder.can_extrude|lower == 'true' %} M83 G1 E-{extrude} F2100 {% if printer.gcode_move.absolute_extrude |lower == 'true' %} M82 {% endif %} {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} {% if "xyz" in printer.toolhead.homed_axes %} G91 G1 Z{z_safe} F900 G90 G1 X{x_park} Y{y_park} F6000 {% if printer.gcode_move.absolute_coordinates|lower == 'false' %} G91 {% endif %} {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro bed_level_if_needed] variable_calls_since_last_level = 9999 gcode = {% set threshold = 10 %} {% set last_value = printer["gcode_macro bed_level_if_needed"].calls_since_last_level %} {% if last_value < threshold %} {% set new_last_value = last_value + 1 %} M117 Bed mesh calibration not needed yet (n={last_value}/{threshold}) RESPOND MSG="Bed mesh calibration not needed yet (n={last_value}/{threshold})" {% else %} M117 Updating Mesh ... RESPOND MSG="Updating Mesh ..." BED_MESH_CALIBRATE {% set new_last_value = 1 %} {% endif %} SET_GCODE_VARIABLE MACRO=bed_level_if_needed VARIABLE=calls_since_last_level VALUE={new_last_value} [gcode_macro CANCEL_PRINT] description = Cancel the actual running print rename_existing = CANCEL_PRINT_BASE variable_park = True gcode = {% if printer.pause_resume.is_paused|lower == 'false' and park|lower == 'true'%} _TOOLHEAD_PARK_PAUSE_CANCEL {% endif %} M118 Cancelling ... M117 Cancelling ... M300 S700 P100 M300 S900 P100 M300 S700 P100 M300 S900 P100 TURN_OFF_HEATERS CANCEL_PRINT_BASE PRINT_END [gcode_macro BEFORE_LAYER_CHANGE_HANDLER] gcode = [gcode_macro AFTER_LAYER_CHANGE_HANDLER] gcode = M117 Layer {params.LAYER}/{params.TOTAL_LAYERS} [gcode_macro lazy_home] gcode = {% if printer.toolhead.homed_axes == "" %} RESPOND PREFIX="->" MSG="Homing x y z" G28 x y z {% elif printer.toolhead.homed_axes == "x" %} RESPOND PREFIX="->" MSG="Homing y z" G28 y z {% elif printer.toolhead.homed_axes == "y" %} RESPOND PREFIX="->" MSG="Homing x z" G28 x z {% elif printer.toolhead.homed_axes == "z" %} RESPOND PREFIX="->" MSG="Homing x y" G28 x y {% elif printer.toolhead.homed_axes == "xy" %} RESPOND PREFIX="->" MSG="Homing z" G28 z {% elif printer.toolhead.homed_axes == "xz" %} RESPOND PREFIX="->" MSG="Homing y" G28 y {% elif printer.toolhead.homed_axes == "yz" %} RESPOND PREFIX="->" MSG="Homing x" G28 x {% else %} RESPOND PREFIX="->" MSG="No Homing Needed" {% endif %} [gcode_macro _LOAD_FILAMENT] gcode = {% set distance = params.LOAD_DISTANCE|default(450) %} {% set desired_temp = printer.extruder.target %} {% set phase_1_distance = 5 %} {% set phase_1_velocity = 200 %} {% set phase_2_velocity = params.LOAD_SPEED|default(2500) %} {% set phase_3_distance = 25 %} {% set phase_3_velocity = 50 %} {% set purge_amount = params.PURGE_AMOUNT|default(50) %} {% set purge_speed = params.PURGE_SPEED|default(100) %} {% if desired_temp == 0 %} {action_raise_error("extruder not set to any temperature!")} {% endif %} RESPOND PREFIX="->" MSG="Load: Waiting for extruder warmup ..." M117 Load: Waiting for extruder warmup ... M109 S{ desired_temp } G91 G92 E0 M300 RESPOND PREFIX="->" MSG="Load: Phase 1 ..." M117 Load: Phase 1 ... G1 E{phase_1_distance} F{phase_1_velocity} M300 RESPOND PREFIX="->" MSG="Load: Phase 2 ..." M117 Load: Phase 2 ... G1 E{distance-phase_1_distance-phase_3_distance} F{phase_2_velocity} M300 RESPOND PREFIX="->" MSG="Load: Phase 3 ..." M117 Load: Phase 3 ... G1 E{phase_3_distance} F{phase_3_velocity} M300 RESPOND PREFIX="->" MSG="Load: Purge ..." M117 Load: Purge ... G1 E{purge_amount} F{purge_speed} M300 M300 RESPOND PREFIX="->" MSG="Load: Done" M117 Load: Done G90 [gcode_macro _UNLOAD_FILAMENT] gcode = {% set distance = params.UNLOAD_DISTANCE|default(450) %} {% set extra_distance = params.EXTRA_DISTANCE|default(100) %} {% set desired_temp = printer.extruder.target %} {% set phase_1_distance = 10 %} {% set phase_1_velocity = 200 %} {% set phase_2_velocity = params.UNLOAD_SPEED|default(2500) %} {% if desired_temp == 0 %} {action_raise_error("extruder not set to any temperature!")} {% endif %} RESPOND PREFIX="->" MSG="Unload: Waiting for extruder warmup ..." M117 Unload: Waiting for extruder warmup ... M109 S{ desired_temp } G91 G92 E0 M300 RESPOND PREFIX="->" MSG="Unload: Phase 1 ..." M117 Unload: Phase 1 ... G1 E-{phase_1_distance} F{phase_1_velocity} M300 RESPOND PREFIX="->" MSG="Unload: Phase 2 ..." M117 Unload: Phase 2 ... G1 E-{distance+extra_distance-phase_1_distance} F{phase_2_velocity} M300 M300 RESPOND PREFIX="->" MSG="Unload: Done" M117 Unload: Done G90 [gcode_macro M300] gcode = {% set S = params.S|default(1000)|int %} ; S sets the tone frequency {% set P = params.P|default(100)|int %} ; P sets the tone duration {% set L = 0.5 %} ; L varies the PWM on time, close to 0 or 1 the tone gets a bit quieter. 0.5 is a symmetric waveform {% if S <= 0 %} ; dont divide through zero {% set F = 1 %} {% set L = 0 %} {% elif S >= 10000 %} ;max frequency set to 10kHz {% set F = 0 %} {% else %} {% set F = 1/S %} ;convert frequency to seconds {% endif %} SET_PIN PIN=beeper VALUE={L} CYCLE_TIME={F} ;Play tone G4 P{P} ;tone duration SET_PIN PIN=beeper VALUE=0 [gcode_macro PAUSE] description = Pause the actual running print rename_existing = PAUSE_BASE variable_extrude = 1.0 gcode = _enclosure_light_paused _display_light_paused M300 S700 P100 M300 S700 P100 PAUSE_BASE {% if printer.extruder.can_extrude|lower == 'true' %} G10 ; retract {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} _TOOLHEAD_PARK_PAUSE_CANCEL SET_IDLE_TIMEOUT TIMEOUT={2*60*60} [gcode_macro RESUME] description = Resume the actual running print rename_existing = RESUME_BASE gcode = _enclosure_light_printing _display_light_printing {% set extrude = printer['gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL'].extrude %} {% if 'VELOCITY' in params|upper %} {% set get_params = ('VELOCITY=' + params.VELOCITY) %} {%else %} {% set get_params = "" %} {% endif %} {% if printer.extruder.can_extrude|lower == 'true' %} M83 G1 E{extrude} F2100 {% if printer.gcode_move.absolute_extrude|lower == 'true' %} M82 {% endif %} {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} RESUME_BASE {get_params} [gcode_macro PRESENT_PRINT] gcode = G90 ; use absolute coordinates {% set z_hop = 10.0 %} {% set z_max_space = 2.0 %} {% 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 actual_z = printer.toolhead.position.z|float %} {% if actual_z < (max_z - z_hop) %} {% set z_park = actual_z + z_hop %} {% elif actual_z < (max_z - z_max_space) %} {action_respond_info("already very high")} {% else %} {% set z_park = max_z - z_max_space %} {% endif %} {% if "xyz" in printer.toolhead.homed_axes %} G0 Z{z_park} F900 G0 X{x_park} Y{y_park} F6000 {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro PRINT_END] gcode = RESPOND PREFIX="->" MSG="Print Finishing ..." M117 Print Finishing ... G91 ; use relative movement G0 Z5 F3000 ; Raise nozzle by 5mm PRESENT_PRINT M140 S0 ; turn off heatbed M104 S0 ; turn off temperature M106 S0 ; turn off fan? M107 ; turn off fan end_tones RESPOND PREFIX="->" MSG="Print Complete" M117 Print Complete _enclosure_light_idle _display_light_idle [gcode_macro _move_to_purge_spot] gcode = G90 ; use absolute coordinates g0 x10 y10 z20 F6000 [gcode_macro _wipe_and_move_to_ready] gcode = G91 G0 Z20 F6000 G4 P5000 G90 g0 x110 f10000 g0 z0.5 g0 x0 f10000 G0 X5 Y5 Z5 F6000 [gcode_macro _purge_tower] gcode = {% set z_travel_rate = 500 %} {% set radius = 2 %} {% set filament_diameter = printer.configfile.settings.extruder.filament_diameter %} {% set circumference = 3.14 * 2 * radius %} {% set width_multiplier = 1 %} {% set layer_height = 0.2 %} {% set volume = circumference * width_multiplier * layer_height %} {% set extrude_per_layer = volume / filament_diameter %} {% set feed_ratio = circumference / extrude_per_layer %} {% set mvs = 8 %} {% set max_feed_rate = (mvs / filament_diameter) * feed_ratio * 60 %} {% set fan_speed = 100 %} {% if params.FILAMENT_TYPE == "ABS" %} {% set fan_speed = 10 %} {% endif %} RESPOND MSG="max feed rate: {max_feed_rate}" RESPOND MSG="extrude per layer: {extrude_per_layer}" {% set layers = (params.PURGE_AMOUNT | default(100) | int) / extrude_per_layer %} G90 G0 Z0.10 F375 G91 M83 M106 S{ (fan_speed * (1/255) ) | int } {% for layer in range(1, layers | round | int) %} G90 G2 F{max_feed_rate if layer > 3 else 200} E{extrude_per_layer} I{radius} J{radius} G91 {% if not loop.last %} G0 Z0.2 F{z_travel_rate} {% endif %} G4 P100 {% endfor %} G10 G90 M82 _wipe_and_move_to_ready M106 S0 [gcode_macro _test_purge_sequence] gcode = PRINT_START EXTRUDER={params.EXTRUDER} BED={params.BED} PRINT_END [gcode_macro PRINT_START] gcode = _enclosure_light_printing _display_light_printing RESPOND PREFIX="->" MSG="Preparing to print ..." M117 Preparing to print ... start_tones SET_GCODE_OFFSET Z=0.0 SET_RETRACTION RETRACT_LENGTH=1 RETRACT_SPEED=45 UNRETRACT_EXTRA_LENGTH=0 UNRETRACT_SPEED=45 SET_PRESSURE_ADVANCE ADVANCE=0.0 RESPOND PREFIX="->" MSG="Heating ..." M117 Heating ... M140 S{ params.BED } ; set final bed temp M104 S{ params.EXTRUDER } ; set final nozzle temp RESPOND PREFIX="->" MSG="Updating Mesh ..." G28 ; home _move_to_purge_spot RESPOND PREFIX="->" MSG="Warming up ..." M117 Warming up ... M190 S{ params.BED } ; wait for bed temp to stabilize M109 S{ params.EXTRUDER } ; wait for nozzle temp to stabilize _purge_tower PURGE_AMOUNT=60 EXTRUDE_PER_LAYER=1.2 FILAMENT_TYPE={params.FILAMENT_TYPE} RESPOND PREFIX="->" MSG="Ready to print ..." [delayed_gcode PrinterStart] gcode = printer_start_tune RESPOND PREFIX="->" MSG="Printer Ready" _enclosure_light_idle _display_light_idle initial_duration = 0.1 [gcode_macro _PURGE_LINE] gcode = {% set ef = (15 / 200) * 1.5 %} {% set yd = 180 %} {% set xstart = 5 %} {% set extrude_speed = 1500 %} G90 ; use absolute coordinates G0 Z2.0 F1500 ; Move Z Axis up little to prevent scratching of Heat Bed G0 X{xstart} Y20 Z0.3 F1500 ; Move to start position G92 E0 ; Reset Extruder G1 X{xstart} Y{yd} Z0.3 F{extrude_speed} E{yd * ef } ; Draw the first line G0 X{xstart+1} Y{yd} Z0.3 F1500 ; Move to side a little G92 E0 ; Reset Extruder G1 X{xstart+1} Y20 Z0.3 F{extrude_speed} E{yd * ef} ; Draw the second line G92 E0 ; Reset Extruder G1 X{xstart+2} Z0.3 Y50 E{ef * 50} F{extrude_speed} ; draw a half line G10 ; retract G0 X{xstart+2} Z10.0 Y{yd} F6000 ; wipe G0 X{xstart+2} Z0.3 Y{yd} F6000 ; dab G92 E0 ; Reset Extruder ;G4 P5000 ; wait 5 sec ;G1 Z10.0 F1500 ; jerk up to detach the blob ;G1 X5 Y120 Z2.0 F500.0 ; Let it ooze a bit .. ;G1 X5 Y120 Z0.3 F5000.0 ; dab the ground ;G1 X5 Y120 Z5.0 F5000.0 ; and lift [gcode_macro start_tones] gcode = M300 S700 P200 M300 S600 P200 M300 S500 P100 M300 S500 P100 [gcode_macro end_tones] gcode = M300 S440 P200 ; Make Print Completed Tones M300 S660 P250 M300 S880 P300 [gcode_macro printer_start_tune] gcode = M300 S500 P100 [mcu] serial = /dev/serial/by-id/usb-Klipper_lpc1768_148001156520BC9524D6E260C52000F5-if00 [temperature_fan controller] sensor_pin = P0.24 sensor_type = EPCOS 100K B57560G104F pullup_resistor = 45000 pin = P2.3 min_temp = 0 max_temp = 80 cycle_time = 0.000010 kick_start_time = 1 control = pid pid_kp = 10 pid_ki = 1 pid_kd = 1 target_temp = 40.0 min_speed = 0.0 off_below = 0.3 [board_pins] aliases = EXP1_1=P1.30, EXP1_3=P1.18, EXP1_5=P1.20, EXP1_7=P1.22, EXP1_9=, EXP1_2=P0.28, EXP1_4=P1.19, EXP1_6=P1.21, EXP1_8=P1.23, EXP1_10=<5V>, EXP2_1=P0.17, EXP2_3=P3.26, EXP2_5=P3.25, EXP2_7=P1.31, EXP2_9=, EXP2_2=P0.15, EXP2_4=P0.16, EXP2_6=P0.18, EXP2_8=, EXP2_10= [stepper_x] step_pin = P2.2 dir_pin = P2.6 enable_pin = !P2.1 endstop_pin = !toolhead:gpio29 microsteps = 64 rotation_distance = 40 full_steps_per_rotation = 200 position_endstop = 215 position_min = 0 position_max = 216 homing_speed = 70 homing_positive_dir = true [tmc2208 stepper_x] uart_pin = P1.10 run_current = 0.60 interpolate = false stealthchop_threshold = 999999 [stepper_y] step_pin = P0.19 dir_pin = P0.20 enable_pin = !P2.8 endstop_pin = ^!P1.28 rotation_distance = 40 position_endstop = -5 position_min = -5 position_max = 235 homing_speed = 70 microsteps = 64 [tmc2208 stepper_y] uart_pin = P1.9 run_current = 0.60 interpolate = false stealthchop_threshold = 999999 [stepper_z] step_pin = P0.22 dir_pin = P2.11 enable_pin = !P0.21 microsteps = 64 rotation_distance = 40 full_steps_per_rotation = 200 endstop_pin = probe:z_virtual_endstop position_min = -15.0 position_max = 200 homing_speed = 40 [tmc2208 stepper_z] uart_pin = P1.8 run_current = 0.60 interpolate = false stealthchop_threshold = 999999 [heater_bed] heater_pin = P2.5 sensor_pin = P0.25 sensor_type = ATC Semitec 104GT-2 min_temp = 0 max_temp = 130 control = pid pid_kp = 74 pid_ki = 1.9 pid_kd = 700 [neopixel enclosure] pin = P1.24 chain_count = 14 color_order = GRB initial_red = 0.0 initial_green = 0.0 initial_blue = 0.0 [display] cs_pin = EXP1_3 a0_pin = EXP1_4 rst_pin = EXP1_5 encoder_pins = ^EXP2_5, ^EXP2_3 click_pin = ^!EXP1_2 lcd_type = uc1701 contrast = 63 [output_pin beeper] pin = EXP1_1 pwm = True value = 0 shutdown_value = 0 cycle_time = 0.001 [neopixel display] pin = EXP1_6 chain_count = 3 color_order = RGB initial_red = 0.1 initial_green = 0.1 initial_blue = 0.1 [temperature_sensor enclosure] sensor_type = BME280 i2c_address = 118 i2c_bus = i2c1 [mcu psu] serial = /dev/serial/by-id/usb-Klipper_rp2040_E66138935F52B324-if00 [temperature_fan psu] sensor_pin = psu:gpio29 sensor_type = Generic 3950 pullup_resistor = 100000 inline_resistor = 0 pin = psu:gpio2 min_temp = 0 max_temp = 80 hardware_pwm = True tachometer_pin = ^psu:gpio3 tachometer_ppr = 2 control = pid pid_kp = 10 pid_ki = 1 pid_kd = 1 target_temp = 40.0 min_speed = 0.05 [display_template _psu_fan_speed] text = {% if 'temperature_fan psu' in printer %} {% set speed = printer['temperature_fan psu'].speed %} { "~fan1~ PWR {:>8.8%}".format(speed) } {% endif %} [display_template _psu_temp] text = {% if 'temperature_fan psu' in printer %} {% set temp = printer['temperature_fan psu'].temperature %} {% set target = printer['temperature_fan psu'].target %} { "TEMP {:>5.4}/{:>5.4}".format(temp, target) } {% endif %} [display_template _psu_rpm] text = {% if 'temperature_fan psu' in printer %} {% set rpm = printer['temperature_fan psu'].rpm %} { "~fan1~ RPM {:>9.8}".format(rpm | round(1)) } {% endif %} [display_data psu _speed] position = 0,0 text = { render("_psu_fan_speed") } [display_data psu _rpm] position = 1,0 text = { render("_psu_rpm") } [display_data psu _temp] position = 2,0 text = { render("_psu_temp") } [display psu] display_group = psu lcd_type = ssd1306 i2c_mcu = psu i2c_bus = i2c0a contrast = 239 [mcu toolhead] canbus_uuid = 50aa2201e643 [servo klicky_servo] pin = toolhead:gpio28 maximum_servo_angle = 180 minimum_pulse_width = 0.0005 maximum_pulse_width = 0.0025 [probe] pin = !toolhead:gpio25 x_offset = 0 y_offset = 25 speed = 7.5 lift_speed = 200 samples = 3 sample_retract_dist = 0.8 samples_result = median samples_tolerance = 0.005 samples_tolerance_retries = 20 z_offset = 15 [adxl345] cs_pin = toolhead:gpio1 spi_bus = spi0a [temperature_sensor toolhead_mcu] sensor_type = temperature_mcu sensor_mcu = toolhead min_temp = 0 max_temp = 100 [temperature_sensor toolhead_ntc] sensor_type = ATC Semitec 104GT-2 sensor_pin = toolhead:gpio26 min_temp = -50 max_temp = 350 [extruder] step_pin = toolhead:gpio9 dir_pin = toolhead:gpio10 enable_pin = !toolhead:gpio7 heater_pin = toolhead:gpio6 sensor_pin = toolhead:gpio27 microsteps = 64 nozzle_diameter = 0.400 control = pid sensor_type = ATC Semitec 104NT-4-R025H42G pid_kp = 19 pid_ki = 1.5 pid_kd = 58 min_temp = 0 max_temp = 270 max_extrude_only_distance = 1000.0 filament_diameter = 1.750 max_extrude_cross_section = 100.0 gear_ratio = 3:1 rotation_distance = 23.132 [tmc2209 extruder] uart_pin = toolhead:gpio8 run_current = 0.6 stealthchop_threshold = 999999 [fan] pin = toolhead:gpio13 [heater_fan toolhead_hotend_fan] pin = toolhead:gpio14 heater = extruder heater_temp = 50.0 shutdown_speed = 0 fan_speed = 1.0 [neopixel toolhead] pin = toolhead:gpio12 chain_count = 3 initial_red = 0.0 initial_green = 0.0 initial_blue = 0.0 [display_template _printing_time] text = {% set ptime = printer.idle_timeout.printing_time %} {% set fpos = printer.virtual_sdcard.file_position %} {% set fsize = printer.virtual_sdcard.file_size %} {% set bytes_per_sec = fpos / ptime if ptime > 0 else 0 %} {% set bytes_left = fsize - fpos %} {% set file_time_left = bytes_left / bytes_per_sec if bytes_per_sec > 0 else 0 %} { "%02d:%02d" % (file_time_left // (60 * 60), (file_time_left // 60) % 60) } [menu __main __tune] type = list name = Tune [menu __main __octoprint] type = list name = Current Print [menu __main __octoprint __pause] type = command enable = {printer.idle_timeout.state == "Printing" and not printer.pause_resume.is_paused } name = Pause gcode = PAUSE [menu __main __octoprint __resume] type = command enable = {not printer.idle_timeout.state == "Printing" and printer.pause_resume.is_paused} name = Resume gcode = RESUME [menu __main __octoprint __clear_pause] type = command enable = {not printer.idle_timeout.state == "Printing" and printer.pause_resume.is_paused} name = Cancel gcode = CLEAR_PAUSE [menu __main __octoprint __abort] type = command enable = {printer.idle_timeout.state == "Printing" and not printer.pause_resume.is_paused} name = Abort gcode = CANCEL_PRINT [gcode_macro _display_light_printing] gcode = SET_LED LED=display GREEN=0.6 RED=0.6 BLUE=0.6 [gcode_macro _display_light_idle] gcode = SET_LED LED=display GREEN=0.1 RED=0.1 BLUE=0.1 [gcode_macro _display_light_paused] gcode = SET_LED LED=display GREEN=1 RED=0 BLUE=0 [gcode_macro _display_light_off] gcode = SET_LED LED=display GREEN=0 RED=0 BLUE=0 [gcode_macro _enclosure_light_printing] gcode = SET_LED LED=enclosure GREEN=1 RED=1 BLUE=1 [gcode_macro _enclosure_light_idle] gcode = SET_LED LED=enclosure GREEN=0.01 RED=0.01 BLUE=0.01 [gcode_macro _enclosure_light_paused] gcode = SET_LED LED=enclosure GREEN=1 RED=0 BLUE=0 [gcode_macro _enclosure_light_off] gcode = SET_LED LED=enclosure GREEN=0 RED=0 BLUE=0 [temperature_sensor host] sensor_type = temperature_host [gcode_macro _servo_test_angle] gcode = {% set ANGLE = params.ANGLE|int %} SET_SERVO SERVO=klicky_servo ANGLE={ANGLE} G4 P250 SET_SERVO SERVO=klicky_servo WIDTH=0.0 [gcode_macro _User_Variables] variable_verbose = False variable_debug = False variable_travel_speed = 1000 variable_move_accel = 1000 variable_dock_speed = 50 variable_release_speed = 75 variable_z_drop_speed = 20 variable_safe_z = 15 variable_enable_z_hop = True variable_max_bed_y = 225 variable_max_bed_x = 216 variable_z_endstop_x = 110 variable_z_endstop_y = 110 variable_docklocation_x = 110 variable_docklocation_y = 110 variable_docklocation_z = -128 variable_enable_dock_servo = True variable_servo_name = 'klicky_servo' variable_servo_deploy = 5 variable_servo_retract = 70 variable_servo_delay = 0 variable_dockmove_x = -40 variable_dockmove_y = 0 variable_dockmove_z = 0 variable_attachmove_x = 0 variable_attachmove_y = 0 variable_attachmove_z = 0 variable_umbilical = False variable_umbilical_x = 15 variable_umbilical_y = 15 variable_park_toolhead = True variable_parkposition_x = 110 variable_parkposition_y = 110 variable_parkposition_z = 20 variable_version = 1 variable_attachmove2_x = 0 variable_attachmove2_y = 0 variable_attachmove2_z = 0 variable_home_backoff_x = 10 variable_home_backoff_y = 10 variable_override_homing = '' variable_dock_on_zhome = True gcode = {% set Mx = printer['configfile'].config["stepper_x"]["position_max"]|float %} {% set My = printer['configfile'].config["stepper_y"]["position_max"]|float %} {% set Ox = printer['configfile'].config["probe"]["x_offset"]|float %} {% set Oy = printer['configfile'].config["probe"]["y_offset"]|float %} {% set Oz = printer['configfile'].config["probe"]["z_offset"]|float %} {% if z_endstop_x != 0 or z_endstop_y != 0 %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_x VALUE={ z_endstop_x } SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_y VALUE={ z_endstop_y } {% else %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_x VALUE={ (Mx * 0.5) - Ox } SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=z_endstop_y VALUE={ (My * 0.5) - Oy } {% endif %} [respond] default_type = command [gcode_macro _Probe_Variables] variable_probe_attached = False variable_probe_state = False variable_probe_lock = False variable_z_endstop_x = 0 variable_z_endstop_y = 0 gcode = [gcode_macro _klicky_check_variables_version] gcode = {% set version = printer["gcode_macro _User_Variables"].version|default(0) %} {% if version != 1 %} { action_raise_error("Please update your klicky variables, there are some functionality changes") } {% endif %} [gcode_macro _KlickyDebug] gcode = {% set message = params.MSG %} {% set debug = printer["gcode_macro _User_Variables"].debug|default(False) %} {% if debug %} { action_respond_info(message) } {% endif %} [gcode_macro _exit_point] gcode = {% set function = 'pre_' ~ params.FUNCTION %} {% set move = params.MOVE|default(0) %} {% set speed = printer["gcode_macro _User_Variables"].travel_speed %} M400 SET_VELOCITY_LIMIT ACCEL={printer.configfile.settings.printer.max_accel} SET_VELOCITY_LIMIT ACCEL_TO_DECEL={printer.configfile.settings.printer.max_accel_to_decel} RESTORE_GCODE_STATE NAME={function} MOVE={move} MOVE_SPEED={speed} [gcode_macro _entry_point] gcode = {% set function = 'pre_' ~ params.FUNCTION %} {% set move_accel = printer["gcode_macro _User_Variables"].move_accel|default(1000) %} M400 SAVE_GCODE_STATE NAME={function} SET_GCODE_OFFSET Z=0 G90 SET_VELOCITY_LIMIT ACCEL={move_accel} [gcode_macro _Homing_Variables] gcode = {% set reset = params.RESET|default(0) %} {% if reset %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_lock VALUE={ False } {% endif %} [gcode_macro Attach_Probe_Lock] description = Attaches Klicky Probe, can only be docked after unlocking gcode = Attach_Probe _Probe_Lock [gcode_macro Dock_Probe_Unlock] description = Docks Klicky Probe even if it was locked gcode = _Probe_Unlock Dock_Probe [gcode_macro _Probe_Unlock] description = Unlocks Klicky Probe state gcode = _KlickyDebug msg="_Probe_Lock setting probe_lock variable to False" SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_lock VALUE={ False } [gcode_macro _Probe_Lock] description = Locks Klicky Probe state gcode = _KlickyDebug msg="_Probe_Lock setting probe_lock variable to True" SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_lock VALUE={ True } [gcode_macro _DeployKlickyDock] description = Deploys Klicky servo-controlled dock gcode = {% set enable_dock_servo = printer["gcode_macro _User_Variables"].enable_dock_servo|default(False) %} {% set servo_delay = printer["gcode_macro _User_Variables"].servo_delay|default(1000) %} {% set servo_name = printer["gcode_macro _User_Variables"].servo_name %} {% set servo_deploy = printer["gcode_macro _User_Variables"].servo_deploy|default(360) %} M400 {% if enable_dock_servo != False %} _KlickyDebug msg="_DeployKlickyDock Klicky servo configuration enabled" {% if servo_deploy == 360 %} { action_raise_error("Klicky: servo active on klicky-variables, but no servo deploy angle specified") } {% endif %} _KlickyDebug msg="_DeployKlickyDock SET_SERVO SERVO={servo_name|string} ANGLE={servo_deploy|int}" SET_SERVO SERVO={servo_name|string} ANGLE={servo_deploy|int} M400 G4 P{servo_delay|int} _KlickyDebug msg="_DeployKlickyDock SET_SERVO SERVO={servo_name|string} WIDTH=0" SET_SERVO SERVO={servo_name|string} WIDTH=0 {% elif printer["gcode_macro _DeployDock"] is defined %} _KlickyDebug msg="_DeployKlickyDock calling _DeployDock" _DeployDock {% endif %} [gcode_macro _RetractKlickyDock] description = Retracts Klicky servo-controlled dock gcode = {% set enable_dock_servo = printer["gcode_macro _User_Variables"].enable_dock_servo|default(False) %} {% set servo_delay = printer["gcode_macro _User_Variables"].servo_delay|default(1000) %} {% set servo_name = printer["gcode_macro _User_Variables"].servo_name %} {% set servo_retract = printer["gcode_macro _User_Variables"].servo_retract|default(360) %} M400 {% if enable_dock_servo != False %} _KlickyDebug msg="_RetractKlickyDock Klicky servo configuration enabled" {% if servo_retract == 360 %} { action_raise_error("Klicky: servo active on klicky-variables, but no servo retract angle specified") } {% endif %} _KlickyDebug msg="_RetractKlickyDock SET_SERVO SERVO={servo_name|string} ANGLE={servo_retract|int}" SET_SERVO SERVO={servo_name|string} ANGLE={servo_retract|int} M400 G4 P{servo_delay|int} _KlickyDebug msg="_RetractKlickyDock SET_SERVO SERVO={servo_name|string} WIDTH=0" SET_SERVO SERVO={servo_name|string} WIDTH=0 {% elif printer["gcode_macro _RetractDock"] is defined %} _KlickyDebug msg="_RetractKlickyDock calling _RetractDock" _RetractDock {% endif %} [gcode_macro Attach_Probe] description = Attaches Klicky Probe gcode = {% set goback = params.BACK|default(0) %} {% set probe_attached = printer["gcode_macro _Probe_Variables"].probe_attached %} {% set probe_lock = printer["gcode_macro _Probe_Variables"].probe_lock %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} {% set dockmove_x = printer["gcode_macro _User_Variables"].dockmove_x|default(0) %} {% set dockmove_y = printer["gcode_macro _User_Variables"].dockmove_y|default(0) %} {% set dockmove_z = printer["gcode_macro _User_Variables"].dockmove_z|default(0) %} {% set docklocation_x = printer["gcode_macro _User_Variables"].docklocation_x %} {% set docklocation_y = printer["gcode_macro _User_Variables"].docklocation_y %} {% set docklocation_z = printer["gcode_macro _User_Variables"].docklocation_z %} {% set attachmove_x = printer["gcode_macro _User_Variables"].attachmove_x|default(0) %} {% set attachmove_y = printer["gcode_macro _User_Variables"].attachmove_y|default(0) %} {% set attachmove_z = printer["gcode_macro _User_Variables"].attachmove_z|default(0) %} {% set attachmove2_x = printer["gcode_macro _User_Variables"].attachmove2_x|default(0) %} {% set attachmove2_y = printer["gcode_macro _User_Variables"].attachmove2_y|default(0) %} {% set attachmove2_z = printer["gcode_macro _User_Variables"].attachmove2_z|default(0) %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z %} {% set enable_z_hop = printer["gcode_macro _User_Variables"].enable_z_hop %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set dock_feedrate = printer["gcode_macro _User_Variables"].dock_speed * 60 %} {% set release_feedrate = printer["gcode_macro _User_Variables"].release_speed * 60 %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} _entry_point function=Attach_Probe {% if not 'xy' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X and Y Axis First!") } _KlickyDebug msg="Attach_Probe Axis homed" {% elif not probe_attached and not probe_lock %} _KlickyDebug msg="Attach_Probe going to attach probe" {% if verbose %} { action_respond_info("Attaching Probe") } {% endif %} _KLICKY_STATUS_BUSY {% if not 'z' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Resetting Z position to zero") } {% endif %} _KlickyDebug msg="Attach_Probe Z not homed, setting position as X=Y=Z=0" SET_KINEMATIC_POSITION Z=0 {% if not enable_z_hop %} _KlickyDebug msg="Attach_Probe z_hop disabled" {% set safe_z = 0 %} {% endif %} {% endif %} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="Attach_Probe toolhead too low, raising it by {safe_z}mm" {% if verbose %} { action_respond_info("moving to a safe Z distance") } {% endif %} G0 Z{safe_z} F{z_drop_feedrate} {% endif %} {% if not 'z' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Resetting Z position to zero, duplicate?") } {% endif %} _KlickyDebug msg="Attach_Probe Z not homed, setting position as X=Y=Z=0" SET_KINEMATIC_POSITION Z=0 {% endif %} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="Attach_Probe toolhead too low, raising it by {safe_z}mm, duplicate?" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Umbilical_Path _entry_point function=Attach_Probe_intern _KlickyDebug msg="Attach_Probe moving near the dock with G0 X{docklocation_x|int - attachmove_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove_y|int - attachmove2_y} F{travel_feedrate}" G0 X{docklocation_x|int - attachmove_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove_y|int - attachmove2_y} F{travel_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving near the dock with G0 Z{docklocation_z|int - attachmove_z|int - attachmove2_z|int} F{dock_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int - attachmove2_z|int} F{dock_feedrate} _KlickyDebug msg="Attach_Probe moving near the dock with G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate} {% endif %} _DeployKlickyDock {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving to the dock with G0 Z{docklocation_z} F{dock_feedrate}" G0 Z{docklocation_z} F{dock_feedrate} {% endif %} _KlickyDebug msg="Attach_Probe moving to the dock with G0 X{docklocation_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove2_y} F{dock_feedrate}" G0 X{docklocation_x|int - attachmove2_x|int} Y{docklocation_y|int - attachmove2_y} F{dock_feedrate} _KlickyDebug msg="Attach_Probe moving to the dock with G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate}" G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving from the dock to G0 Z{docklocation_z|int - attachmove_z|int} F{z_drop_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int} F{z_drop_feedrate} {% endif %} _KlickyDebug msg="Attach_Probe moving from the dock to G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{release_feedrate}" G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{release_feedrate} _RetractKlickyDock {% if ((printer.toolhead.position.z < safe_z) or (docklocation_z != -128 and docklocation_z < safe_z ))%} _KlickyDebug msg="Attach_Probe moving to a safe Z position: G0 Z{safe_z} F{z_drop_feedrate} from {printer.toolhead.position.z}" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Park_Toolhead _CheckProbe action=attach _exit_point function=Attach_Probe_intern move={goback} _KLICKY_STATUS_READY {% elif probe_lock %} {% if verbose %} { action_respond_info("Probe locked!") } {% endif %} _KlickyDebug msg="Attach_Probe probe locked not attaching probe" _CheckProbe action=query {% else %} {% if verbose %} { action_respond_info("Probe already attached!") } {% endif %} _KlickyDebug msg="Attach_Probe probe already attached, doing nothing" _CheckProbe action=query {% endif %} _exit_point function=Attach_Probe [gcode_macro Dock_Probe] description = Docks Klicky Probe gcode = {% set goback = params.back|default(0) %} {% set probe_attached = printer["gcode_macro _Probe_Variables"].probe_attached %} {% set probe_lock = printer["gcode_macro _Probe_Variables"].probe_lock %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} {% set dockmove_x = printer["gcode_macro _User_Variables"].dockmove_x|default(0) %} {% set dockmove_y = printer["gcode_macro _User_Variables"].dockmove_y|default(0) %} {% set dockmove_z = printer["gcode_macro _User_Variables"].dockmove_z|default(0) %} {% set docklocation_x = printer["gcode_macro _User_Variables"].docklocation_x %} {% set docklocation_y = printer["gcode_macro _User_Variables"].docklocation_y %} {% set docklocation_z = printer["gcode_macro _User_Variables"].docklocation_z %} {% set attachmove_x = printer["gcode_macro _User_Variables"].attachmove_x|default(0) %} {% set attachmove_y = printer["gcode_macro _User_Variables"].attachmove_y|default(0) %} {% set attachmove_z = printer["gcode_macro _User_Variables"].attachmove_z|default(0) %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set dock_feedrate = printer["gcode_macro _User_Variables"].dock_speed * 60 %} {% set release_feedrate = printer["gcode_macro _User_Variables"].release_speed * 60 %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% if not 'xyz' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X, Y and Z Axis First!") } {% endif %} _KlickyDebug msg="Dock_Probe Axis homed" _entry_point function=Dock_Probe {% if probe_attached and not probe_lock %} _KlickyDebug msg="Dock_Probe going to dock probe" {% if verbose %} { action_respond_info("Docking Probe") } {% endif %} _KLICKY_STATUS_BUSY {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="Dock_Probe toolhead too low, raising it to {safe_z}mm" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Umbilical_Path _KlickyDebug msg="Dock_Probe moving near the dock with G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{travel_feedrate}" G0 X{docklocation_x|int - attachmove_x|int} Y{docklocation_y|int - attachmove_y|int} F{travel_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Dock_Probe moving near the dock with G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate}" G0 Z{docklocation_z|int - attachmove_z|int} F{dock_feedrate} {% endif %} _DeployKlickyDock _KlickyDebug msg="Dock_Probe moving to the dock with G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate}" G0 X{docklocation_x} Y{docklocation_y} F{dock_feedrate} {% if docklocation_z != -128 %} _KlickyDebug msg="Attach_Probe moving to the dock with G0 Z{docklocation_z} F{dock_feedrate}" G0 Z{docklocation_z} F{dock_feedrate} {% endif %} {% if docklocation_z != -128 %} _KlickyDebug msg="Dock_Probe moving from the dock to G0 Z{docklocation_z|int + dockmove_z|int} F{release_feedrate}" G0 Z{docklocation_z|int + dockmove_z|int} F{release_feedrate} {% endif %} _KlickyDebug msg="Dock_Probe moving from the dock to G0 X{docklocation_x|int + dockmove_x|int} Y{docklocation_y|int + dockmove_y|int} F{release_feedrate}" G0 X{docklocation_x|int + dockmove_x|int} Y{docklocation_y|int + dockmove_y|int} F{release_feedrate} _RetractKlickyDock _KlickyDebug msg="Dock_Probe moving away from the dock to G0 X{docklocation_x|int + dockmove_x|int - attachmove_x|int} Y{docklocation_y|int + dockmove_y|int - attachmove_y|int} F{release_feedrate}" G0 X{docklocation_x|int + dockmove_x|int - attachmove_x|int} Y{docklocation_y|int + dockmove_y|int - attachmove_y|int} F{release_feedrate} {% if ((printer.toolhead.position.z < safe_z) or (docklocation_z != -128 and docklocation_z < safe_z ))%} _KlickyDebug msg="Dock_Probe moving to a safe Z position: G0 Z{safe_z} F{z_drop_feedrate} from {printer.toolhead.position.z}" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _Park_Toolhead G4 P1000 _CheckProbe action=dock _KLICKY_STATUS_READY {% elif probe_lock %} {% if verbose %} { action_respond_info("Probe locked") } {% endif %} _KlickyDebug msg="Dock_Probe probe locked not docking probe" _CheckProbe action=query {% else %} {% if verbose %} { action_respond_info("Probe already docked") } {% endif %} _KlickyDebug msg="Dock_Probe probe already docked, doing nothing" _CheckProbe action=query {% endif %} _exit_point function=Dock_Probe move={goback} [gcode_macro PROBE_CALIBRATE] rename_existing = _PROBE_CALIBRATE description = Calibrate the probes z_offset with klicky automount gcode = {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set max_x = printer["gcode_macro _User_Variables"].max_bed_x|float %} {% set max_y = printer["gcode_macro _User_Variables"].max_bed_y|float %} {% set probe_offset_x = printer['configfile'].config["probe"]["x_offset"]|float %} {% set probe_offset_y = printer['configfile'].config["probe"]["y_offset"]|float %} {% if not 'xyz' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X, Y and Z Axis First!") } {% endif %} _KlickyDebug msg="probe_calibrate Axis homed" _KlickyDebug msg="probe_calibrate Variables max_x={max_x},max_y={max_y},probe_offset_x={probe_offset_x},probe_offset_y={probe_offset_y}" {% if printer['gcode_move'].position.y > (max_y - probe_offset_y) or printer['gcode_move'].position.y < - probe_offset_y or printer['gcode_move'].position.x > (max_x - probe_offset_x) or printer['gcode_move'].position.x < - probe_offset_x %} { action_raise_error("Must perform PROBE_CALIBRATE with the probe above the BED, check klicky_variables bed size!") } {% endif%} _CheckProbe action=query G90 Attach_Probe back=1 _KLICKY_STATUS_CALIBRATING_Z _KlickyDebug msg="probe_calibrate calling klipper probe_calibrate" _PROBE_CALIBRATE {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} M118 moving the toolhead 20 mm from the bed _KlickyDebug msg="probe_calibrate Moving Z up by 20mm" TESTZ Z=20 M118 remove manually the probe and continue calibration _KLICKY_STATUS_READY [gcode_macro PROBE_ACCURACY] rename_existing = _PROBE_ACCURACY description = Probe Z-height accuracy at current XY position with klicky automount gcode = {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set max_x = printer["gcode_macro _User_Variables"].max_bed_x|float %} {% set max_y = printer["gcode_macro _User_Variables"].max_bed_y|float %} {% set probe_offset_x = printer['configfile'].config["probe"]["x_offset"]|float %} {% set probe_offset_y = printer['configfile'].config["probe"]["y_offset"]|float %} {% if not 'xyz' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X, Y and Z Axis First!") } {% endif %} _KlickyDebug msg="probe_accuracy Axis homed" _KlickyDebug msg="probe_accuracy Variables max_x={max_x},max_y={max_y},probe_offset_x={probe_offset_x},probe_offset_y={probe_offset_y}" _entry_point function=PROBE_ACCURACY {% if printer['gcode_move'].position.y > (max_y - probe_offset_y) or printer['gcode_move'].position.y < - probe_offset_y or printer['gcode_move'].position.x > (max_x - probe_offset_x) or printer['gcode_move'].position.x < - probe_offset_x %} { action_raise_error("Must perform PROBE_ACCURACY with the probe above the BED, check klicky_variables bed size!") } {% endif%} _CheckProbe action=query Attach_Probe back=1 _KlickyDebug msg="probe_accuracy calling klipper probe accuracy" _PROBE_ACCURACY {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} Dock_Probe back=1 _exit_point function=PROBE_ACCURACY move=1 [force_move] enable_force_move = True [homing_override] axes = xyz gcode = _User_Variables {% set verbose = printer["gcode_macro _User_Variables"].verbose %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z %} {% set enable_z_hop = printer["gcode_macro _User_Variables"].enable_z_hop %} {% set kinematic_z = 0 %} {% set dock_on_zhome = printer["gcode_macro _User_Variables"].dock_on_zhome|default(True) %} {% set attachmove_x = printer["gcode_macro _User_Variables"].attachmove_x|default(0) %} {% set attachmove_y = printer["gcode_macro _User_Variables"].attachmove_y|default(0) %} {% set attachmove_z = printer["gcode_macro _User_Variables"].attachmove_z|default(0) %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set home_backoff_x = printer["gcode_macro _User_Variables"].home_backoff_x|default(0) %} {% set home_backoff_y = printer["gcode_macro _User_Variables"].home_backoff_y|default(0) %} {% set override_homing = printer["gcode_macro _User_Variables"].override_homing|default('') %} _klicky_check_variables_version _CheckProbe action=query {% set home_x, home_y, home_z, leave_probe_attached = False, False, False, False %} {% if 'PROBE_LOCK' in params%} {% if verbose %} { action_respond_info("PROBE_LOCK = True") } {% endif %} {% set leave_probe_attached = True %} {% endif %} {% if not 'X' in params and not 'Y' in params and not 'Z' in params %} {% set home_x, home_y, home_z = True, True, True %} _KlickyDebug msg="homing_override goint to home all axes" {% else %} {% if 'X' in params %} {% set home_x = True %} _KlickyDebug msg="homing_override goint to home X" {% endif %} {% if 'Y' in params %} {% set home_y = True %} _KlickyDebug msg="homing_override goint to home Y" {% endif %} {% if 'Z' in params %} {% set home_z = True %} _KlickyDebug msg="homing_override goint to home Z" {% endif %} {% if 'X' in params and 'Y' in params and 'Z' in params %} _Homing_Variables reset=1 _KlickyDebug msg="homing_override goint to home all axes" {% endif %} {% endif %} _entry_point function=homing_override _KLICKY_STATUS_HOMING {% if 'z' not in printer.toolhead.homed_axes %} {% if not enable_z_hop %} _KlickyDebug msg="homing_override z_hop disabled" {% set kinematic_z = safe_z %} {% set safe_z = 0 %} {% endif %} {% endif %} {% if home_z %} {% if 'z' in printer.toolhead.homed_axes %} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="homing_override toolhead too low, with homed axes, raising it to {safe_z}mm" {% if verbose %} { action_respond_info("moving to a safe Z distance") } {% endif %} G0 Z{safe_z} F{z_drop_feedrate} {% endif %} {% else %} {% if verbose %} { action_respond_info("Z not homed, forcing full G28") } {% endif %} _KlickyDebug msg="homing_override Z not homed, setting position as X=Y=0 Z={kinematic_z}" SET_KINEMATIC_POSITION X=0 Y=0 Z={kinematic_z} {% if printer.toolhead.position.z < safe_z %} _KlickyDebug msg="homing_override toolhead too low, raising it to {safe_z}mm" {% if verbose %} { action_respond_info("moving to a safe Z distance") } {% endif %} G0 Z{safe_z} F{z_drop_feedrate} {% endif %} {% set home_x, home_y, home_z = True, True, True %} {% endif %} {% endif %} {% if ((attachmove_y == 0 and override_homing == '' ) or (override_homing == 'Y'))%} {% if home_y %} {% if override_homing == 'Y' %} _KlickyDebug msg="homing_override Y homing first override, due to override_homing = Y" {% else %} _KlickyDebug msg="homing_override Y homing first override, due to attachmove_y = 0" {% endif %} {% if verbose %} { action_respond_info("Homing Y") } {% endif %} {% if printer["gcode_macro _HOME_Y"] is defined %} _KlickyDebug msg="homing_override calling _HOME_Y external script to handle the Y homing" _HOME_Y {% else %} _KlickyDebug msg="homing_override Homing Y G28 Y0" G28 Y0 {% if home_backoff_y != 0 %} {% if (printer.configfile.settings.stepper_y.position_endstop > (printer.configfile.settings.stepper_y.position_min|default(0) + printer.configfile.settings.stepper_y.position_max)/2) %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop-home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop - home_backoff_y|int} F{travel_feedrate} {% else %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate} {%endif %} {%endif %} {% endif %} {% endif %} {% set home_y = False %} {% endif %} {% if home_x %} {% if verbose %} { action_respond_info("Homing X") } {% endif %} {% if printer["gcode_macro _HOME_X"] is defined %} _KlickyDebug msg="homing_override calling _HOME_X external script to handle the X homing" _HOME_X {% else %} _KlickyDebug msg="homing_override Homing X, G28 X0" G28 X0 {% if home_backoff_x != 0 %} {% if (printer.configfile.settings.stepper_x.position_endstop > (printer.configfile.settings.stepper_x.position_min|default(0) + printer.configfile.settings.stepper_x.position_max)/2) %} _KlickyDebug msg="homing_override backing off X endstop, G0 X{printer.configfile.settings.stepper_x.position_endstop - home_backoff_x|int} F{travel_feedrate}" G0 X{printer.configfile.settings.stepper_x.position_endstop - home_backoff_x|int} F{travel_feedrate} {% else %} _KlickyDebug msg="homing_override backing off X endstop, G0 X{printer.configfile.settings.stepper_x.position_endstop + home_backoff_x|int} F{travel_feedrate}" G0 X{printer.configfile.settings.stepper_x.position_endstop + home_backoff_x|int} F{travel_feedrate} {%endif %} {%endif %} {% endif %} {% endif %} {% if home_y %} {% if verbose %} { action_respond_info("Homing Y") } {% endif %} {% if printer["gcode_macro _HOME_Y"] is defined %} _KlickyDebug msg="homing_override calling _HOME_Y external script to handle the Y homing" _HOME_Y {% else %} _KlickyDebug msg="homing_override Homing Y, G28 Y0" G28 Y0 {% if home_backoff_y != 0 %} {% if (printer.configfile.settings.stepper_y.position_endstop > (printer.configfile.settings.stepper_y.position_min|default(0) + printer.configfile.settings.stepper_y.position_max)/2) %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop - home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop - home_backoff_y|int} F{travel_feedrate} {% else %} _KlickyDebug msg="homing_override backing off Y endstop, G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate}" G0 Y{printer.configfile.settings.stepper_y.position_endstop + home_backoff_y|int} F{travel_feedrate} {%endif %} {%endif %} {% endif %} {% endif %} {% if home_z %} {% if verbose %} { action_respond_info("Homing Z") } {% endif %} {% if printer['configfile'].config["stepper_z"]["endstop_pin"] == 'probe:z_virtual_endstop' %} _KlickyDebug msg="homing_override probe configured as a virtual Z endstop attaching probe" Attach_Probe {% if leave_probe_attached %} _Probe_Lock {% endif %} {% elif dock_on_zhome == True %} Dock_Probe {% endif %} _Home_Z {% if printer['configfile'].config["stepper_z"]["endstop_pin"] == 'probe:z_virtual_endstop' %} _KlickyDebug msg="homing_override probe no longer required, docking probe" Dock_Probe {% elif dock_on_zhome == False %} Dock_Probe {% endif %} {% endif %} _CheckProbe action=query _Park_Toolhead _exit_point function=homing_override _KLICKY_STATUS_READY [gcode_macro _Umbilical_Path] gcode = {% set umbilical = printer["gcode_macro _User_Variables"].umbilical %} {% set umbilical_x = printer["gcode_macro _User_Variables"].umbilical_x %} {% set umbilical_y = printer["gcode_macro _User_Variables"].umbilical_y %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% if umbilical %} _entry_point function=Umbilical_Path _KlickyDebug msg="_Umbilical_Path moving to G0 X{umbilical_x} Y{umbilical_y} Z{safe_z} F{travel_feedrate}" G0 X{umbilical_x} Y{umbilical_y} Z{safe_z} F{travel_feedrate} _exit_point function=Umbilical_Path {% endif %} [gcode_macro _Home_Z] gcode = {% set z_endstop_x = printer["gcode_macro _Probe_Variables"].z_endstop_x %} {% set z_endstop_y = printer["gcode_macro _Probe_Variables"].z_endstop_y %} {% set safe_z = printer["gcode_macro _User_Variables"].safe_z|float %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set z_drop_feedrate = printer["gcode_macro _User_Variables"].z_drop_speed * 60 %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} _entry_point function=Home_Z {% if not 'xy' in printer.toolhead.homed_axes %} { action_raise_error("Must Home X and Y Axis First!") } {% else %} _KlickyDebug msg="_Home_Z XY Axis homed" {% if not 'z' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Resetting Z position to zero") } {% endif %} _KlickyDebug msg="_Home_Z Z not homed, setting position as X=Y=Z=0" SET_KINEMATIC_POSITION Z=0 {% endif %} _KlickyDebug msg="_Home_Z moving to Z endstop position G0 X{z_endstop_x} Y{z_endstop_y} F{travel_feedrate}" G0 X{z_endstop_x} Y{z_endstop_y} F{travel_feedrate} _KlickyDebug msg="_Home_Z Homing Z G28 Z" G28 Z0 _KlickyDebug msg="_Home_Z toolhead too low, raising it to {safe_z}mm" G0 Z{safe_z} F{z_drop_feedrate} {% endif %} _exit_point function=Home_Z [gcode_macro _CheckProbe] variable_probe_state = 0 gcode = Query_Probe _SetProbeState action={ params.ACTION } [gcode_macro _SetProbeState] gcode = {% set query_probe_triggered = printer.probe.last_query %} {% set action = params.ACTION|default('') %} {% if query_probe_triggered %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_attached VALUE={ False } {% else %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_attached VALUE={ True } {% endif %} {% if action == 'query' %} SET_GCODE_VARIABLE MACRO=_Probe_Variables VARIABLE=probe_state VALUE={ query_probe_triggered } {% endif %} {% if not query_probe_triggered and action == 'dock' %} { action_raise_error("Probe dock failed!") } {% endif %} {% if query_probe_triggered and action == 'attach' %} { action_raise_error("Probe attach failed!") } {% endif %} [gcode_macro _Park_Toolhead] gcode = {% set park_toolhead = printer["gcode_macro _User_Variables"].park_toolhead %} {% set parkposition_x = printer["gcode_macro _User_Variables"].parkposition_x %} {% set parkposition_y = printer["gcode_macro _User_Variables"].parkposition_y %} {% set parkposition_z = printer["gcode_macro _User_Variables"].parkposition_z %} {% set travel_feedrate = printer["gcode_macro _User_Variables"].travel_speed * 60 %} {% set verbose = printer["gcode_macro _User_Variables"].verbose %} _entry_point function=Park_Toolhead {% if park_toolhead and 'xyz' in printer.toolhead.homed_axes %} {% if verbose %} { action_respond_info("Parking Toolhead") } {% endif %} {% if parkposition_z == -128 %} _KlickyDebug msg="_Park_Toolhead moving to G0 X{parkposition_x} Y{parkposition_y} F{travel_feedrate}" G0 X{parkposition_x} Y{parkposition_y} F{travel_feedrate} {% else %} _KlickyDebug msg="_Park_Toolhead moving to G0 X{parkposition_x} Y{parkposition_y} Z{parkposition_z} F{travel_feedrate}" G0 X{parkposition_x} Y{parkposition_y} Z{parkposition_z} F{travel_feedrate} {% endif %} {% endif %} _exit_point function=Park_Toolhead [gcode_macro _klicky_status_ready] gcode = {% if printer['gcode_macro status_ready'] is defined %} _KlickyDebug msg="_klicky_status_ready activating the LED STATUS_READY" STATUS_READY {% endif %} [gcode_macro _klicky_status_busy] gcode = {% if printer['gcode_macro status_busy'] is defined %} _KlickyDebug msg="_klicky_status_busy activating the LED STATUS_BUSY" STATUS_BUSY {% endif %} [gcode_macro _klicky_status_leveling] gcode = {% if printer['gcode_macro status_leveling'] is defined %} _KlickyDebug msg="_klicky_status_leveling activating the LED STATUS_LEVELING" STATUS_LEVELING {% endif %} [gcode_macro _klicky_status_homing] gcode = {% if printer['gcode_macro status_homing'] is defined %} _KlickyDebug msg="_klicky_status_homing activating the LED STATUS_HOMING" STATUS_HOMING {% endif %} [gcode_macro _klicky_status_cleaning] gcode = {% if printer['gcode_macro status_cleaning'] is defined %} _KlickyDebug msg="_klicky_status_cleaning activating the LED STATUS_CLEANING" STATUS_CLEANING {% endif %} [gcode_macro _klicky_status_meshing] gcode = {% if printer['gcode_macro status_meshing'] is defined %} _KlickyDebug msg="_klicky_status_meshing activating the LED STATUS_MESHING" STATUS_MESHING {% endif %} [gcode_macro _klicky_status_calibrating_z] gcode = {% if printer['gcode_macro status_calibrating_z'] is defined %} _KlickyDebug msg="_klicky_status_calibrating_z activating the LED STATUS_CALIBRATING_Z" STATUS_CALIBRATING_Z {% endif %} [gcode_macro BED_MESH_CALIBRATE] rename_existing = _BED_MESH_CALIBRATE description = Perform Mesh Bed Leveling with klicky automount gcode = {% set V = printer["gcode_macro _User_Variables"].verbose %} {% if V %} { action_respond_info("Bed Mesh Calibrate") } {% endif %} _CheckProbe action=query G90 Attach_Probe _KLICKY_STATUS_MESHING _BED_MESH_CALIBRATE {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} Dock_Probe [gcode_macro SCREWS_TILT_CALCULATE] rename_existing = _SCREWS_TILT_CALCULATE description = gcode = {% set V = printer["gcode_macro _User_Variables"].verbose %} {% if V %} { action_respond_info("Screws Tilt Adjust") } {% endif %} _CheckProbe action=query G90 Attach_Probe _KLICKY_STATUS_LEVELING _SCREWS_TILT_CALCULATE {% for p in params %}{'%s=%s ' % (p, params[p])}{% endfor %} Dock_Probe [bed_mesh] speed = 5000 probe_count = 25,25 relative_reference_index = 312 horizontal_move_z = 10 split_delta_z = 0.01 move_check_distance = 3 mesh_pps = 5, 5 mesh_min = 0,25 mesh_max = 216,220 algorithm = bicubic [endstop_phase] [gcode_arcs] [input_shaper] shaper_freq_y = 34.2 shaper_type_y = ei shaper_freq_x = 50.4 shaper_type_x = mzv [printer] kinematics = corexz max_velocity = 500 max_accel = 500 max_z_velocity = 50 max_z_accel = 200 square_corner_velocity = 4.0 [screws_tilt_adjust] screw1 = 25, 5 screw1_name = front left screw screw2 = 195, 5 screw2_name = front right screw screw3 = 195, 175 screw3_name = rear right screw screw4 = 25, 175 screw4_name = rear left screw horizontal_move_z = 10 speed = 1000 screw_thread = CW-M4 [idle_timeout] gcode = CLEAR_PAUSE TURN_OFF_HEATERS M84 M300 M300 _display_light_off _enclosure_light_off [virtual_sdcard] path = ~/gcode_files [save_variables] filename = ~/klipper_config/variables.cfg [firmware_retraction] retract_length = 7 retract_speed = 75 unretract_extra_length = 0 unretract_speed = 20 [pause_resume] [display_status] [exclude_object] [bed_mesh default] version = 1 points = 0.075000, 0.081250, 0.115625, 0.068750, 0.050000, 0.050000, 0.043750, 0.053125, 0.053125, 0.075000, 0.037500, 0.068750, 0.090625, 0.081250, 0.100000, 0.084375, 0.112500, 0.137500, 0.175000, 0.165625, 0.200000, 0.318750, 0.318750, 0.321875, 0.340625 0.103125, 0.115625, 0.106250, 0.100000, 0.090625, 0.100000, 0.075000, 0.081250, 0.081250, 0.090625, 0.075000, 0.078125, 0.071875, 0.112500, 0.115625, 0.103125, 0.128125, 0.137500, 0.150000, 0.153125, 0.181250, 0.246875, 0.246875, 0.259375, 0.312500 0.134375, 0.118750, 0.143750, 0.100000, 0.100000, 0.093750, 0.084375, 0.075000, 0.081250, 0.078125, 0.059375, 0.103125, 0.118750, 0.090625, 0.115625, 0.106250, 0.100000, 0.146875, 0.125000, 0.150000, 0.190625, 0.306250, 0.300000, 0.281250, 0.318750 0.118750, 0.153125, 0.121875, 0.096875, 0.128125, 0.090625, 0.090625, 0.068750, 0.081250, 0.106250, 0.090625, 0.084375, 0.078125, 0.109375, 0.106250, 0.081250, 0.131250, 0.146875, 0.140625, 0.134375, 0.171875, 0.228125, 0.231250, 0.225000, 0.268750 0.112500, 0.115625, 0.118750, 0.090625, 0.106250, 0.081250, 0.084375, 0.065625, 0.062500, 0.053125, 0.053125, 0.056250, 0.065625, 0.065625, 0.056250, 0.056250, 0.075000, 0.100000, 0.121875, 0.109375, 0.137500, 0.243750, 0.243750, 0.234375, 0.268750 0.128125, 0.125000, 0.140625, 0.087500, 0.093750, 0.096875, 0.081250, 0.087500, 0.065625, 0.100000, 0.065625, 0.059375, 0.068750, 0.078125, 0.087500, 0.068750, 0.087500, 0.109375, 0.100000, 0.106250, 0.150000, 0.209375, 0.175000, 0.181250, 0.246875 0.137500, 0.140625, 0.125000, 0.112500, 0.090625, 0.121875, 0.081250, 0.068750, 0.053125, 0.071875, 0.056250, 0.071875, 0.068750, 0.084375, 0.078125, 0.053125, 0.068750, 0.096875, 0.081250, 0.078125, 0.131250, 0.218750, 0.221875, 0.187500, 0.215625 0.137500, 0.156250, 0.118750, 0.075000, 0.103125, 0.100000, 0.059375, 0.075000, 0.046875, 0.071875, 0.056250, 0.059375, 0.059375, 0.065625, 0.068750, 0.037500, 0.050000, 0.087500, 0.065625, 0.087500, 0.103125, 0.143750, 0.175000, 0.162500, 0.218750 0.125000, 0.109375, 0.118750, 0.084375, 0.087500, 0.068750, 0.056250, 0.037500, 0.053125, 0.031250, 0.012500, 0.025000, 0.050000, 0.062500, 0.056250, 0.037500, 0.034375, 0.075000, 0.050000, 0.075000, 0.112500, 0.203125, 0.206250, 0.184375, 0.196875 0.140625, 0.162500, 0.093750, 0.093750, 0.084375, 0.075000, 0.050000, 0.034375, 0.025000, 0.050000, 0.031250, 0.040625, 0.037500, 0.050000, 0.043750, 0.043750, 0.046875, 0.059375, 0.071875, 0.081250, 0.100000, 0.171875, 0.159375, 0.137500, 0.168750 0.121875, 0.125000, 0.121875, 0.093750, 0.062500, 0.059375, 0.043750, 0.031250, 0.021875, 0.034375, 0.021875, 0.028125, 0.028125, 0.037500, 0.025000, 0.031250, 0.031250, 0.065625, 0.059375, 0.059375, 0.100000, 0.190625, 0.196875, 0.156250, 0.159375 0.115625, 0.134375, 0.096875, 0.068750, 0.056250, 0.053125, 0.034375, 0.031250, 0.015625, 0.056250, 0.021875, 0.015625, 0.009375, 0.018750, 0.034375, 0.021875, 0.043750, 0.068750, 0.050000, 0.081250, 0.084375, 0.137500, 0.128125, 0.128125, 0.165625 0.128125, 0.137500, 0.106250, 0.081250, 0.059375, 0.037500, 0.046875, 0.021875, 0.037500, 0.028125, -0.009375, -0.012500, 0.000000, -0.006250, 0.025000, 0.009375, 0.034375, 0.056250, 0.068750, 0.059375, 0.112500, 0.206250, 0.184375, 0.156250, 0.187500 0.115625, 0.128125, 0.096875, 0.071875, 0.065625, 0.034375, 0.025000, 0.021875, 0.018750, 0.037500, -0.006250, -0.009375, -0.003125, -0.006250, 0.015625, 0.021875, 0.025000, 0.056250, 0.059375, 0.078125, 0.121875, 0.178125, 0.165625, 0.162500, 0.171875 0.118750, 0.118750, 0.093750, 0.068750, 0.065625, 0.043750, 0.037500, 0.021875, 0.025000, 0.012500, -0.031250, -0.028125, -0.006250, 0.003125, 0.009375, 0.009375, 0.034375, 0.081250, 0.056250, 0.084375, 0.106250, 0.221875, 0.190625, 0.165625, 0.181250 0.128125, 0.121875, 0.087500, 0.050000, 0.056250, 0.037500, 0.031250, 0.015625, 0.012500, 0.015625, -0.009375, 0.003125, -0.006250, 0.006250, 0.015625, 0.015625, 0.021875, 0.053125, 0.056250, 0.071875, 0.112500, 0.187500, 0.162500, 0.143750, 0.181250 0.125000, 0.112500, 0.081250, 0.106250, 0.056250, 0.059375, 0.040625, 0.012500, -0.006250, 0.000000, -0.021875, -0.006250, 0.012500, 0.037500, 0.003125, 0.000000, 0.021875, 0.065625, 0.053125, 0.078125, 0.128125, 0.237500, 0.203125, 0.181250, 0.231250 0.137500, 0.134375, 0.087500, 0.053125, 0.053125, 0.075000, 0.025000, 0.021875, 0.003125, 0.012500, -0.003125, 0.031250, 0.034375, 0.028125, 0.031250, 0.043750, 0.034375, 0.065625, 0.075000, 0.140625, 0.100000, 0.171875, 0.162500, 0.200000, 0.225000 0.128125, 0.125000, 0.093750, 0.068750, 0.053125, 0.065625, 0.037500, -0.009375, -0.006250, 0.006250, -0.025000, 0.003125, 0.031250, 0.031250, 0.050000, 0.015625, 0.043750, 0.071875, 0.075000, 0.109375, 0.156250, 0.243750, 0.221875, 0.196875, 0.215625 0.140625, 0.103125, 0.093750, 0.059375, 0.059375, 0.059375, 0.003125, -0.006250, 0.000000, 0.021875, 0.015625, 0.018750, 0.053125, 0.065625, 0.065625, 0.037500, 0.046875, 0.081250, 0.096875, 0.112500, 0.131250, 0.181250, 0.190625, 0.206250, 0.271875 0.137500, 0.100000, 0.059375, 0.053125, 0.021875, 0.018750, 0.000000, 0.003125, -0.012500, 0.003125, -0.018750, 0.018750, 0.021875, 0.028125, 0.040625, 0.028125, 0.046875, 0.087500, 0.081250, 0.121875, 0.156250, 0.281250, 0.265625, 0.259375, 0.293750 0.131250, 0.118750, 0.075000, 0.040625, 0.031250, 0.018750, 0.003125, -0.003125, -0.003125, 0.012500, -0.009375, 0.040625, 0.040625, 0.068750, 0.046875, 0.043750, 0.062500, 0.115625, 0.131250, 0.153125, 0.168750, 0.237500, 0.243750, 0.253125, 0.300000 0.131250, 0.100000, 0.065625, 0.065625, 0.028125, 0.000000, -0.009375, -0.003125, 0.000000, -0.003125, -0.009375, 0.012500, 0.025000, 0.043750, 0.053125, 0.062500, 0.062500, 0.112500, 0.146875, 0.162500, 0.203125, 0.318750, 0.318750, 0.284375, 0.321875 0.131250, 0.121875, 0.056250, 0.040625, 0.015625, -0.003125, -0.012500, -0.018750, -0.028125, 0.000000, 0.003125, 0.025000, 0.034375, 0.046875, 0.050000, 0.071875, 0.093750, 0.140625, 0.165625, 0.200000, 0.243750, 0.306250, 0.300000, 0.309375, 0.378125 0.140625, 0.109375, 0.071875, 0.059375, 0.028125, 0.018750, 0.012500, -0.028125, -0.040625, -0.009375, -0.015625, -0.018750, 0.028125, 0.025000, 0.056250, 0.068750, 0.087500, 0.134375, 0.165625, 0.196875, 0.287500, 0.400000, 0.403125, 0.371875, 0.406250 tension = 0.2 min_x = 0.0 algo = bicubic y_count = 25 mesh_y_pps = 5 min_y = 25.0 x_count = 25 max_y = 219.88 mesh_x_pps = 5 max_x = 216.0 ======================= Declaration of '__main __tune' hides previous menuitem declaration Declaration of '__main __octoprint' hides previous menuitem declaration Declaration of '__main __octoprint __pause' hides previous menuitem declaration Declaration of '__main __octoprint __resume' hides previous menuitem declaration Declaration of '__main __octoprint __abort' hides previous menuitem declaration BMxx80: Oversampling: Temp 2x Humid 2x Pressure 2x BMxx80: IIR: 1x Extruder max_extrude_ratio=41.575169 mcu 'mcu': Starting serial connect webhooks client 4127110408: New connection webhooks client 4127110408: Client info {'program': 'Moonraker', 'version': 'v0.7.1-747-g779997c'} Loaded MCU 'mcu' 105 commands (v0.10.0-638-g9727f00e / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34) MCU 'mcu' config: BUS_PINS_i2c1=P0.1,P0.0 BUS_PINS_i2c0=P0.28,P0.27 BUS_PINS_i2c2=P0.11,P0.10 BUS_PINS_i2c1a=P0.20,P0.19 BUS_PINS_ssp1=P0.8,P0.9,P0.7 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_ssp0=P0.17,P0.18,P0.15 PWM_MAX=255 CLOCK_FREQ=100000000 RESERVE_PINS_USB=P0.30,P0.29,P2.9 MCU=lpc1768 STATS_SUMSQ_BASE=256 mcu 'psu': Starting serial connect Loaded MCU 'psu' 105 commands (v0.10.0-638-g9727f00e / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34) MCU 'psu' config: BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_spi1c=gpio24,gpio27,gpio26 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1a=gpio8,gpio11,gpio10 STATS_SUMSQ_BASE=256 BUS_PINS_i2c1d=gpio14,gpio15 BUS_PINS_i2c1b=gpio6,gpio7 STEPPER_BOTH_EDGE=1 BUS_PINS_i2c1a=gpio2,gpio3 ADC_MAX=4095 PWM_MAX=255 BUS_PINS_spi0b=gpio4,gpio7,gpio6 MCU=rp2040 CLOCK_FREQ=12000000 mcu 'toolhead': Starting CAN connect Created a socket Loaded MCU 'toolhead' 107 commands (v0.10.0-638-g9727f00e / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34) MCU 'toolhead' config: BUS_PINS_spi0a=gpio0,gpio3,gpio2 BUS_PINS_i2c0h=gpio28,gpio29 BUS_PINS_spi0c=gpio16,gpio19,gpio18 BUS_PINS_spi0d=gpio20,gpio23,gpio22 BUS_PINS_i2c0b=gpio4,gpio5 BUS_PINS_i2c0c=gpio8,gpio9 BUS_PINS_i2c1c=gpio10,gpio11 BUS_PINS_i2c0a=gpio0,gpio1 BUS_PINS_i2c0f=gpio20,gpio21 BUS_PINS_i2c0g=gpio24,gpio25 BUS_PINS_i2c1g=gpio26,gpio27 BUS_PINS_i2c0e=gpio16,gpio17 BUS_PINS_i2c0d=gpio12,gpio13 BUS_PINS_i2c1e=gpio18,gpio19 BUS_PINS_i2c1f=gpio22,gpio23 BUS_PINS_spi1c=gpio24,gpio27,gpio26 BUS_PINS_spi1b=gpio12,gpio15,gpio14 BUS_PINS_spi1a=gpio8,gpio11,gpio10 STATS_SUMSQ_BASE=256 RECEIVE_WINDOW=192 BUS_PINS_i2c1d=gpio14,gpio15 CANBUS_FREQUENCY=500000 RESERVE_PINS_CAN=gpio4,gpio5 STEPPER_BOTH_EDGE=1 BUS_PINS_i2c1a=gpio2,gpio3 ADC_MAX=4095 PWM_MAX=255 BUS_PINS_i2c1b=gpio6,gpio7 BUS_PINS_spi0b=gpio4,gpio7,gpio6 MCU=rp2040 CLOCK_FREQ=12000000 mcu_temperature 'toolhead' nominal base=437.226612 slope=-1917.489831 Sending MCU 'mcu' printer configuration... Configured MCU 'mcu' (1024 moves) Sending MCU 'psu' printer configuration... Configured MCU 'psu' (1024 moves) Sending MCU 'toolhead' printer configuration... Configured MCU 'toolhead' (1024 moves) Starting heater checks for heater_bed bme280: Found Chip BME280 at 0x76 bed_mesh: generated points Index | Tool Adjusted | Probe 0 | (0.0, 0.0) | (0.0, 25.0) 1 | (9.0, 0.0) | (9.0, 25.0) 2 | (18.0, 0.0) | (18.0, 25.0) 3 | (27.0, 0.0) | (27.0, 25.0) 4 | (36.0, 0.0) | (36.0, 25.0) 5 | (45.0, 0.0) | (45.0, 25.0) 6 | (54.0, 0.0) | (54.0, 25.0) 7 | (63.0, 0.0) | (63.0, 25.0) 8 | (72.0, 0.0) | (72.0, 25.0) 9 | (81.0, 0.0) | (81.0, 25.0) 10 | (90.0, 0.0) | (90.0, 25.0) 11 | (99.0, 0.0) | (99.0, 25.0) 12 | (108.0, 0.0) | (108.0, 25.0) 13 | (117.0, 0.0) | (117.0, 25.0) 14 | (126.0, 0.0) | (126.0, 25.0) 15 | (135.0, 0.0) | (135.0, 25.0) 16 | (144.0, 0.0) | (144.0, 25.0) 17 | (153.0, 0.0) | (153.0, 25.0) 18 | (162.0, 0.0) | (162.0, 25.0) 19 | (171.0, 0.0) | (171.0, 25.0) 20 | (180.0, 0.0) | (180.0, 25.0) 21 | (189.0, 0.0) | (189.0, 25.0) 22 | (198.0, 0.0) | (198.0, 25.0) 23 | (207.0, 0.0) | (207.0, 25.0) 24 | (216.0, 0.0) | (216.0, 25.0) 25 | (216.0, 8.1) | (216.0, 33.1) 26 | (207.0, 8.1) | (207.0, 33.1) 27 | (198.0, 8.1) | (198.0, 33.1) 28 | (189.0, 8.1) | (189.0, 33.1) 29 | (180.0, 8.1) | (180.0, 33.1) 30 | (171.0, 8.1) | (171.0, 33.1) 31 | (162.0, 8.1) | (162.0, 33.1) 32 | (153.0, 8.1) | (153.0, 33.1) 33 | (144.0, 8.1) | (144.0, 33.1) 34 | (135.0, 8.1) | (135.0, 33.1) 35 | (126.0, 8.1) | (126.0, 33.1) 36 | (117.0, 8.1) | (117.0, 33.1) 37 | (108.0, 8.1) | (108.0, 33.1) 38 | (99.0, 8.1) | (99.0, 33.1) 39 | (90.0, 8.1) | (90.0, 33.1) 40 | (81.0, 8.1) | (81.0, 33.1) 41 | (72.0, 8.1) | (72.0, 33.1) 42 | (63.0, 8.1) | (63.0, 33.1) 43 | (54.0, 8.1) | (54.0, 33.1) 44 | (45.0, 8.1) | (45.0, 33.1) 45 | (36.0, 8.1) | (36.0, 33.1) 46 | (27.0, 8.1) | (27.0, 33.1) 47 | (18.0, 8.1) | (18.0, 33.1) 48 | (9.0, 8.1) | (9.0, 33.1) 49 | (0.0, 8.1) | (0.0, 33.1) 50 | (0.0, 16.2) | (0.0, 41.2) 51 | (9.0, 16.2) | (9.0, 41.2) 52 | (18.0, 16.2) | (18.0, 41.2) 53 | (27.0, 16.2) | (27.0, 41.2) 54 | (36.0, 16.2) | (36.0, 41.2) 55 | (45.0, 16.2) | (45.0, 41.2) 56 | (54.0, 16.2) | (54.0, 41.2) 57 | (63.0, 16.2) | (63.0, 41.2) 58 | (72.0, 16.2) | (72.0, 41.2) 59 | (81.0, 16.2) | (81.0, 41.2) 60 | (90.0, 16.2) | (90.0, 41.2) 61 | (99.0, 16.2) | (99.0, 41.2) 62 | (108.0, 16.2) | (108.0, 41.2) 63 | (117.0, 16.2) | (117.0, 41.2) 64 | (126.0, 16.2) | (126.0, 41.2) 65 | (135.0, 16.2) | (135.0, 41.2) 66 | (144.0, 16.2) | (144.0, 41.2) 67 | (153.0, 16.2) | (153.0, 41.2) 68 | (162.0, 16.2) | (162.0, 41.2) 69 | (171.0, 16.2) | (171.0, 41.2) 70 | (180.0, 16.2) | (180.0, 41.2) 71 | (189.0, 16.2) | (189.0, 41.2) 72 | (198.0, 16.2) | (198.0, 41.2) 73 | (207.0, 16.2) | (207.0, 41.2) 74 | (216.0, 16.2) | (216.0, 41.2) 75 | (216.0, 24.4) | (216.0, 49.4) 76 | (207.0, 24.4) | (207.0, 49.4) 77 | (198.0, 24.4) | (198.0, 49.4) 78 | (189.0, 24.4) | (189.0, 49.4) 79 | (180.0, 24.4) | (180.0, 49.4) 80 | (171.0, 24.4) | (171.0, 49.4) 81 | (162.0, 24.4) | (162.0, 49.4) 82 | (153.0, 24.4) | (153.0, 49.4) 83 | (144.0, 24.4) | (144.0, 49.4) 84 | (135.0, 24.4) | (135.0, 49.4) 85 | (126.0, 24.4) | (126.0, 49.4) 86 | (117.0, 24.4) | (117.0, 49.4) 87 | (108.0, 24.4) | (108.0, 49.4) 88 | (99.0, 24.4) | (99.0, 49.4) 89 | (90.0, 24.4) | (90.0, 49.4) 90 | (81.0, 24.4) | (81.0, 49.4) 91 | (72.0, 24.4) | (72.0, 49.4) 92 | (63.0, 24.4) | (63.0, 49.4) 93 | (54.0, 24.4) | (54.0, 49.4) 94 | (45.0, 24.4) | (45.0, 49.4) 95 | (36.0, 24.4) | (36.0, 49.4) 96 | (27.0, 24.4) | (27.0, 49.4) 97 | (18.0, 24.4) | (18.0, 49.4) 98 | (9.0, 24.4) | (9.0, 49.4) 99 | (0.0, 24.4) | (0.0, 49.4) 100 | (0.0, 32.5) | (0.0, 57.5) 101 | (9.0, 32.5) | (9.0, 57.5) 102 | (18.0, 32.5) | (18.0, 57.5) 103 | (27.0, 32.5) | (27.0, 57.5) 104 | (36.0, 32.5) | (36.0, 57.5) 105 | (45.0, 32.5) | (45.0, 57.5) 106 | (54.0, 32.5) | (54.0, 57.5) 107 | (63.0, 32.5) | (63.0, 57.5) 108 | (72.0, 32.5) | (72.0, 57.5) 109 | (81.0, 32.5) | (81.0, 57.5) 110 | (90.0, 32.5) | (90.0, 57.5) 111 | (99.0, 32.5) | (99.0, 57.5) 112 | (108.0, 32.5) | (108.0, 57.5) 113 | (117.0, 32.5) | (117.0, 57.5) 114 | (126.0, 32.5) | (126.0, 57.5) 115 | (135.0, 32.5) | (135.0, 57.5) 116 | (144.0, 32.5) | (144.0, 57.5) 117 | (153.0, 32.5) | (153.0, 57.5) 118 | (162.0, 32.5) | (162.0, 57.5) 119 | (171.0, 32.5) | (171.0, 57.5) 120 | (180.0, 32.5) | (180.0, 57.5) 121 | (189.0, 32.5) | (189.0, 57.5) 122 | (198.0, 32.5) | (198.0, 57.5) 123 | (207.0, 32.5) | (207.0, 57.5) 124 | (216.0, 32.5) | (216.0, 57.5) 125 | (216.0, 40.6) | (216.0, 65.6) 126 | (207.0, 40.6) | (207.0, 65.6) 127 | (198.0, 40.6) | (198.0, 65.6) 128 | (189.0, 40.6) | (189.0, 65.6) 129 | (180.0, 40.6) | (180.0, 65.6) 130 | (171.0, 40.6) | (171.0, 65.6) 131 | (162.0, 40.6) | (162.0, 65.6) 132 | (153.0, 40.6) | (153.0, 65.6) 133 | (144.0, 40.6) | (144.0, 65.6) 134 | (135.0, 40.6) | (135.0, 65.6) 135 | (126.0, 40.6) | (126.0, 65.6) 136 | (117.0, 40.6) | (117.0, 65.6) 137 | (108.0, 40.6) | (108.0, 65.6) 138 | (99.0, 40.6) | (99.0, 65.6) 139 | (90.0, 40.6) | (90.0, 65.6) 140 | (81.0, 40.6) | (81.0, 65.6) 141 | (72.0, 40.6) | (72.0, 65.6) 142 | (63.0, 40.6) | (63.0, 65.6) 143 | (54.0, 40.6) | (54.0, 65.6) 144 | (45.0, 40.6) | (45.0, 65.6) 145 | (36.0, 40.6) | (36.0, 65.6) 146 | (27.0, 40.6) | (27.0, 65.6) 147 | (18.0, 40.6) | (18.0, 65.6) 148 | (9.0, 40.6) | (9.0, 65.6) 149 | (0.0, 40.6) | (0.0, 65.6) 150 | (0.0, 48.7) | (0.0, 73.7) 151 | (9.0, 48.7) | (9.0, 73.7) 152 | (18.0, 48.7) | (18.0, 73.7) 153 | (27.0, 48.7) | (27.0, 73.7) 154 | (36.0, 48.7) | (36.0, 73.7) 155 | (45.0, 48.7) | (45.0, 73.7) 156 | (54.0, 48.7) | (54.0, 73.7) 157 | (63.0, 48.7) | (63.0, 73.7) 158 | (72.0, 48.7) | (72.0, 73.7) 159 | (81.0, 48.7) | (81.0, 73.7) 160 | (90.0, 48.7) | (90.0, 73.7) 161 | (99.0, 48.7) | (99.0, 73.7) 162 | (108.0, 48.7) | (108.0, 73.7) 163 | (117.0, 48.7) | (117.0, 73.7) 164 | (126.0, 48.7) | (126.0, 73.7) 165 | (135.0, 48.7) | (135.0, 73.7) 166 | (144.0, 48.7) | (144.0, 73.7) 167 | (153.0, 48.7) | (153.0, 73.7) 168 | (162.0, 48.7) | (162.0, 73.7) 169 | (171.0, 48.7) | (171.0, 73.7) 170 | (180.0, 48.7) | (180.0, 73.7) 171 | (189.0, 48.7) | (189.0, 73.7) 172 | (198.0, 48.7) | (198.0, 73.7) 173 | (207.0, 48.7) | (207.0, 73.7) 174 | (216.0, 48.7) | (216.0, 73.7) 175 | (216.0, 56.8) | (216.0, 81.8) 176 | (207.0, 56.8) | (207.0, 81.8) 177 | (198.0, 56.8) | (198.0, 81.8) 178 | (189.0, 56.8) | (189.0, 81.8) 179 | (180.0, 56.8) | (180.0, 81.8) 180 | (171.0, 56.8) | (171.0, 81.8) 181 | (162.0, 56.8) | (162.0, 81.8) 182 | (153.0, 56.8) | (153.0, 81.8) 183 | (144.0, 56.8) | (144.0, 81.8) 184 | (135.0, 56.8) | (135.0, 81.8) 185 | (126.0, 56.8) | (126.0, 81.8) 186 | (117.0, 56.8) | (117.0, 81.8) 187 | (108.0, 56.8) | (108.0, 81.8) 188 | (99.0, 56.8) | (99.0, 81.8) 189 | (90.0, 56.8) | (90.0, 81.8) 190 | (81.0, 56.8) | (81.0, 81.8) 191 | (72.0, 56.8) | (72.0, 81.8) 192 | (63.0, 56.8) | (63.0, 81.8) 193 | (54.0, 56.8) | (54.0, 81.8) 194 | (45.0, 56.8) | (45.0, 81.8) 195 | (36.0, 56.8) | (36.0, 81.8) 196 | (27.0, 56.8) | (27.0, 81.8) 197 | (18.0, 56.8) | (18.0, 81.8) 198 | (9.0, 56.8) | (9.0, 81.8) 199 | (0.0, 56.8) | (0.0, 81.8) 200 | (0.0, 65.0) | (0.0, 90.0) 201 | (9.0, 65.0) | (9.0, 90.0) 202 | (18.0, 65.0) | (18.0, 90.0) 203 | (27.0, 65.0) | (27.0, 90.0) 204 | (36.0, 65.0) | (36.0, 90.0) 205 | (45.0, 65.0) | (45.0, 90.0) 206 | (54.0, 65.0) | (54.0, 90.0) 207 | (63.0, 65.0) | (63.0, 90.0) 208 | (72.0, 65.0) | (72.0, 90.0) 209 | (81.0, 65.0) | (81.0, 90.0) 210 | (90.0, 65.0) | (90.0, 90.0) 211 | (99.0, 65.0) | (99.0, 90.0) 212 | (108.0, 65.0) | (108.0, 90.0) 213 | (117.0, 65.0) | (117.0, 90.0) 214 | (126.0, 65.0) | (126.0, 90.0) 215 | (135.0, 65.0) | (135.0, 90.0) 216 | (144.0, 65.0) | (144.0, 90.0) 217 | (153.0, 65.0) | (153.0, 90.0) 218 | (162.0, 65.0) | (162.0, 90.0) 219 | (171.0, 65.0) | (171.0, 90.0) 220 | (180.0, 65.0) | (180.0, 90.0) 221 | (189.0, 65.0) | (189.0, 90.0) 222 | (198.0, 65.0) | (198.0, 90.0) 223 | (207.0, 65.0) | (207.0, 90.0) 224 | (216.0, 65.0) | (216.0, 90.0) 225 | (216.0, 73.1) | (216.0, 98.1) 226 | (207.0, 73.1) | (207.0, 98.1) 227 | (198.0, 73.1) | (198.0, 98.1) 228 | (189.0, 73.1) | (189.0, 98.1) 229 | (180.0, 73.1) | (180.0, 98.1) 230 | (171.0, 73.1) | (171.0, 98.1) 231 | (162.0, 73.1) | (162.0, 98.1) 232 | (153.0, 73.1) | (153.0, 98.1) 233 | (144.0, 73.1) | (144.0, 98.1) 234 | (135.0, 73.1) | (135.0, 98.1) 235 | (126.0, 73.1) | (126.0, 98.1) 236 | (117.0, 73.1) | (117.0, 98.1) 237 | (108.0, 73.1) | (108.0, 98.1) 238 | (99.0, 73.1) | (99.0, 98.1) 239 | (90.0, 73.1) | (90.0, 98.1) 240 | (81.0, 73.1) | (81.0, 98.1) 241 | (72.0, 73.1) | (72.0, 98.1) 242 | (63.0, 73.1) | (63.0, 98.1) 243 | (54.0, 73.1) | (54.0, 98.1) 244 | (45.0, 73.1) | (45.0, 98.1) 245 | (36.0, 73.1) | (36.0, 98.1) 246 | (27.0, 73.1) | (27.0, 98.1) 247 | (18.0, 73.1) | (18.0, 98.1) 248 | (9.0, 73.1) | (9.0, 98.1) 249 | (0.0, 73.1) | (0.0, 98.1) 250 | (0.0, 81.2) | (0.0, 106.2) 251 | (9.0, 81.2) | (9.0, 106.2) 252 | (18.0, 81.2) | (18.0, 106.2) 253 | (27.0, 81.2) | (27.0, 106.2) 254 | (36.0, 81.2) | (36.0, 106.2) 255 | (45.0, 81.2) | (45.0, 106.2) 256 | (54.0, 81.2) | (54.0, 106.2) 257 | (63.0, 81.2) | (63.0, 106.2) 258 | (72.0, 81.2) | (72.0, 106.2) 259 | (81.0, 81.2) | (81.0, 106.2) 260 | (90.0, 81.2) | (90.0, 106.2) 261 | (99.0, 81.2) | (99.0, 106.2) 262 | (108.0, 81.2) | (108.0, 106.2) 263 | (117.0, 81.2) | (117.0, 106.2) 264 | (126.0, 81.2) | (126.0, 106.2) 265 | (135.0, 81.2) | (135.0, 106.2) 266 | (144.0, 81.2) | (144.0, 106.2) 267 | (153.0, 81.2) | (153.0, 106.2) 268 | (162.0, 81.2) | (162.0, 106.2) 269 | (171.0, 81.2) | (171.0, 106.2) 270 | (180.0, 81.2) | (180.0, 106.2) 271 | (189.0, 81.2) | (189.0, 106.2) 272 | (198.0, 81.2) | (198.0, 106.2) 273 | (207.0, 81.2) | (207.0, 106.2) 274 | (216.0, 81.2) | (216.0, 106.2) 275 | (216.0, 89.3) | (216.0, 114.3) 276 | (207.0, 89.3) | (207.0, 114.3) 277 | (198.0, 89.3) | (198.0, 114.3) 278 | (189.0, 89.3) | (189.0, 114.3) 279 | (180.0, 89.3) | (180.0, 114.3) 280 | (171.0, 89.3) | (171.0, 114.3) 281 | (162.0, 89.3) | (162.0, 114.3) 282 | (153.0, 89.3) | (153.0, 114.3) 283 | (144.0, 89.3) | (144.0, 114.3) 284 | (135.0, 89.3) | (135.0, 114.3) 285 | (126.0, 89.3) | (126.0, 114.3) 286 | (117.0, 89.3) | (117.0, 114.3) 287 | (108.0, 89.3) | (108.0, 114.3) 288 | (99.0, 89.3) | (99.0, 114.3) 289 | (90.0, 89.3) | (90.0, 114.3) 290 | (81.0, 89.3) | (81.0, 114.3) 291 | (72.0, 89.3) | (72.0, 114.3) 292 | (63.0, 89.3) | (63.0, 114.3) 293 | (54.0, 89.3) | (54.0, 114.3) 294 | (45.0, 89.3) | (45.0, 114.3) 295 | (36.0, 89.3) | (36.0, 114.3) 296 | (27.0, 89.3) | (27.0, 114.3) 297 | (18.0, 89.3) | (18.0, 114.3) 298 | (9.0, 89.3) | (9.0, 114.3) 299 | (0.0, 89.3) | (0.0, 114.3) 300 | (0.0, 97.4) | (0.0, 122.4) 301 | (9.0, 97.4) | (9.0, 122.4) 302 | (18.0, 97.4) | (18.0, 122.4) 303 | (27.0, 97.4) | (27.0, 122.4) 304 | (36.0, 97.4) | (36.0, 122.4) 305 | (45.0, 97.4) | (45.0, 122.4) 306 | (54.0, 97.4) | (54.0, 122.4) 307 | (63.0, 97.4) | (63.0, 122.4) 308 | (72.0, 97.4) | (72.0, 122.4) 309 | (81.0, 97.4) | (81.0, 122.4) 310 | (90.0, 97.4) | (90.0, 122.4) 311 | (99.0, 97.4) | (99.0, 122.4) 312 | (108.0, 97.4) | (108.0, 122.4) 313 | (117.0, 97.4) | (117.0, 122.4) 314 | (126.0, 97.4) | (126.0, 122.4) 315 | (135.0, 97.4) | (135.0, 122.4) 316 | (144.0, 97.4) | (144.0, 122.4) 317 | (153.0, 97.4) | (153.0, 122.4) 318 | (162.0, 97.4) | (162.0, 122.4) 319 | (171.0, 97.4) | (171.0, 122.4) 320 | (180.0, 97.4) | (180.0, 122.4) 321 | (189.0, 97.4) | (189.0, 122.4) 322 | (198.0, 97.4) | (198.0, 122.4) 323 | (207.0, 97.4) | (207.0, 122.4) 324 | (216.0, 97.4) | (216.0, 122.4) 325 | (216.0, 105.6) | (216.0, 130.6) 326 | (207.0, 105.6) | (207.0, 130.6) 327 | (198.0, 105.6) | (198.0, 130.6) 328 | (189.0, 105.6) | (189.0, 130.6) 329 | (180.0, 105.6) | (180.0, 130.6) 330 | (171.0, 105.6) | (171.0, 130.6) 331 | (162.0, 105.6) | (162.0, 130.6) 332 | (153.0, 105.6) | (153.0, 130.6) 333 | (144.0, 105.6) | (144.0, 130.6) 334 | (135.0, 105.6) | (135.0, 130.6) 335 | (126.0, 105.6) | (126.0, 130.6) 336 | (117.0, 105.6) | (117.0, 130.6) 337 | (108.0, 105.6) | (108.0, 130.6) 338 | (99.0, 105.6) | (99.0, 130.6) 339 | (90.0, 105.6) | (90.0, 130.6) 340 | (81.0, 105.6) | (81.0, 130.6) 341 | (72.0, 105.6) | (72.0, 130.6) 342 | (63.0, 105.6) | (63.0, 130.6) 343 | (54.0, 105.6) | (54.0, 130.6) 344 | (45.0, 105.6) | (45.0, 130.6) 345 | (36.0, 105.6) | (36.0, 130.6) 346 | (27.0, 105.6) | (27.0, 130.6) 347 | (18.0, 105.6) | (18.0, 130.6) 348 | (9.0, 105.6) | (9.0, 130.6) 349 | (0.0, 105.6) | (0.0, 130.6) 350 | (0.0, 113.7) | (0.0, 138.7) 351 | (9.0, 113.7) | (9.0, 138.7) 352 | (18.0, 113.7) | (18.0, 138.7) 353 | (27.0, 113.7) | (27.0, 138.7) 354 | (36.0, 113.7) | (36.0, 138.7) 355 | (45.0, 113.7) | (45.0, 138.7) 356 | (54.0, 113.7) | (54.0, 138.7) 357 | (63.0, 113.7) | (63.0, 138.7) 358 | (72.0, 113.7) | (72.0, 138.7) 359 | (81.0, 113.7) | (81.0, 138.7) 360 | (90.0, 113.7) | (90.0, 138.7) 361 | (99.0, 113.7) | (99.0, 138.7) 362 | (108.0, 113.7) | (108.0, 138.7) 363 | (117.0, 113.7) | (117.0, 138.7) 364 | (126.0, 113.7) | (126.0, 138.7) 365 | (135.0, 113.7) | (135.0, 138.7) 366 | (144.0, 113.7) | (144.0, 138.7) 367 | (153.0, 113.7) | (153.0, 138.7) 368 | (162.0, 113.7) | (162.0, 138.7) 369 | (171.0, 113.7) | (171.0, 138.7) 370 | (180.0, 113.7) | (180.0, 138.7) 371 | (189.0, 113.7) | (189.0, 138.7) 372 | (198.0, 113.7) | (198.0, 138.7) 373 | (207.0, 113.7) | (207.0, 138.7) 374 | (216.0, 113.7) | (216.0, 138.7) 375 | (216.0, 121.8) | (216.0, 146.8) 376 | (207.0, 121.8) | (207.0, 146.8) 377 | (198.0, 121.8) | (198.0, 146.8) 378 | (189.0, 121.8) | (189.0, 146.8) 379 | (180.0, 121.8) | (180.0, 146.8) 380 | (171.0, 121.8) | (171.0, 146.8) 381 | (162.0, 121.8) | (162.0, 146.8) 382 | (153.0, 121.8) | (153.0, 146.8) 383 | (144.0, 121.8) | (144.0, 146.8) 384 | (135.0, 121.8) | (135.0, 146.8) 385 | (126.0, 121.8) | (126.0, 146.8) 386 | (117.0, 121.8) | (117.0, 146.8) 387 | (108.0, 121.8) | (108.0, 146.8) 388 | (99.0, 121.8) | (99.0, 146.8) 389 | (90.0, 121.8) | (90.0, 146.8) 390 | (81.0, 121.8) | (81.0, 146.8) 391 | (72.0, 121.8) | (72.0, 146.8) 392 | (63.0, 121.8) | (63.0, 146.8) 393 | (54.0, 121.8) | (54.0, 146.8) 394 | (45.0, 121.8) | (45.0, 146.8) 395 | (36.0, 121.8) | (36.0, 146.8) 396 | (27.0, 121.8) | (27.0, 146.8) 397 | (18.0, 121.8) | (18.0, 146.8) 398 | (9.0, 121.8) | (9.0, 146.8) 399 | (0.0, 121.8) | (0.0, 146.8) 400 | (0.0, 129.9) | (0.0, 154.9) 401 | (9.0, 129.9) | (9.0, 154.9) 402 | (18.0, 129.9) | (18.0, 154.9) 403 | (27.0, 129.9) | (27.0, 154.9) 404 | (36.0, 129.9) | (36.0, 154.9) 405 | (45.0, 129.9) | (45.0, 154.9) 406 | (54.0, 129.9) | (54.0, 154.9) 407 | (63.0, 129.9) | (63.0, 154.9) 408 | (72.0, 129.9) | (72.0, 154.9) 409 | (81.0, 129.9) | (81.0, 154.9) 410 | (90.0, 129.9) | (90.0, 154.9) 411 | (99.0, 129.9) | (99.0, 154.9) 412 | (108.0, 129.9) | (108.0, 154.9) 413 | (117.0, 129.9) | (117.0, 154.9) 414 | (126.0, 129.9) | (126.0, 154.9) 415 | (135.0, 129.9) | (135.0, 154.9) 416 | (144.0, 129.9) | (144.0, 154.9) 417 | (153.0, 129.9) | (153.0, 154.9) 418 | (162.0, 129.9) | (162.0, 154.9) 419 | (171.0, 129.9) | (171.0, 154.9) 420 | (180.0, 129.9) | (180.0, 154.9) 421 | (189.0, 129.9) | (189.0, 154.9) 422 | (198.0, 129.9) | (198.0, 154.9) 423 | (207.0, 129.9) | (207.0, 154.9) 424 | (216.0, 129.9) | (216.0, 154.9) 425 | (216.0, 138.0) | (216.0, 163.0) 426 | (207.0, 138.0) | (207.0, 163.0) 427 | (198.0, 138.0) | (198.0, 163.0) 428 | (189.0, 138.0) | (189.0, 163.0) 429 | (180.0, 138.0) | (180.0, 163.0) 430 | (171.0, 138.0) | (171.0, 163.0) 431 | (162.0, 138.0) | (162.0, 163.0) 432 | (153.0, 138.0) | (153.0, 163.0) 433 | (144.0, 138.0) | (144.0, 163.0) 434 | (135.0, 138.0) | (135.0, 163.0) 435 | (126.0, 138.0) | (126.0, 163.0) 436 | (117.0, 138.0) | (117.0, 163.0) 437 | (108.0, 138.0) | (108.0, 163.0) 438 | (99.0, 138.0) | (99.0, 163.0) 439 | (90.0, 138.0) | (90.0, 163.0) 440 | (81.0, 138.0) | (81.0, 163.0) 441 | (72.0, 138.0) | (72.0, 163.0) 442 | (63.0, 138.0) | (63.0, 163.0) 443 | (54.0, 138.0) | (54.0, 163.0) 444 | (45.0, 138.0) | (45.0, 163.0) 445 | (36.0, 138.0) | (36.0, 163.0) 446 | (27.0, 138.0) | (27.0, 163.0) 447 | (18.0, 138.0) | (18.0, 163.0) 448 | (9.0, 138.0) | (9.0, 163.0) 449 | (0.0, 138.0) | (0.0, 163.0) 450 | (0.0, 146.2) | (0.0, 171.2) 451 | (9.0, 146.2) | (9.0, 171.2) 452 | (18.0, 146.2) | (18.0, 171.2) 453 | (27.0, 146.2) | (27.0, 171.2) 454 | (36.0, 146.2) | (36.0, 171.2) 455 | (45.0, 146.2) | (45.0, 171.2) 456 | (54.0, 146.2) | (54.0, 171.2) 457 | (63.0, 146.2) | (63.0, 171.2) 458 | (72.0, 146.2) | (72.0, 171.2) 459 | (81.0, 146.2) | (81.0, 171.2) 460 | (90.0, 146.2) | (90.0, 171.2) 461 | (99.0, 146.2) | (99.0, 171.2) 462 | (108.0, 146.2) | (108.0, 171.2) 463 | (117.0, 146.2) | (117.0, 171.2) 464 | (126.0, 146.2) | (126.0, 171.2) 465 | (135.0, 146.2) | (135.0, 171.2) 466 | (144.0, 146.2) | (144.0, 171.2) 467 | (153.0, 146.2) | (153.0, 171.2) 468 | (162.0, 146.2) | (162.0, 171.2) 469 | (171.0, 146.2) | (171.0, 171.2) 470 | (180.0, 146.2) | (180.0, 171.2) 471 | (189.0, 146.2) | (189.0, 171.2) 472 | (198.0, 146.2) | (198.0, 171.2) 473 | (207.0, 146.2) | (207.0, 171.2) 474 | (216.0, 146.2) | (216.0, 171.2) 475 | (216.0, 154.3) | (216.0, 179.3) 476 | (207.0, 154.3) | (207.0, 179.3) 477 | (198.0, 154.3) | (198.0, 179.3) 478 | (189.0, 154.3) | (189.0, 179.3) 479 | (180.0, 154.3) | (180.0, 179.3) 480 | (171.0, 154.3) | (171.0, 179.3) 481 | (162.0, 154.3) | (162.0, 179.3) 482 | (153.0, 154.3) | (153.0, 179.3) 483 | (144.0, 154.3) | (144.0, 179.3) 484 | (135.0, 154.3) | (135.0, 179.3) 485 | (126.0, 154.3) | (126.0, 179.3) 486 | (117.0, 154.3) | (117.0, 179.3) 487 | (108.0, 154.3) | (108.0, 179.3) 488 | (99.0, 154.3) | (99.0, 179.3) 489 | (90.0, 154.3) | (90.0, 179.3) 490 | (81.0, 154.3) | (81.0, 179.3) 491 | (72.0, 154.3) | (72.0, 179.3) 492 | (63.0, 154.3) | (63.0, 179.3) 493 | (54.0, 154.3) | (54.0, 179.3) 494 | (45.0, 154.3) | (45.0, 179.3) 495 | (36.0, 154.3) | (36.0, 179.3) 496 | (27.0, 154.3) | (27.0, 179.3) 497 | (18.0, 154.3) | (18.0, 179.3) 498 | (9.0, 154.3) | (9.0, 179.3) 499 | (0.0, 154.3) | (0.0, 179.3) 500 | (0.0, 162.4) | (0.0, 187.4) 501 | (9.0, 162.4) | (9.0, 187.4) 502 | (18.0, 162.4) | (18.0, 187.4) 503 | (27.0, 162.4) | (27.0, 187.4) 504 | (36.0, 162.4) | (36.0, 187.4) 505 | (45.0, 162.4) | (45.0, 187.4) 506 | (54.0, 162.4) | (54.0, 187.4) 507 | (63.0, 162.4) | (63.0, 187.4) 508 | (72.0, 162.4) | (72.0, 187.4) 509 | (81.0, 162.4) | (81.0, 187.4) 510 | (90.0, 162.4) | (90.0, 187.4) 511 | (99.0, 162.4) | (99.0, 187.4) 512 | (108.0, 162.4) | (108.0, 187.4) 513 | (117.0, 162.4) | (117.0, 187.4) 514 | (126.0, 162.4) | (126.0, 187.4) 515 | (135.0, 162.4) | (135.0, 187.4) 516 | (144.0, 162.4) | (144.0, 187.4) 517 | (153.0, 162.4) | (153.0, 187.4) 518 | (162.0, 162.4) | (162.0, 187.4) 519 | (171.0, 162.4) | (171.0, 187.4) 520 | (180.0, 162.4) | (180.0, 187.4) 521 | (189.0, 162.4) | (189.0, 187.4) 522 | (198.0, 162.4) | (198.0, 187.4) 523 | (207.0, 162.4) | (207.0, 187.4) 524 | (216.0, 162.4) | (216.0, 187.4) 525 | (216.0, 170.5) | (216.0, 195.5) 526 | (207.0, 170.5) | (207.0, 195.5) 527 | (198.0, 170.5) | (198.0, 195.5) 528 | (189.0, 170.5) | (189.0, 195.5) 529 | (180.0, 170.5) | (180.0, 195.5) 530 | (171.0, 170.5) | (171.0, 195.5) 531 | (162.0, 170.5) | (162.0, 195.5) 532 | (153.0, 170.5) | (153.0, 195.5) 533 | (144.0, 170.5) | (144.0, 195.5) 534 | (135.0, 170.5) | (135.0, 195.5) 535 | (126.0, 170.5) | (126.0, 195.5) 536 | (117.0, 170.5) | (117.0, 195.5) 537 | (108.0, 170.5) | (108.0, 195.5) 538 | (99.0, 170.5) | (99.0, 195.5) 539 | (90.0, 170.5) | (90.0, 195.5) 540 | (81.0, 170.5) | (81.0, 195.5) 541 | (72.0, 170.5) | (72.0, 195.5) 542 | (63.0, 170.5) | (63.0, 195.5) 543 | (54.0, 170.5) | (54.0, 195.5) 544 | (45.0, 170.5) | (45.0, 195.5) 545 | (36.0, 170.5) | (36.0, 195.5) 546 | (27.0, 170.5) | (27.0, 195.5) 547 | (18.0, 170.5) | (18.0, 195.5) 548 | (9.0, 170.5) | (9.0, 195.5) 549 | (0.0, 170.5) | (0.0, 195.5) 550 | (0.0, 178.6) | (0.0, 203.6) 551 | (9.0, 178.6) | (9.0, 203.6) 552 | (18.0, 178.6) | (18.0, 203.6) 553 | (27.0, 178.6) | (27.0, 203.6) 554 | (36.0, 178.6) | (36.0, 203.6) 555 | (45.0, 178.6) | (45.0, 203.6) 556 | (54.0, 178.6) | (54.0, 203.6) 557 | (63.0, 178.6) | (63.0, 203.6) 558 | (72.0, 178.6) | (72.0, 203.6) 559 | (81.0, 178.6) | (81.0, 203.6) 560 | (90.0, 178.6) | (90.0, 203.6) 561 | (99.0, 178.6) | (99.0, 203.6) 562 | (108.0, 178.6) | (108.0, 203.6) 563 | (117.0, 178.6) | (117.0, 203.6) 564 | (126.0, 178.6) | (126.0, 203.6) 565 | (135.0, 178.6) | (135.0, 203.6) 566 | (144.0, 178.6) | (144.0, 203.6) 567 | (153.0, 178.6) | (153.0, 203.6) 568 | (162.0, 178.6) | (162.0, 203.6) 569 | (171.0, 178.6) | (171.0, 203.6) 570 | (180.0, 178.6) | (180.0, 203.6) 571 | (189.0, 178.6) | (189.0, 203.6) 572 | (198.0, 178.6) | (198.0, 203.6) 573 | (207.0, 178.6) | (207.0, 203.6) 574 | (216.0, 178.6) | (216.0, 203.6) 575 | (216.0, 186.8) | (216.0, 211.8) 576 | (207.0, 186.8) | (207.0, 211.8) 577 | (198.0, 186.8) | (198.0, 211.8) 578 | (189.0, 186.8) | (189.0, 211.8) 579 | (180.0, 186.8) | (180.0, 211.8) 580 | (171.0, 186.8) | (171.0, 211.8) 581 | (162.0, 186.8) | (162.0, 211.8) 582 | (153.0, 186.8) | (153.0, 211.8) 583 | (144.0, 186.8) | (144.0, 211.8) 584 | (135.0, 186.8) | (135.0, 211.8) 585 | (126.0, 186.8) | (126.0, 211.8) 586 | (117.0, 186.8) | (117.0, 211.8) 587 | (108.0, 186.8) | (108.0, 211.8) 588 | (99.0, 186.8) | (99.0, 211.8) 589 | (90.0, 186.8) | (90.0, 211.8) 590 | (81.0, 186.8) | (81.0, 211.8) 591 | (72.0, 186.8) | (72.0, 211.8) 592 | (63.0, 186.8) | (63.0, 211.8) 593 | (54.0, 186.8) | (54.0, 211.8) 594 | (45.0, 186.8) | (45.0, 211.8) 595 | (36.0, 186.8) | (36.0, 211.8) 596 | (27.0, 186.8) | (27.0, 211.8) 597 | (18.0, 186.8) | (18.0, 211.8) 598 | (9.0, 186.8) | (9.0, 211.8) 599 | (0.0, 186.8) | (0.0, 211.8) 600 | (0.0, 194.9) | (0.0, 219.9) 601 | (9.0, 194.9) | (9.0, 219.9) 602 | (18.0, 194.9) | (18.0, 219.9) 603 | (27.0, 194.9) | (27.0, 219.9) 604 | (36.0, 194.9) | (36.0, 219.9) 605 | (45.0, 194.9) | (45.0, 219.9) 606 | (54.0, 194.9) | (54.0, 219.9) 607 | (63.0, 194.9) | (63.0, 219.9) 608 | (72.0, 194.9) | (72.0, 219.9) 609 | (81.0, 194.9) | (81.0, 219.9) 610 | (90.0, 194.9) | (90.0, 219.9) 611 | (99.0, 194.9) | (99.0, 219.9) 612 | (108.0, 194.9) | (108.0, 219.9) 613 | (117.0, 194.9) | (117.0, 219.9) 614 | (126.0, 194.9) | (126.0, 219.9) 615 | (135.0, 194.9) | (135.0, 219.9) 616 | (144.0, 194.9) | (144.0, 219.9) 617 | (153.0, 194.9) | (153.0, 219.9) 618 | (162.0, 194.9) | (162.0, 219.9) 619 | (171.0, 194.9) | (171.0, 219.9) 620 | (180.0, 194.9) | (180.0, 219.9) 621 | (189.0, 194.9) | (189.0, 219.9) 622 | (198.0, 194.9) | (198.0, 219.9) 623 | (207.0, 194.9) | (207.0, 219.9) 624 | (216.0, 194.9) | (216.0, 219.9) bed_mesh: relative_reference_index 312 is (108.00, 122.44) Starting heater checks for extruder Stats 196466.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000012 mcu_task_stddev=0.000011 bytes_write=2059 bytes_read=5131 bytes_retransmit=9 bytes_invalid=0 send_seq=197 receive_seq=197 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=3214 freq=99997795 psu: mcu_awake=0.004 mcu_task_avg=0.000009 mcu_task_stddev=0.000011 bytes_write=2494 bytes_read=4248 bytes_retransmit=9 bytes_invalid=0 send_seq=140 receive_seq=128 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=1205 stalled_bytes=0 freq=12000388 adj=12001474 toolhead: mcu_awake=0.022 mcu_task_avg=0.000025 mcu_task_stddev=0.000059 bytes_write=1416 bytes_read=4813 bytes_retransmit=0 bytes_invalid=0 send_seq=146 receive_seq=146 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000096 adj=12000321 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=20.5 toolhead_mcu: temp=40.6 toolhead_ntc: temp=39.5 host: temp=51.1 sysload=0.33 cputime=10.105 memavail=7312816 print_time=0.017 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.8 pwm=0.000 webhooks: registering remote method 'shutdown_machine' for connection id: 4127110408 webhooks: registering remote method 'reboot_machine' for connection id: 4127110408 webhooks: registering remote method 'pause_job_queue' for connection id: 4127110408 webhooks: registering remote method 'start_job_queue' for connection id: 4127110408 Stats 196467.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000012 mcu_task_stddev=0.000011 bytes_write=6177 bytes_read=5725 bytes_retransmit=9 bytes_invalid=0 send_seq=278 receive_seq=278 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99997931 psu: mcu_awake=0.004 mcu_task_avg=0.000009 mcu_task_stddev=0.000011 bytes_write=3861 bytes_read=4506 bytes_retransmit=9 bytes_invalid=0 send_seq=166 receive_seq=166 retransmit_seq=2 srtt=0.004 rttvar=0.005 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000357 adj=12000130 toolhead: mcu_awake=0.022 mcu_task_avg=0.000025 mcu_task_stddev=0.000059 bytes_write=1422 bytes_read=4965 bytes_retransmit=0 bytes_invalid=0 send_seq=147 receive_seq=147 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000132 adj=12000362 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.6 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.33 cputime=10.167 memavail=7312348 print_time=6.846 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196468.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000012 mcu_task_stddev=0.000011 bytes_write=6632 bytes_read=5911 bytes_retransmit=9 bytes_invalid=0 send_seq=290 receive_seq=290 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99997102 psu: mcu_awake=0.004 mcu_task_avg=0.000009 mcu_task_stddev=0.000011 bytes_write=4063 bytes_read=4604 bytes_retransmit=9 bytes_invalid=0 send_seq=172 receive_seq=172 retransmit_seq=2 srtt=0.002 rttvar=0.003 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000353 adj=12000172 toolhead: mcu_awake=0.022 mcu_task_avg=0.000025 mcu_task_stddev=0.000059 bytes_write=1428 bytes_read=5103 bytes_retransmit=0 bytes_invalid=0 send_seq=148 receive_seq=148 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999994 adj=12000390 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.6 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.39 cputime=10.244 memavail=7309056 print_time=6.846 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196469.2: gcodein=0 mcu: mcu_awake=0.005 mcu_task_avg=0.000012 mcu_task_stddev=0.000011 bytes_write=6673 bytes_read=6057 bytes_retransmit=9 bytes_invalid=0 send_seq=294 receive_seq=294 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996787 psu: mcu_awake=0.004 mcu_task_avg=0.000009 mcu_task_stddev=0.000011 bytes_write=4481 bytes_read=4736 bytes_retransmit=9 bytes_invalid=0 send_seq=182 receive_seq=182 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000357 adj=12000495 toolhead: mcu_awake=0.022 mcu_task_avg=0.000025 mcu_task_stddev=0.000059 bytes_write=1434 bytes_read=5268 bytes_retransmit=0 bytes_invalid=0 send_seq=149 receive_seq=149 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=2 freq=11999944 adj=12000348 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=51.1 sysload=0.39 cputime=10.306 memavail=7308920 print_time=9.432 buffer_time=0.015 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 probe: TRIGGERED toolhead: max_velocity: 500.000000 max_accel: 1000.000000 max_accel_to_decel: 250.000000 square_corner_velocity: 4.000000 SET_KINEMATIC_POSITION pos=0.000,0.000,0.000 Stats 196470.2: gcodein=0 mcu: mcu_awake=0.036 mcu_task_avg=0.000038 mcu_task_stddev=0.000146 bytes_write=8342 bytes_read=6884 bytes_retransmit=9 bytes_invalid=0 send_seq=348 receive_seq=348 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996678 psu: mcu_awake=0.073 mcu_task_avg=0.000277 mcu_task_stddev=0.000464 bytes_write=4660 bytes_read=4849 bytes_retransmit=9 bytes_invalid=0 send_seq=188 receive_seq=188 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000365 adj=12000651 toolhead: mcu_awake=0.009 mcu_task_avg=0.000020 mcu_task_stddev=0.000050 bytes_write=1447 bytes_read=5449 bytes_retransmit=0 bytes_invalid=0 send_seq=151 receive_seq=151 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000078 adj=12000332 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.4 host: temp=50.6 sysload=0.39 cputime=10.382 memavail=7308920 print_time=10.605 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.8 pwm=0.000 Stats 196471.2: gcodein=0 mcu: mcu_awake=0.036 mcu_task_avg=0.000038 mcu_task_stddev=0.000146 bytes_write=9527 bytes_read=7719 bytes_retransmit=9 bytes_invalid=0 send_seq=404 receive_seq=404 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996489 psu: mcu_awake=0.073 mcu_task_avg=0.000277 mcu_task_stddev=0.000464 bytes_write=4883 bytes_read=4952 bytes_retransmit=9 bytes_invalid=0 send_seq=195 receive_seq=195 retransmit_seq=2 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000399 adj=12000736 toolhead: mcu_awake=0.009 mcu_task_avg=0.000020 mcu_task_stddev=0.000050 bytes_write=1453 bytes_read=5587 bytes_retransmit=0 bytes_invalid=0 send_seq=152 receive_seq=152 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000032 adj=12000695 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.5 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.39 cputime=10.458 memavail=7308928 print_time=11.660 buffer_time=0.241 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Communication timeout during homing x Communication timeout during homing x Stats 196472.2: gcodein=0 mcu: mcu_awake=0.036 mcu_task_avg=0.000038 mcu_task_stddev=0.000146 bytes_write=10597 bytes_read=8374 bytes_retransmit=9 bytes_invalid=0 send_seq=447 receive_seq=447 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996409 psu: mcu_awake=0.073 mcu_task_avg=0.000277 mcu_task_stddev=0.000464 bytes_write=5054 bytes_read=5065 bytes_retransmit=9 bytes_invalid=0 send_seq=201 receive_seq=201 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000397 adj=12000884 toolhead: mcu_awake=0.009 mcu_task_avg=0.000020 mcu_task_stddev=0.000050 bytes_write=1546 bytes_read=5747 bytes_retransmit=0 bytes_invalid=0 send_seq=159 receive_seq=159 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999987 adj=12000560 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.7 sysload=0.39 cputime=10.565 memavail=7308928 print_time=12.475 buffer_time=0.056 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196473.2: gcodein=0 mcu: mcu_awake=0.036 mcu_task_avg=0.000038 mcu_task_stddev=0.000146 bytes_write=10643 bytes_read=8555 bytes_retransmit=9 bytes_invalid=0 send_seq=452 receive_seq=452 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996501 psu: mcu_awake=0.073 mcu_task_avg=0.000277 mcu_task_stddev=0.000464 bytes_write=5188 bytes_read=5164 bytes_retransmit=9 bytes_invalid=0 send_seq=207 receive_seq=207 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000394 adj=12000895 toolhead: mcu_awake=0.009 mcu_task_avg=0.000020 mcu_task_stddev=0.000050 bytes_write=1552 bytes_read=5762 bytes_retransmit=0 bytes_invalid=0 send_seq=160 receive_seq=160 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999969 adj=12000439 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.2 sysload=0.36 cputime=10.613 memavail=7308704 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196474.2: gcodein=0 mcu: mcu_awake=0.036 mcu_task_avg=0.000038 mcu_task_stddev=0.000146 bytes_write=11141 bytes_read=8760 bytes_retransmit=9 bytes_invalid=0 send_seq=466 receive_seq=466 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996491 psu: mcu_awake=0.073 mcu_task_avg=0.000277 mcu_task_stddev=0.000464 bytes_write=5424 bytes_read=5268 bytes_retransmit=9 bytes_invalid=0 send_seq=214 receive_seq=214 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000389 adj=12000833 toolhead: mcu_awake=0.009 mcu_task_avg=0.000020 mcu_task_stddev=0.000050 bytes_write=1558 bytes_read=5777 bytes_retransmit=0 bytes_invalid=0 send_seq=161 receive_seq=161 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999945 adj=12000340 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.7 sysload=0.36 cputime=10.674 memavail=7308488 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196475.2: gcodein=0 mcu: mcu_awake=0.020 mcu_task_avg=0.000033 mcu_task_stddev=0.000121 bytes_write=11182 bytes_read=8923 bytes_retransmit=9 bytes_invalid=0 send_seq=470 receive_seq=470 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996490 psu: mcu_awake=0.016 mcu_task_avg=0.000076 mcu_task_stddev=0.000229 bytes_write=5620 bytes_read=5401 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 stalled_bytes=0 freq=12000387 adj=12000813 toolhead: mcu_awake=0.003 mcu_task_avg=0.000018 mcu_task_stddev=0.000036 bytes_write=1564 bytes_read=5806 bytes_retransmit=0 bytes_invalid=0 send_seq=162 receive_seq=162 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999939 adj=12000285 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.36 cputime=10.725 memavail=7309248 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196476.2: gcodein=0 mcu: mcu_awake=0.020 mcu_task_avg=0.000033 mcu_task_stddev=0.000121 bytes_write=11268 bytes_read=9149 bytes_retransmit=9 bytes_invalid=0 send_seq=479 receive_seq=479 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996480 psu: mcu_awake=0.016 mcu_task_avg=0.000076 mcu_task_stddev=0.000229 bytes_write=5852 bytes_read=5505 bytes_retransmit=9 bytes_invalid=0 send_seq=228 receive_seq=228 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000386 adj=12000807 toolhead: mcu_awake=0.003 mcu_task_avg=0.000018 mcu_task_stddev=0.000036 bytes_write=1570 bytes_read=5821 bytes_retransmit=0 bytes_invalid=0 send_seq=163 receive_seq=163 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999932 adj=12000285 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.36 cputime=10.782 memavail=7309000 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Transition to shutdown state: Shutdown due to webhooks request Dumping gcode input 0 blocks Dumping 20 requests for client 4127110408 Received 196466.698372: {"id": 3909051104, "method": "objects/list", "params": {}} Received 196466.700750: {"id": 3888629024, "method": "objects/query", "params": {"objects": {"configfile": null}}} Received 196466.959192: {"id": 3875632224, "method": "register_remote_method", "params": {"response_template": {"method": "shutdown_machine"}, "remote_method": "shutdown_machine"}} Received 196466.961420: {"id": 3888629024, "method": "register_remote_method", "params": {"response_template": {"method": "reboot_machine"}, "remote_method": "reboot_machine"}} Received 196466.963256: {"id": 3888629024, "method": "register_remote_method", "params": {"response_template": {"method": "pause_job_queue"}, "remote_method": "pause_job_queue"}} Received 196466.965024: {"id": 3888629024, "method": "register_remote_method", "params": {"response_template": {"method": "start_job_queue"}, "remote_method": "start_job_queue"}} Received 196466.970744: {"id": 3877886224, "method": "objects/query", "params": {"objects": {"heaters": null}}} Received 196466.970744: {"id": 3877885552, "method": "objects/query", "params": {"objects": {"heaters": null}}} Received 196466.972448: {"id": 3875632752, "method": "objects/list", "params": {}} Received 196466.979046: {"id": 3907244960, "method": "objects/query", "params": {"objects": {"configfile": null}}} Received 196467.204401: {"id": 3877886224, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "print_stats": null, "temperature_fan controller": null, "heater_bed": null, "temperature_sensor enclosure": null, "temperature_fan psu": null, "temperature_sensor toolhead_mcu": null, "temperature_sensor host": null, "extruder": null, "temperature_sensor toolhead_ntc": null}, "response_template": {"method": "process_status_update"}}} Received 196467.204401: {"id": 3877885552, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "print_stats": null, "temperature_fan controller": null, "heater_bed": null, "temperature_sensor enclosure": null, "temperature_fan psu": null, "temperature_sensor toolhead_mcu": null, "temperature_sensor host": null, "extruder": null, "temperature_sensor toolhead_ntc": null}, "response_template": {"method": "process_status_update"}}} Received 196467.228279: {"id": 3877835440, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "print_stats": null, "temperature_fan controller": null, "heater_bed": null, "temperature_sensor enclosure": null, "temperature_fan psu": null, "temperature_sensor toolhead_mcu": null, "temperature_sensor host": null, "extruder": null, "temperature_sensor toolhead_ntc": null, "mcu": null, "mcu psu": null, "mcu toolhead": null, "bme280 enclosure": null, "fan": ["speed"], "heater_fan toolhead_hotend_fan": ["speed"]}, "response_template": {"method": "process_status_update"}}} Received 196467.567736: {"id": 3877837096, "method": "info", "params": {}} Received 196467.569579: {"id": 3877836232, "method": "objects/query", "params": {"objects": {"print_stats": null}}} Received 196467.570070: {"id": 3877835536, "method": "objects/list", "params": {}} Received 196467.780967: {"id": 3877835824, "method": "objects/subscribe", "params": {"objects": {"webhooks": null, "print_stats": null, "temperature_fan controller": null, "heater_bed": null, "temperature_sensor enclosure": null, "temperature_fan psu": null, "temperature_sensor toolhead_mcu": null, "temperature_sensor host": null, "extruder": null, "temperature_sensor toolhead_ntc": null, "mcu": null, "mcu psu": null, "mcu toolhead": null, "bme280 enclosure": null, "fan": null, "heater_fan toolhead_hotend_fan": null, "configfile": null, "heaters": null, "tmc2208 stepper_x": null, "tmc2208 stepper_y": null, "tmc2208 stepper_z": null, "neopixel enclosure": null, "display_status": null, "output_pin beeper": null, "neopixel display": null, "servo klicky_servo": null, "gcode_move": null, "probe": null, "tmc2209 extruder": null, "neopixel toolhead": null, "temperature_host host": null, "bed_mesh": null, "endstop_phase": null, "idle_timeout": null, "virtual_sdcard": null, "save_variables": null, "firmware_retraction": null, "pause_resume": null, "exclude_object": null, "motion_report": null, "query_endstops": null, "system_stats": null, "manual_probe": null, "toolhead": null}, "response_template": {"method": "process_status_update"}}} Received 196468.304097: {"id": 3877835824, "method": "gcode/help", "params": {}} Received 196468.977005: {"id": 3877838488, "method": "gcode/script", "params": {"script": "G28"}} Received 196477.035700: {"id": 3877836784, "method": "emergency_stop", "params": {}} gcode state: absolute_coord=True absolute_extrude=True base_position=[0.0, 0.0, 0.0, 0.0] last_position=[215.0, 5.0, 14.735522762345678, 0.0] homing_position=[0.0, 0.0, 0.0, 0.0] speed_factor=0.0166666666667 extrude_factor=1.0 speed=1000.0 MCU 'mcu' shutdown: Command request clocksync state: mcu_freq=100000000 last_clock=1648239203 clock_est=(196465.908 608259522 99996494.001) min_half_rtt=0.000079 min_rtt_time=196470.401 time_avg=196465.907(18.419) clock_avg=608259522.463(1841840758.117) pred_variance=4745674603.967 Dumping serial stats: bytes_write=11315 bytes_read=9277 bytes_retransmit=9 bytes_invalid=0 send_seq=484 receive_seq=484 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 100 messages Sent 0 196470.619401 196470.619401 8: seq: 10, reset_step_clock oid=11 clock=0 Sent 1 196470.620801 196470.620801 58: seq: 11, set_next_step_dir oid=11 dir=1, queue_step oid=11 interval=1103596306 count=1 add=0, queue_step oid=11 interval=218522 count=1 add=0, queue_step oid=11 interval=148889 count=2 add=-25034, queue_step oid=11 interval=103280 count=4 add=-7797, queue_step oid=11 interval=73616 count=10 add=-3433, queue_step oid=11 interval=40446 count=12 add=-1070 Sent 2 196470.621154 196470.621154 63: seq: 12, queue_step oid=11 interval=28248 count=22 add=-386, queue_step oid=11 interval=20548 count=35 add=-174, queue_step oid=11 interval=14943 count=36 add=-76, queue_step oid=11 interval=12553 count=81 add=-32, queue_step oid=11 interval=10170 count=62 add=-16, queue_step oid=11 interval=9451 count=152 add=-5, queue_step oid=11 interval=8838 count=865 add=0, queue_step oid=11 interval=9027 count=132 add=9 Sent 3 196470.621154 196470.621154 59: seq: 13, queue_step oid=11 interval=10293 count=66 add=36, queue_step oid=11 interval=12857 count=47 add=76, queue_step oid=11 interval=16662 count=26 add=212, queue_step oid=11 interval=23013 count=22 add=454, queue_step oid=11 interval=34312 count=10 add=1132, queue_step oid=11 interval=47879 count=6 add=3330, queue_step oid=11 interval=74073 count=3 add=12503 Sent 4 196470.622074 196470.622074 57: seq: 14, queue_step oid=11 interval=118108 count=3 add=13060, queue_step oid=11 interval=168477 count=1 add=0, queue_step oid=11 interval=206311 count=1 add=0, queue_step oid=11 interval=299654 count=1 add=0, trsync_start oid=13 report_clock=1125630320 report_ticks=10000000 expire_reason=2, stepper_stop_on_trigger oid=11 trsync_oid=13, trsync_set_timeout oid=13 clock=1150630320 Sent 5 196470.836318 196470.836318 20: seq: 15, endstop_home oid=12 clock=1125630320 sample_ticks=1500 sample_count=4 rest_ticks=8929 pin_value=0 trsync_oid=13 trigger_reason=1 Sent 6 196470.934282 196470.934282 16: seq: 16, set_next_step_dir oid=11 dir=0, queue_step oid=11 interval=3000997 count=1 add=0 Sent 7 196470.983708 196470.983708 62: seq: 17, queue_step oid=11 interval=218522 count=1 add=0, queue_step oid=11 interval=148889 count=2 add=-25034, queue_step oid=11 interval=103280 count=4 add=-7797, queue_step oid=11 interval=73616 count=10 add=-3433, queue_step oid=11 interval=40446 count=12 add=-1070, queue_step oid=11 interval=28248 count=22 add=-386, queue_step oid=11 interval=20548 count=35 add=-174 Sent 8 196470.983708 196470.983708 21: seq: 18, queue_step oid=11 interval=14946 count=36 add=-74, queue_step oid=11 interval=12628 count=77 add=-33 Sent 9 196471.033998 196471.033998 25: seq: 19, queue_step oid=11 interval=10276 count=62 add=-16, queue_step oid=11 interval=9544 count=154 add=-5, queue_step oid=11 interval=8931 count=876 add=0 Sent 10 196471.083035 196471.083035 12: seq: 1a, queue_step oid=11 interval=8929 count=560 add=0 Sent 11 196471.133486 196471.133486 12: seq: 1b, queue_step oid=11 interval=8928 count=560 add=0 Sent 12 196471.183663 196471.183663 19: seq: 1c, queue_step oid=11 interval=8929 count=478 add=0, trsync_set_timeout oid=13 clock=1160631025 Sent 13 196471.211473 196471.211473 10: seq: 1d, i2c_write oid=8 data='\xf2\x02' Sent 14 196471.211914 196471.211914 10: seq: 1e, i2c_write oid=8 data='\xf4I' Sent 15 196471.212451 196471.212451 10: seq: 1f, i2c_read oid=8 reg='\xf3' read_len=1 Sent 16 196471.230647 196471.230647 10: seq: 10, i2c_read oid=8 reg='\xf3' read_len=1 Sent 17 196471.232127 196471.232127 10: seq: 11, i2c_read oid=8 reg='\xf7' read_len=8 Sent 18 196471.234652 196471.234652 57: seq: 12, queue_step oid=11 interval=9118 count=139 add=10, queue_step oid=11 interval=10749 count=63 add=42, queue_step oid=11 interval=13664 count=41 add=88, queue_step oid=11 interval=17588 count=24 add=259, queue_step oid=11 interval=24786 count=18 add=461, queue_step oid=11 interval=33969 count=10 add=1224, queue_step oid=11 interval=46863 count=6 add=3750 Sent 19 196471.234652 196471.234652 44: seq: 13, queue_step oid=11 interval=72704 count=3 add=13947, queue_step oid=11 interval=116451 count=3 add=14497, queue_step oid=11 interval=167698 count=1 add=0, queue_step oid=11 interval=206312 count=1 add=0, queue_step oid=11 interval=299654 count=1 add=0 Sent 20 196471.255851 196471.255851 8: seq: 14, trsync_trigger oid=13 reason=3 Sent 21 196471.259429 196471.259429 14: seq: 15, endstop_home oid=12 clock=0 sample_ticks=0 sample_count=0 rest_ticks=0 pin_value=0 trsync_oid=0 trigger_reason=0 Sent 22 196471.259879 196471.259879 8: seq: 16, trsync_trigger oid=13 reason=3 Sent 23 196471.260676 196471.260676 7: seq: 17, stepper_get_position oid=11 Sent 24 196471.261561 196471.261561 14: seq: 18, tmcuart_send oid=1 write='\xea\x03H-\xd5' read=10 Sent 25 196471.265989 196471.265989 7: seq: 19, endstop_query_state oid=12 Sent 26 196471.266864 196471.266864 8: seq: 1a, reset_step_clock oid=11 clock=0 Sent 27 196471.274750 196471.274750 58: seq: 1b, set_next_step_dir oid=11 dir=1, queue_step oid=11 interval=1168916461 count=1 add=0, queue_step oid=11 interval=218522 count=1 add=0, queue_step oid=11 interval=148889 count=2 add=-25034, queue_step oid=11 interval=103280 count=4 add=-7797, queue_step oid=11 interval=73616 count=10 add=-3433, queue_step oid=11 interval=40446 count=12 add=-1070 Sent 28 196471.274750 196471.274750 63: seq: 1c, queue_step oid=11 interval=28248 count=22 add=-386, queue_step oid=11 interval=20548 count=35 add=-174, queue_step oid=11 interval=14958 count=44 add=-81, queue_step oid=11 interval=11663 count=71 add=-38, queue_step oid=11 interval=9206 count=74 add=-20, queue_step oid=11 interval=7955 count=142 add=-9, queue_step oid=11 interval=6794 count=105 add=-4, queue_step oid=11 interval=6525 count=182 add=-2 Sent 29 196471.275449 196471.275449 62: seq: 1d, queue_step oid=11 interval=6250 count=1937 add=0, queue_step oid=11 interval=6377 count=203 add=3, queue_step oid=11 interval=7139 count=116 add=11, queue_step oid=11 interval=8561 count=76 add=20, queue_step oid=11 interval=10271 count=60 add=47, queue_step oid=11 interval=13432 count=36 add=101, queue_step oid=11 interval=17483 count=23 add=244, queue_step oid=11 interval=23704 count=20 add=477 Sent 30 196471.278816 196471.278816 60: seq: 1e, queue_step oid=11 interval=33702 count=11 add=1283, queue_step oid=11 interval=50545 count=5 add=3773, queue_step oid=11 interval=72670 count=3 add=13972, queue_step oid=11 interval=116450 count=3 add=14498, queue_step oid=11 interval=167699 count=1 add=0, queue_step oid=11 interval=206311 count=1 add=0, queue_step oid=11 interval=299654 count=1 add=0 Sent 31 196471.313804 196471.313804 38: seq: 1f, tmcuart_send oid=1 write='\xea\x03\xe8\xad\xe1' read=10, trsync_start oid=10 report_clock=1198271188 report_ticks=1000000 expire_reason=2, stepper_stop_on_trigger oid=9 trsync_oid=10, stepper_stop_on_trigger oid=14 trsync_oid=10, trsync_set_timeout oid=10 clock=1200771188 Sent 32 196471.318223 196471.318223 14: seq: 10, tmcuart_send oid=1 write='\xea\x03( \xc3' read=10 Sent 33 196471.374802 196471.374802 14: seq: 11, tmcuart_send oid=0 write='\xea\x03\xe8\xad\xe1' read=10 Sent 34 196471.379264 196471.379264 14: seq: 12, tmcuart_send oid=2 write='\xea\x03\xe8\xad\xe1' read=10 Sent 35 196471.384166 196471.384166 14: seq: 13, tmcuart_send oid=0 write='\xea\x03( \xc3' read=10 Sent 36 196471.384757 196471.384757 6: seq: 14, get_clock Sent 37 196471.388650 196471.388650 14: seq: 15, tmcuart_send oid=2 write='\xea\x03( \xc3' read=10 Sent 38 196471.659800 196471.659800 24: seq: 16, queue_step oid=9 interval=144865240 count=1 add=0, set_next_step_dir oid=14 dir=1, queue_step oid=14 interval=144865240 count=1 add=0 Sent 39 196471.710177 196471.710177 63: seq: 17, queue_step oid=9 interval=214162 count=1 add=0, queue_step oid=14 interval=214162 count=1 add=0, queue_step oid=9 interval=145500 count=3 add=-24950, queue_step oid=14 interval=145500 count=3 add=-24950, queue_step oid=9 interval=76316 count=5 add=-6469, queue_step oid=14 interval=76316 count=5 add=-6469, queue_step oid=9 interval=49287 count=8 add=-2064 Sent 40 196471.710177 196471.710177 61: seq: 18, queue_step oid=14 interval=49287 count=8 add=-2064, queue_step oid=9 interval=34627 count=12 add=-918, queue_step oid=14 interval=34627 count=12 add=-918, queue_step oid=9 interval=24860 count=21 add=-345, queue_step oid=14 interval=24860 count=21 add=-345, queue_step oid=9 interval=18381 count=32 add=-147, queue_step oid=14 interval=18381 count=32 add=-147 Sent 41 196471.710177 196471.710177 35: seq: 19, queue_step oid=9 interval=14073 count=52 add=-66, queue_step oid=14 interval=14073 count=52 add=-66, queue_step oid=9 interval=10950 count=72 add=-33, queue_step oid=14 interval=10950 count=72 add=-33 Sent 42 196471.756407 196471.756407 14: seq: 1a, update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x10\x08' Sent 43 196471.757139 196471.757139 61: seq: 1b, update_digital_out oid=5 value=1, spi_send oid=4 data='\x10\x18\x08\x88\xc8x', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x10\x0e', update_digital_out oid=5 value=1, spi_send oid=4 data='0\x00\x00 0\xf8\xf8\x00\x00\x00\xf8\xf8\x88\x88\x88\x88\x08', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x13\x00', update_digital_out oid=5 value=1 Sent 44 196471.757812 196471.757812 56: seq: 1c, spi_send oid=4 data='\xf8\xf8\x88\x88\x88\x88\x08\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x10\x08', update_digital_out oid=5 value=1, spi_send oid=4 data='\x0c\x0e\x0b\t\x08\x0c', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x10\x0e', update_digital_out oid=5 value=1 Sent 45 196471.762953 196471.762953 59: seq: 1d, queue_step oid=9 interval=8807 count=95 add=-18, queue_step oid=14 interval=8807 count=95 add=-18, queue_step oid=9 interval=7252 count=136 add=-10, queue_step oid=14 interval=7252 count=136 add=-10, queue_step oid=9 interval=6020 count=167 add=-6, queue_step oid=14 interval=6020 count=167 add=-6, queue_step oid=9 interval=5099 count=180 add=-3, queue_step oid=14 interval=5099 count=180 add=-3 Sent 46 196471.762953 196471.762953 62: seq: 1e, queue_step oid=9 interval=4632 count=226 add=-1, queue_step oid=14 interval=4632 count=226 add=-1, queue_step oid=9 interval=4466 count=1181 add=0, queue_step oid=14 interval=4466 count=1181 add=0, spi_send oid=4 data='\x0c\x00\x00\x08\x08\x0f\x0f\x08\x08\x00\x04\x0c\x08\x08\x08\x0f\x07', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x13\x00' Sent 47 196471.768417 196471.768417 26: seq: 1f, update_digital_out oid=5 value=1, spi_send oid=4 data='\x04\x0c\x08\x08\x08\x0f\x07\x00\x00\x00\x00\x00\x00\x00\x00' Sent 48 196471.808160 196471.808160 12: seq: 10, trsync_set_timeout oid=10 clock=1200761491 Sent 49 196471.809947 196471.809947 19: seq: 11, queue_step oid=9 interval=4464 count=1120 add=0, queue_step oid=14 interval=4464 count=1120 add=0 Sent 50 196471.833469 196471.833469 8: seq: 12, trsync_trigger oid=10 reason=3 Sent 51 196471.834358 196471.834358 17: seq: 13, queue_step oid=9 interval=4957 count=1 add=0, queue_step oid=14 interval=4957 count=1 add=0 Sent 52 196471.837489 196471.837489 8: seq: 14, trsync_trigger oid=10 reason=3 Sent 53 196471.838310 196471.838310 7: seq: 15, stepper_get_position oid=9 Sent 54 196471.839485 196471.839485 14: seq: 16, tmcuart_send oid=0 write='\xea\x03H-\xd5' read=10 Sent 55 196471.844134 196471.844134 7: seq: 17, stepper_get_position oid=14 Sent 56 196471.845122 196471.845122 14: seq: 18, tmcuart_send oid=2 write='\xea\x03H-\xd5' read=10 Sent 57 196471.849495 196471.849495 11: seq: 19, reset_step_clock oid=9 clock=0, reset_step_clock oid=14 clock=0 Sent 58 196471.954304 196471.954304 29: seq: 1a, queue_digital_out oid=24 clock=1237516034 on_ticks=1, queue_digital_out oid=23 clock=1237516034 on_ticks=1, queue_digital_out oid=22 clock=1237516034 on_ticks=1 Sent 59 196472.036279 196472.036279 10: seq: 1b, i2c_write oid=8 data='\xf2\x02' Sent 60 196472.036440 196472.036440 10: seq: 1c, i2c_write oid=8 data='\xf4I' Sent 61 196472.036575 196472.036575 10: seq: 1d, i2c_read oid=8 reg='\xf3' read_len=1 Sent 62 196472.038411 196472.038411 10: seq: 1e, i2c_read oid=8 reg='\xf7' read_len=8 Sent 63 196472.369055 196472.369055 6: seq: 1f, get_clock Sent 64 196472.841308 196472.841308 10: seq: 10, i2c_write oid=8 data='\xf2\x02' Sent 65 196472.841558 196472.841558 10: seq: 11, i2c_write oid=8 data='\xf4I' Sent 66 196472.841819 196472.841819 10: seq: 12, i2c_read oid=8 reg='\xf3' read_len=1 Sent 67 196472.843253 196472.843253 10: seq: 13, i2c_read oid=8 reg='\xf7' read_len=8 Sent 68 196473.257666 196473.257666 8: seq: 14, update_digital_out oid=5 value=0 Sent 69 196473.259448 196473.259448 62: seq: 15, spi_send oid=4 data='\xb6\x10\x00', update_digital_out oid=5 value=1, spi_send oid=4 data='\x08\xf8\xf8\x88\x88', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x10\x05', update_digital_out oid=5 value=1, spi_send oid=4 data='\xf8p\x00\x80\xc0@@@\xc0\x80\x00\x00@@@\xc0', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x11\x05' Sent 70 196473.260712 196473.260712 63: seq: 16, update_digital_out oid=5 value=1, spi_send oid=4 data='\x80\x00\x00\x00\x80\xc0H\xf8\xf8\x00\x00\xc0\xc0\x00\x00\x00\xc0', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x12\x06', update_digital_out oid=5 value=1, spi_send oid=4 data='\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0 Sent 71 196473.262117 196473.262117 64: seq: 17, spi_send oid=4 data='\xb6\x15\x00', update_digital_out oid=5 value=1, spi_send oid=4 data='\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x15\x06', update_digital_out oid=5 value=1, spi_send oid=4 data='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb6\x17\x00' Sent 72 196473.264150 196473.264150 58: seq: 18, update_digital_out oid=5 value=1, spi_send oid=4 data='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x10\x00', update_digital_out oid=5 value=1, spi_send oid=4 data='\x08\x0f\x0f\x00\x01', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x10\x05', update_digital_out oid=5 value=1 Sent 73 196473.265241 196473.265241 59: seq: 19, spi_send oid=4 data='\x0f\x0e\x00\x07\x0f\t\t\t\r\x05\x00\x06\x0f\t\t\x07', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x11\x05', update_digital_out oid=5 value=1, spi_send oid=4 data="\x0f\x08\x00\x07\x0f\x08\x08\x07\x0f\x08\x00#'$$4\x1f", update_digital_out oid=5 value=0 Sent 74 196473.266498 196473.266498 64: seq: 1a, spi_send oid=4 data='\xb7\x12\x06', update_digital_out oid=5 value=1, spi_send oid=4 data='\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x15\x00', update_digital_out oid=5 value=1, spi_send oid=4 data='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0 Sent 75 196473.267782 196473.267782 64: seq: 1b, spi_send oid=4 data='\xb7\x15\x0c', update_digital_out oid=5 value=1, spi_send oid=4 data='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', update_digital_out oid=5 value=0, spi_send oid=4 data='\xb7\x16\x0c', update_digital_out oid=5 value=1, spi_send oid=4 data='\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 76 196473.353455 196473.353455 6: seq: 1c, get_clock Sent 77 196473.645850 196473.645850 10: seq: 1d, i2c_write oid=8 data='\xf2\x02' Sent 78 196473.646182 196473.646182 10: seq: 1e, i2c_write oid=8 data='\xf4I' Sent 79 196473.646679 196473.646679 10: seq: 1f, i2c_read oid=8 reg='\xf3' read_len=1 Sent 80 196473.665562 196473.665562 10: seq: 10, i2c_read oid=8 reg='\xf3' read_len=1 Sent 81 196473.667022 196473.667022 10: seq: 11, i2c_read oid=8 reg='\xf7' read_len=8 Sent 82 196474.338498 196474.338498 6: seq: 12, get_clock Sent 83 196474.476179 196474.476179 15: seq: 13, i2c_write oid=8 data='\xf2\x02', i2c_write oid=8 data='\xf4I' Sent 84 196474.476328 196474.476328 10: seq: 14, i2c_read oid=8 reg='\xf3' read_len=1 Sent 85 196474.478345 196474.478345 10: seq: 15, i2c_read oid=8 reg='\xf7' read_len=8 Sent 86 196475.280797 196475.280797 10: seq: 16, i2c_write oid=8 data='\xf2\x02' Sent 87 196475.280951 196475.280951 10: seq: 17, i2c_write oid=8 data='\xf4I' Sent 88 196475.281369 196475.281369 10: seq: 18, i2c_read oid=8 reg='\xf3' read_len=1 Sent 89 196475.282934 196475.282934 10: seq: 19, i2c_read oid=8 reg='\xf7' read_len=8 Sent 90 196475.323351 196475.323351 6: seq: 1a, get_clock Sent 91 196476.085648 196476.085648 10: seq: 1b, i2c_write oid=8 data='\xf2\x02' Sent 92 196476.085911 196476.085911 10: seq: 1c, i2c_write oid=8 data='\xf4I' Sent 93 196476.086299 196476.086299 10: seq: 1d, i2c_read oid=8 reg='\xf3' read_len=1 Sent 94 196476.087673 196476.087673 10: seq: 1e, i2c_read oid=8 reg='\xf7' read_len=8 Sent 95 196476.307636 196476.307636 6: seq: 1f, get_clock Sent 96 196476.890503 196476.890503 15: seq: 10, i2c_write oid=8 data='\xf2\x02', i2c_write oid=8 data='\xf4I' Sent 97 196476.890700 196476.890700 10: seq: 11, i2c_read oid=8 reg='\xf3' read_len=1 Sent 98 196476.892400 196476.892400 10: seq: 12, i2c_read oid=8 reg='\xf7' read_len=8 Sent 99 196477.038527 196477.038527 6: seq: 13, emergency_stop Dumping receive queue 100 messages Receive: 0 196470.512044 196470.464191 14: seq: 19, trsync_state oid=13 can_trigger=1 trigger_reason=0 clock=1068681401 Receive: 1 196470.512495 196470.464191 15: seq: 19, analog_in_state oid=18 next_clock=1098000000 value=31448 Receive: 2 196470.610308 196470.564142 14: seq: 1b, trsync_state oid=13 can_trigger=0 trigger_reason=1 clock=1078501723 Receive: 3 196470.611033 196470.610338 10: seq: 1c, trsync_state oid=13 can_trigger=0 trigger_reason=1 clock=0 Receive: 4 196470.612976 196470.612762 10: seq: 1d, trsync_state oid=13 can_trigger=0 trigger_reason=1 clock=0 Receive: 5 196470.614313 196470.614116 9: seq: 1e, stepper_position oid=11 pos=-3250 Receive: 6 196470.618392 196470.614814 18: seq: 1f, tmcuart_response oid=1 read='\n\xfaO-\x80\x00\x12H5\xe1' Receive: 7 196470.619035 196470.618877 14: seq: 10, endstop_state oid=12 homing=0 next_clock=1078500992 pin_value=0 Receive: 8 196470.802638 196470.622074 15: seq: 15, analog_in_state oid=17 next_clock=1127000000 value=22551 Receive: 9 196470.812587 196470.622074 15: seq: 15, analog_in_state oid=18 next_clock=1128000000 value=31448 Receive: 10 196471.081672 196471.033998 14: seq: 1a, trsync_state oid=13 can_trigger=1 trigger_reason=0 clock=1125630908 Receive: 11 196471.102599 196471.083035 15: seq: 1b, analog_in_state oid=17 next_clock=1157000000 value=22573 Receive: 12 196471.112587 196471.083035 15: seq: 1b, analog_in_state oid=18 next_clock=1158000000 value=31449 Receive: 13 196471.181687 196471.133486 14: seq: 1c, trsync_state oid=13 can_trigger=1 trigger_reason=0 clock=1135631025 Receive: 14 196471.213125 196471.212451 9: seq: 10, i2c_read_response oid=8 response='\r' Receive: 15 196471.231327 196471.230647 9: seq: 11, i2c_read_response oid=8 response='\x04' Receive: 16 196471.233492 196471.232127 16: seq: 12, i2c_read_response oid=8 response='d\xca\xb0\x81\xbb\xd0e\xbf' Receive: 17 196471.255783 196471.234652 14: seq: 14, trsync_state oid=13 can_trigger=0 trigger_reason=1 clock=1143038236 Receive: 18 196471.256120 196471.255851 10: seq: 15, trsync_state oid=13 can_trigger=0 trigger_reason=1 clock=0 Receive: 19 196471.260097 196471.259879 10: seq: 17, trsync_state oid=13 can_trigger=0 trigger_reason=1 clock=0 Receive: 20 196471.260873 196471.260676 9: seq: 18, stepper_position oid=11 pos=-3200 Receive: 21 196471.265163 196471.261561 18: seq: 19, tmcuart_response oid=1 read='\n\xfaO-\x80\x00\nH\xbc\xa8' Receive: 22 196471.266185 196471.265989 14: seq: 1a, endstop_state oid=12 homing=0 next_clock=1143041870 pin_value=0 Receive: 23 196471.317456 196471.313804 18: seq: 10, tmcuart_response oid=1 read='\n\xfa\xef-\xa0&\x02\x08 \x9b' Receive: 24 196471.321886 196471.318223 18: seq: 11, tmcuart_response oid=1 read='\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 25 196471.378470 196471.374802 18: seq: 12, tmcuart_response oid=0 read='\n\xfa\xef-\xe0&\x02\x08 \x90' Receive: 26 196471.382983 196471.379264 18: seq: 13, tmcuart_response oid=2 read='\n\xfa\xef-\xe0&\x02\x08 \x90' Receive: 27 196471.384953 196471.384757 11: seq: 15, clock clock=1155966045 Receive: 28 196471.387773 196471.384757 18: seq: 15, tmcuart_response oid=0 read='\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 29 196471.392250 196471.388650 18: seq: 16, tmcuart_response oid=2 read='\n\xfa/ \x80\x00\x02\x08\xa0\x89' Receive: 30 196471.402601 196471.388650 15: seq: 16, analog_in_state oid=17 next_clock=1187000000 value=22579 Receive: 31 196471.412698 196471.388650 15: seq: 16, analog_in_state oid=18 next_clock=1188000000 value=31447 Receive: 32 196471.702652 196471.659800 15: seq: 17, analog_in_state oid=17 next_clock=1217000000 value=22573 Receive: 33 196471.712670 196471.710177 15: seq: 1a, analog_in_state oid=18 next_clock=1218000000 value=31443 Receive: 34 196471.808097 196471.768417 14: seq: 10, trsync_state oid=10 can_trigger=1 trigger_reason=0 clock=1198271616 Receive: 35 196471.818055 196471.809947 14: seq: 12, trsync_state oid=10 can_trigger=1 trigger_reason=0 clock=1199271654 Receive: 36 196471.828058 196471.809947 14: seq: 12, trsync_state oid=10 can_trigger=1 trigger_reason=0 clock=1200271644 Receive: 37 196471.833382 196471.809947 14: seq: 12, trsync_state oid=10 can_trigger=0 trigger_reason=2 clock=1200762400 Receive: 38 196471.833727 196471.833469 10: seq: 13, trsync_state oid=10 can_trigger=0 trigger_reason=2 clock=0 Receive: 39 196471.837721 196471.837489 10: seq: 15, trsync_state oid=10 can_trigger=0 trigger_reason=2 clock=0 Receive: 40 196471.838628 196471.838310 9: seq: 16, stepper_position oid=9 pos=4836 Receive: 41 196471.843188 196471.839485 18: seq: 17, tmcuart_response oid=0 read='\n\xfaO-\x80\x00\x02H.\xec' Receive: 42 196471.844358 196471.844134 10: seq: 18, stepper_position oid=14 pos=-4812 Receive: 43 196471.848733 196471.845122 18: seq: 19, tmcuart_response oid=2 read='\n\xfaO-\x80\x00\x12H6\xc5' Receive: 44 196472.002682 196471.954304 15: seq: 1b, analog_in_state oid=17 next_clock=1247000000 value=22571 Receive: 45 196472.012625 196471.954304 15: seq: 1b, analog_in_state oid=18 next_clock=1248000000 value=31445 Receive: 46 196472.037553 196472.036575 9: seq: 1e, i2c_read_response oid=8 response='\x04' Receive: 47 196472.039710 196472.038411 16: seq: 1f, i2c_read_response oid=8 response='d\xca\xb0\x81\xbb\xd0e\xbf' Receive: 48 196472.302631 196472.038411 15: seq: 1f, analog_in_state oid=17 next_clock=1277000000 value=22583 Receive: 49 196472.312630 196472.038411 15: seq: 1f, analog_in_state oid=18 next_clock=1278000000 value=31448 Receive: 50 196472.369403 196472.369055 11: seq: 10, clock clock=1254396278 Receive: 51 196472.602722 196472.369055 15: seq: 10, analog_in_state oid=17 next_clock=1307000000 value=22589 Receive: 52 196472.612667 196472.369055 15: seq: 10, analog_in_state oid=18 next_clock=1308000000 value=31451 Receive: 53 196472.842537 196472.841819 9: seq: 13, i2c_read_response oid=8 response='\x04' Receive: 54 196472.844544 196472.843253 16: seq: 14, i2c_read_response oid=8 response='d\xcb`\x81\xbb\xe0e\xbe' Receive: 55 196472.902757 196472.843253 15: seq: 14, analog_in_state oid=17 next_clock=1337000000 value=22591 Receive: 56 196472.912714 196472.843253 15: seq: 14, analog_in_state oid=18 next_clock=1338000000 value=31445 Receive: 57 196473.202715 196472.843253 15: seq: 14, analog_in_state oid=17 next_clock=1367000000 value=22584 Receive: 58 196473.212676 196472.843253 15: seq: 14, analog_in_state oid=18 next_clock=1368000000 value=31449 Receive: 59 196473.353694 196473.353455 11: seq: 1d, clock clock=1352830570 Receive: 60 196473.502716 196473.353455 15: seq: 1d, analog_in_state oid=17 next_clock=1397000000 value=22587 Receive: 61 196473.512713 196473.353455 15: seq: 1d, analog_in_state oid=18 next_clock=1398000000 value=31448 Receive: 62 196473.647334 196473.646679 9: seq: 10, i2c_read_response oid=8 response='\r' Receive: 63 196473.666273 196473.665562 9: seq: 11, i2c_read_response oid=8 response='\x04' Receive: 64 196473.668307 196473.667022 16: seq: 12, i2c_read_response oid=8 response='d\xca\xc0\x81\xbc0e\xbe' Receive: 65 196473.802757 196473.667022 15: seq: 12, analog_in_state oid=17 next_clock=1427000000 value=22590 Receive: 66 196473.812672 196473.667022 15: seq: 12, analog_in_state oid=18 next_clock=1428000000 value=31450 Receive: 67 196474.102725 196473.667022 15: seq: 12, analog_in_state oid=17 next_clock=1457000000 value=22585 Receive: 68 196474.112968 196473.667022 15: seq: 12, analog_in_state oid=18 next_clock=1458000000 value=31448 Receive: 69 196474.338760 196474.338498 11: seq: 13, clock clock=1451331708 Receive: 70 196474.402789 196474.338498 15: seq: 13, analog_in_state oid=17 next_clock=1487000000 value=22597 Receive: 71 196474.412842 196474.338498 15: seq: 13, analog_in_state oid=18 next_clock=1488000000 value=31446 Receive: 72 196474.477449 196474.476328 9: seq: 15, i2c_read_response oid=8 response='\x04' Receive: 73 196474.479680 196474.478345 16: seq: 16, i2c_read_response oid=8 response='d\xca\xc0\x81\xbc0e\xbe' Receive: 74 196474.702793 196474.478345 15: seq: 16, analog_in_state oid=17 next_clock=1517000000 value=22600 Receive: 75 196474.712725 196474.478345 15: seq: 16, analog_in_state oid=18 next_clock=1518000000 value=31451 Receive: 76 196474.925531 196474.478345 17: seq: 16, stats count=608 sum=2031251 sumsq=375806288 Receive: 77 196475.002783 196474.478345 15: seq: 16, analog_in_state oid=17 next_clock=1547000000 value=22584 Receive: 78 196475.012742 196474.478345 15: seq: 16, analog_in_state oid=18 next_clock=1548000000 value=31447 Receive: 79 196475.282097 196475.281369 9: seq: 19, i2c_read_response oid=8 response='\x04' Receive: 80 196475.284206 196475.282934 16: seq: 1a, i2c_read_response oid=8 response='d\xca \x81\xbb\x90e\xbf' Receive: 81 196475.302756 196475.282934 15: seq: 1a, analog_in_state oid=17 next_clock=1577000000 value=22588 Receive: 82 196475.312762 196475.282934 15: seq: 1a, analog_in_state oid=18 next_clock=1578000000 value=31448 Receive: 83 196475.323594 196475.323351 11: seq: 1b, clock clock=1549813053 Receive: 84 196475.602818 196475.323351 15: seq: 1b, analog_in_state oid=17 next_clock=1607000000 value=22595 Receive: 85 196475.612829 196475.323351 15: seq: 1b, analog_in_state oid=18 next_clock=1608000000 value=31449 Receive: 86 196475.902827 196475.323351 15: seq: 1b, analog_in_state oid=17 next_clock=1637000000 value=22596 Receive: 87 196475.912785 196475.323351 15: seq: 1b, analog_in_state oid=18 next_clock=1638000000 value=31445 Receive: 88 196476.086898 196476.086299 9: seq: 1e, i2c_read_response oid=8 response='\x04' Receive: 89 196476.088928 196476.087673 16: seq: 1f, i2c_read_response oid=8 response='d\xc9\xd0\x81\xbb\x80e\xbe' Receive: 90 196476.202844 196476.087673 15: seq: 1f, analog_in_state oid=17 next_clock=1667000000 value=22600 Receive: 91 196476.212803 196476.087673 15: seq: 1f, analog_in_state oid=18 next_clock=1668000000 value=31448 Receive: 92 196476.307891 196476.307636 11: seq: 10, clock clock=1648239203 Receive: 93 196476.502795 196476.307636 15: seq: 10, analog_in_state oid=17 next_clock=1697000000 value=22603 Receive: 94 196476.512752 196476.307636 15: seq: 10, analog_in_state oid=18 next_clock=1698000000 value=31445 Receive: 95 196476.802858 196476.307636 15: seq: 10, analog_in_state oid=17 next_clock=1727000000 value=22590 Receive: 96 196476.812894 196476.307636 15: seq: 10, analog_in_state oid=18 next_clock=1728000000 value=31445 Receive: 97 196476.891727 196476.890700 9: seq: 12, i2c_read_response oid=8 response='\x04' Receive: 98 196476.893646 196476.892400 16: seq: 13, i2c_read_response oid=8 response='d\xca\xb0\x81\xbc\x00e\xc0' Receive: 99 196477.039128 196477.038527 12: seq: 14, shutdown clock=1721326945 static_string_id=Command request Reactor garbage collection: (196469.279898598, 0.0, 0.0) MCU 'toolhead' shutdown: Command request clocksync state: mcu_freq=12000000 last_clock=205951869 clock_est=(196466.987 85481947 11999928.887) min_half_rtt=0.000213 min_rtt_time=196474.072 time_avg=196466.987(16.494) clock_avg=85481947.064(197928169.832) pred_variance=70836624.232 clock_adj=(0.038 12000280.750) Dumping serial stats: bytes_write=1582 bytes_read=5854 bytes_retransmit=0 bytes_invalid=0 send_seq=165 receive_seq=165 retransmit_seq=0 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 100 messages Sent 0 196464.309513 196464.309513 9: seq: 11, identify offset=1960 count=40 Sent 1 196464.312178 196464.312178 9: seq: 12, identify offset=2000 count=40 Sent 2 196464.314813 196464.314813 9: seq: 13, identify offset=2040 count=40 Sent 3 196464.317488 196464.317488 9: seq: 14, identify offset=2080 count=40 Sent 4 196464.320239 196464.320239 9: seq: 15, identify offset=2120 count=40 Sent 5 196464.322990 196464.322990 9: seq: 16, identify offset=2160 count=40 Sent 6 196464.325642 196464.325642 9: seq: 17, identify offset=2200 count=40 Sent 7 196464.328767 196464.328767 9: seq: 18, identify offset=2240 count=40 Sent 8 196464.332057 196464.332057 9: seq: 19, identify offset=2280 count=40 Sent 9 196464.334903 196464.334903 9: seq: 1a, identify offset=2320 count=40 Sent 10 196464.337691 196464.337691 9: seq: 1b, identify offset=2360 count=40 Sent 11 196464.340485 196464.340485 9: seq: 1c, identify offset=2400 count=40 Sent 12 196464.343173 196464.343173 9: seq: 1d, identify offset=2440 count=40 Sent 13 196464.345919 196464.345919 9: seq: 1e, identify offset=2480 count=40 Sent 14 196464.348634 196464.348634 9: seq: 1f, identify offset=2520 count=40 Sent 15 196464.351393 196464.351393 9: seq: 10, identify offset=2560 count=40 Sent 16 196464.354162 196464.354162 9: seq: 11, identify offset=2600 count=40 Sent 17 196464.356915 196464.356915 9: seq: 12, identify offset=2640 count=40 Sent 18 196464.359725 196464.359725 9: seq: 13, identify offset=2680 count=40 Sent 19 196464.362727 196464.362727 9: seq: 14, identify offset=2720 count=40 Sent 20 196464.365795 196464.365795 9: seq: 15, identify offset=2760 count=40 Sent 21 196464.368832 196464.368832 9: seq: 16, identify offset=2800 count=40 Sent 22 196464.371726 196464.371726 9: seq: 17, identify offset=2840 count=40 Sent 23 196464.374530 196464.374530 9: seq: 18, identify offset=2880 count=40 Sent 24 196464.377292 196464.377292 9: seq: 19, identify offset=2920 count=40 Sent 25 196464.379284 196464.379284 9: seq: 1a, identify offset=2935 count=40 Sent 26 196464.394064 196464.393882 6: seq: 1b, get_canbus_id Sent 27 196464.395953 196464.395771 6: seq: 1c, get_uptime Sent 28 196464.448705 196464.448523 6: seq: 1d, get_clock Sent 29 196464.500886 196464.500704 6: seq: 1e, get_clock Sent 30 196464.552917 196464.552735 6: seq: 1f, get_clock Sent 31 196464.605807 196464.605625 6: seq: 10, get_clock Sent 32 196464.658023 196464.657841 6: seq: 11, get_clock Sent 33 196464.710000 196464.709818 6: seq: 12, get_clock Sent 34 196464.762076 196464.761894 6: seq: 13, get_clock Sent 35 196464.814334 196464.814152 6: seq: 14, get_clock Sent 36 196464.819873 196464.819691 6: seq: 15, get_clock Sent 37 196464.849411 196464.849229 6: seq: 16, get_config Sent 38 196464.854693 196464.854495 7: seq: 17, allocate_oids count=17 Sent 39 196464.855017 196464.854668 9: seq: 18, config_spi oid=2 pin=gpio1 cs_active_high=0 Sent 40 196464.855231 196464.854852 8: seq: 19, config_adxl345 oid=3 spi_oid=2 Sent 41 196464.855587 196464.855106 11: seq: 1a, config_digital_out oid=9 pin=gpio28 value=0 default_value=0 max_duration=0 Sent 42 196464.855927 196464.855257 10: seq: 1b, set_digital_out_pwm_cycle oid=9 cycle_ticks=240000 Sent 43 196464.856251 196464.855447 9: seq: 1c, config_endstop oid=0 pin=gpio25 pull_up=0 Sent 44 196464.856449 196464.855661 7: seq: 1d, config_trsync oid=1 Sent 45 196464.856837 196464.855789 13: seq: 1e, spi_set_bus oid=2 spi_bus=spi0a mode=3 rate=5000000 Sent 46 196464.857161 196464.855984 9: seq: 1f, config_analog_in oid=10 pin=ADC_TEMPERATURE Sent 47 196464.857375 196464.856144 8: seq: 10, config_analog_in oid=11 pin=gpio26 Sent 48 196464.857747 196464.856361 12: seq: 11, config_tmcuart oid=4 rx_pin=gpio8 pull_up=0 tx_pin=gpio8 bit_time=300 Sent 49 196464.858103 196464.856485 11: seq: 12, config_digital_out oid=12 pin=gpio13 value=0 default_value=0 max_duration=0 Sent 50 196464.860912 196464.859160 63: seq: 13, set_digital_out_pwm_cycle oid=12 cycle_ticks=120000, config_digital_out oid=13 pin=gpio14 value=0 default_value=0 max_duration=0, set_digital_out_pwm_cycle oid=13 cycle_ticks=120000, config_neopixel oid=5 pin=gpio12 data_size=9 bit_max_ticks=48 reset_min_ticks=600, config_endstop oid=6 pin=gpio29 pull_up=0, config_trsync oid=7, config_analog_in oid=14 pin=gpio27, config_digital_out oid=15 pin=gpio6 value=0 default_value=0 max_duration=60000000, set_digital_out_pwm_cycle oid=15 cycle_ticks=1200000, config_stepper oid=8 step_pin=gpio9 dir_pin=gpio10 invert_step=4294967295 step_pulse_ticks=0, config_digital_out oid=16 pin=gpio7 value=1 default_value=1 max_duration=0 Sent 51 196464.863730 196464.861994 62: seq: 14, finalize_config crc=2795671823, queue_digital_out oid=9 clock=62248742 on_ticks=0, query_analog_in oid=10 clock=72739859 sample_ticks=12000 sample_count=8 rest_ticks=3600000 min_value=5761 max_value=7470 range_check_count=4, query_analog_in oid=11 clock=72859859 sample_ticks=12000 sample_count=8 rest_ticks=3600000 min_value=290 max_value=32743 range_check_count=4, queue_digital_out oid=12 clock=62262123 on_ticks=0 Sent 52 196464.865638 196464.864552 39: seq: 15, queue_digital_out oid=13 clock=62263417 on_ticks=0, query_analog_in oid=14 clock=73219859 sample_ticks=12000 sample_count=8 rest_ticks=3600000 min_value=874 max_value=32332 range_check_count=4, queue_digital_out oid=15 clock=62272313 on_ticks=0, get_config Sent 53 196465.541314 196465.540910 14: seq: 16, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 54 196465.546024 196465.545620 14: seq: 17, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 55 196465.552106 196465.551702 14: seq: 18, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 56 196465.558841 196465.558263 19: seq: 19, tmcuart_send oid=4 write='\xea\x03\x080\x80\x00\n\x08\xb8\x87' read=0 Sent 57 196465.563290 196465.562886 14: seq: 1a, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 58 196465.569618 196465.569040 19: seq: 1b, tmcuart_send oid=4 write='\xea\x03h0\x80\x00\x12\x08 \xda' read=0 Sent 59 196465.573572 196465.573168 14: seq: 1c, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 60 196465.579847 196465.579269 19: seq: 1d, tmcuart_send oid=4 write='\xea\x03\x88=\x99\x06\x02h\xaa\x95' read=0 Sent 61 196465.583720 196465.583316 14: seq: 1e, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 62 196465.589971 196465.589393 19: seq: 1f, tmcuart_send oid=4 write='\xea\x03\x082\x80\x10\x9ah"\x9c' read=0 Sent 63 196465.593946 196465.593542 14: seq: 10, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 64 196465.600253 196465.599675 19: seq: 11, tmcuart_send oid=4 write='\xea\x03h2\x80\x00\x02\x08 \xfb' read=0 Sent 65 196465.604217 196465.603813 14: seq: 12, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 66 196465.610422 196465.609844 19: seq: 13, tmcuart_send oid=4 write='\xea\x03(2\x80\x00\x02\x88"\xf3' read=0 Sent 67 196465.614250 196465.613846 14: seq: 14, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 68 196465.621420 196465.620842 19: seq: 15, tmcuart_send oid=4 write='\xea\x03\x08>\xe4\x1ar\x88\xa4\x85' read=0 Sent 69 196465.625576 196465.625172 14: seq: 16, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 70 196465.632043 196465.631465 19: seq: 17, tmcuart_send oid=4 write='\xea\x03\x088\x80\x00\x02\x08 \xba' read=0 Sent 71 196465.636130 196465.635726 14: seq: 18, tmcuart_send oid=4 write='\xea\x03H \xe4' read=10 Sent 72 196465.642304 196465.641742 18: seq: 19, neopixel_update oid=5 pos=0 data='\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 73 196465.648187 196465.647989 7: seq: 1a, neopixel_send oid=5 Sent 74 196465.653745 196465.653547 7: seq: 1b, neopixel_send oid=5 Sent 75 196465.659949 196465.659751 7: seq: 1c, neopixel_send oid=5 Sent 76 196465.665458 196465.665260 7: seq: 1d, neopixel_send oid=5 Sent 77 196465.670942 196465.670744 7: seq: 1e, neopixel_send oid=5 Sent 78 196466.194869 196466.194687 6: seq: 1f, get_clock Sent 79 196466.210703 196466.210505 7: seq: 10, stepper_get_position oid=8 Sent 80 196466.212344 196466.211940 14: seq: 11, tmcuart_send oid=4 write='\xea\x03H-\xd5' read=10 Sent 81 196467.178794 196467.178612 6: seq: 12, get_clock Sent 82 196468.163177 196468.162995 6: seq: 13, get_clock Sent 83 196469.147775 196469.147593 6: seq: 14, get_clock Sent 84 196469.260844 196469.260646 7: seq: 15, endstop_query_state oid=0 Sent 85 196470.132316 196470.132134 6: seq: 16, get_clock Sent 86 196471.117413 196471.117231 6: seq: 17, get_clock Sent 87 196471.562894 196471.561872 35: seq: 18, trsync_start oid=7 report_clock=143334944 report_ticks=120000 expire_reason=2, trsync_set_timeout oid=7 clock=143634944, endstop_home oid=6 clock=143334944 sample_ticks=180 sample_count=4 rest_ticks=536 pin_value=0 trsync_oid=7 trigger_reason=1 Sent 88 196471.818467 196471.818111 11: seq: 19, trsync_set_timeout oid=7 clock=143756168 Sent 89 196471.828463 196471.828107 11: seq: 1a, trsync_set_timeout oid=7 clock=143876172 Sent 90 196471.834004 196471.833790 8: seq: 1b, trsync_trigger oid=7 reason=3 Sent 91 196471.835065 196471.834661 14: seq: 1c, endstop_home oid=6 clock=0 sample_ticks=0 sample_count=0 rest_ticks=0 pin_value=0 trsync_oid=0 trigger_reason=0 Sent 92 196471.835279 196471.834800 8: seq: 1d, trsync_trigger oid=7 reason=3 Sent 93 196472.102700 196472.102518 6: seq: 1e, get_clock Sent 94 196473.087505 196473.087323 6: seq: 1f, get_clock Sent 95 196474.072260 196474.072078 6: seq: 10, get_clock Sent 96 196475.056289 196475.056107 6: seq: 11, get_clock Sent 97 196476.040934 196476.040752 6: seq: 12, get_clock Sent 98 196477.025812 196477.025630 6: seq: 13, get_clock Sent 99 196477.038990 196477.038808 6: seq: 14, emergency_stop Dumping receive queue 100 messages Receive: 0 196465.572333 196465.569618 8: seq: 1c, tmcuart_response oid=4 read='' Receive: 1 196465.577843 196465.573572 18: seq: 1d, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02\x88.\xc3' Receive: 2 196465.582518 196465.579847 8: seq: 1e, tmcuart_response oid=4 read='' Receive: 3 196465.587960 196465.583720 18: seq: 1f, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02\xa8\xae\x87' Receive: 4 196465.592731 196465.589971 8: seq: 10, tmcuart_response oid=4 read='' Receive: 5 196465.598223 196465.593946 18: seq: 11, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02\xc8\xae\xa0' Receive: 6 196465.602973 196465.600253 8: seq: 12, tmcuart_response oid=4 read='' Receive: 7 196465.608443 196465.604217 18: seq: 13, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02\xe8.\xe4' Receive: 8 196465.613061 196465.610422 8: seq: 14, tmcuart_response oid=4 read='' Receive: 9 196465.618539 196465.614250 18: seq: 15, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02\x08/\x8b' Receive: 10 196465.624188 196465.621420 8: seq: 16, tmcuart_response oid=4 read='' Receive: 11 196465.629839 196465.625576 18: seq: 17, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02(\xaf\xcf' Receive: 12 196465.634766 196465.632043 8: seq: 18, tmcuart_response oid=4 read='' Receive: 13 196465.640424 196465.636130 18: seq: 19, tmcuart_response oid=4 read='\n\xfaO \x80\x00\x02H\xaf\xe8' Receive: 14 196465.648633 196465.648187 8: seq: 1b, neopixel_result oid=5 success=0 Receive: 15 196465.654336 196465.653745 8: seq: 1c, neopixel_result oid=5 success=0 Receive: 16 196465.660296 196465.659949 8: seq: 1d, neopixel_result oid=5 success=0 Receive: 17 196465.665802 196465.665458 8: seq: 1e, neopixel_result oid=5 success=0 Receive: 18 196465.671415 196465.670942 8: seq: 1f, neopixel_result oid=5 success=1 Receive: 19 196465.932285 196465.670942 13: seq: 1f, analog_in_state oid=10 next_clock=76339859 value=6781 Receive: 20 196465.942223 196465.670942 14: seq: 1f, analog_in_state oid=11 next_clock=76459859 value=30052 Receive: 21 196465.972147 196465.670942 14: seq: 1f, analog_in_state oid=14 next_clock=76819859 value=31300 Receive: 22 196466.195382 196466.194869 10: seq: 10, clock clock=75981714 Receive: 23 196466.211164 196466.210703 8: seq: 11, stepper_position oid=8 pos=0 Receive: 24 196466.216611 196466.212344 18: seq: 12, tmcuart_response oid=4 read='\n\xfaO-\x80\x00\x02H \xf9' Receive: 25 196466.232245 196466.212344 13: seq: 12, analog_in_state oid=10 next_clock=79939859 value=6777 Receive: 26 196466.242201 196466.212344 14: seq: 12, analog_in_state oid=11 next_clock=80059859 value=30048 Receive: 27 196466.272128 196466.212344 14: seq: 12, analog_in_state oid=14 next_clock=80419859 value=31301 Receive: 28 196466.532157 196466.212344 13: seq: 12, analog_in_state oid=10 next_clock=83539859 value=6778 Receive: 29 196466.542128 196466.212344 14: seq: 12, analog_in_state oid=11 next_clock=83659859 value=30051 Receive: 30 196466.572142 196466.212344 14: seq: 12, analog_in_state oid=14 next_clock=84019859 value=31290 Receive: 31 196466.832152 196466.212344 13: seq: 12, analog_in_state oid=10 next_clock=87139859 value=6778 Receive: 32 196466.842142 196466.212344 14: seq: 12, analog_in_state oid=11 next_clock=87259859 value=30051 Receive: 33 196466.872130 196466.212344 14: seq: 12, analog_in_state oid=14 next_clock=87619859 value=31298 Receive: 34 196467.132149 196466.212344 13: seq: 12, analog_in_state oid=10 next_clock=90739859 value=6777 Receive: 35 196467.142148 196466.212344 14: seq: 12, analog_in_state oid=11 next_clock=90859859 value=30050 Receive: 36 196467.172153 196466.212344 14: seq: 12, analog_in_state oid=14 next_clock=91219859 value=31295 Receive: 37 196467.179317 196467.178794 10: seq: 13, clock clock=87789018 Receive: 38 196467.432156 196467.178794 13: seq: 13, analog_in_state oid=10 next_clock=94339859 value=6777 Receive: 39 196467.442136 196467.178794 14: seq: 13, analog_in_state oid=11 next_clock=94459859 value=30052 Receive: 40 196467.472146 196467.178794 14: seq: 13, analog_in_state oid=14 next_clock=94819859 value=31301 Receive: 41 196467.732133 196467.178794 13: seq: 13, analog_in_state oid=10 next_clock=97939859 value=6778 Receive: 42 196467.742128 196467.178794 14: seq: 13, analog_in_state oid=11 next_clock=98059859 value=30049 Receive: 43 196467.772143 196467.178794 14: seq: 13, analog_in_state oid=14 next_clock=98419859 value=31301 Receive: 44 196468.032133 196467.178794 13: seq: 13, analog_in_state oid=10 next_clock=101539859 value=6777 Receive: 45 196468.042180 196467.178794 14: seq: 13, analog_in_state oid=11 next_clock=101659859 value=30050 Receive: 46 196468.072162 196467.178794 14: seq: 13, analog_in_state oid=14 next_clock=102019859 value=31294 Receive: 47 196468.163607 196468.163177 10: seq: 14, clock clock=99600814 Receive: 48 196468.332144 196468.163177 13: seq: 14, analog_in_state oid=10 next_clock=105139859 value=6779 Receive: 49 196468.342146 196468.163177 14: seq: 14, analog_in_state oid=11 next_clock=105259859 value=30050 Receive: 50 196468.372145 196468.163177 14: seq: 14, analog_in_state oid=14 next_clock=105619859 value=31302 Receive: 51 196468.632148 196468.163177 13: seq: 14, analog_in_state oid=10 next_clock=108739859 value=6777 Receive: 52 196468.642131 196468.163177 14: seq: 14, analog_in_state oid=11 next_clock=108859859 value=30048 Receive: 53 196468.672150 196468.163177 14: seq: 14, analog_in_state oid=14 next_clock=109219859 value=31301 Receive: 54 196468.932158 196468.163177 13: seq: 14, analog_in_state oid=10 next_clock=112339859 value=6778 Receive: 55 196468.942170 196468.163177 14: seq: 14, analog_in_state oid=11 next_clock=112459859 value=30052 Receive: 56 196468.972148 196468.163177 14: seq: 14, analog_in_state oid=14 next_clock=112819859 value=31293 Receive: 57 196469.148229 196469.147775 10: seq: 15, clock clock=111415890 Receive: 58 196469.232178 196469.147775 13: seq: 15, analog_in_state oid=10 next_clock=115939859 value=6779 Receive: 59 196469.242154 196469.147775 14: seq: 15, analog_in_state oid=11 next_clock=116059859 value=30048 Receive: 60 196469.261331 196469.260844 10: seq: 16, endstop_state oid=0 homing=0 next_clock=0 pin_value=0 Receive: 61 196469.272178 196469.260844 14: seq: 16, analog_in_state oid=14 next_clock=116419859 value=31298 Receive: 62 196469.532186 196469.260844 13: seq: 16, analog_in_state oid=10 next_clock=119539859 value=6778 Receive: 63 196469.542143 196469.260844 14: seq: 16, analog_in_state oid=11 next_clock=119659859 value=30054 Receive: 64 196469.572206 196469.260844 14: seq: 16, analog_in_state oid=14 next_clock=120019859 value=31297 Receive: 65 196469.832157 196469.260844 13: seq: 16, analog_in_state oid=10 next_clock=123139859 value=6783 Receive: 66 196469.842148 196469.260844 14: seq: 16, analog_in_state oid=11 next_clock=123259859 value=30050 Receive: 67 196469.863468 196469.260844 14: seq: 16, stats count=450 sum=107225 sumsq=732552 Receive: 68 196469.872162 196469.260844 14: seq: 16, analog_in_state oid=14 next_clock=123619859 value=31299 Receive: 69 196470.132167 196469.260844 13: seq: 16, analog_in_state oid=10 next_clock=126739859 value=6779 Receive: 70 196470.132913 196470.132316 10: seq: 17, clock clock=123232291 Receive: 71 196470.142187 196470.132316 14: seq: 17, analog_in_state oid=11 next_clock=126859859 value=30051 Receive: 72 196470.172171 196470.132316 14: seq: 17, analog_in_state oid=14 next_clock=127219859 value=31301 Receive: 73 196470.432182 196470.132316 13: seq: 17, analog_in_state oid=10 next_clock=130339859 value=6776 Receive: 74 196470.442161 196470.132316 14: seq: 17, analog_in_state oid=11 next_clock=130459859 value=30049 Receive: 75 196470.472164 196470.132316 14: seq: 17, analog_in_state oid=14 next_clock=130819859 value=31300 Receive: 76 196470.732172 196470.132316 13: seq: 17, analog_in_state oid=10 next_clock=133939859 value=6779 Receive: 77 196470.742405 196470.132316 14: seq: 17, analog_in_state oid=11 next_clock=134059859 value=30051 Receive: 78 196470.772226 196470.132316 14: seq: 17, analog_in_state oid=14 next_clock=134419859 value=31297 Receive: 79 196471.032193 196470.132316 13: seq: 17, analog_in_state oid=10 next_clock=137539859 value=6778 Receive: 80 196471.042206 196470.132316 14: seq: 17, analog_in_state oid=11 next_clock=137659859 value=30049 Receive: 81 196471.072806 196470.132316 14: seq: 17, analog_in_state oid=14 next_clock=138019859 value=31297 Receive: 82 196471.117930 196471.117413 10: seq: 18, clock clock=135051786 Receive: 83 196471.332209 196471.117413 13: seq: 18, analog_in_state oid=10 next_clock=141139859 value=6779 Receive: 84 196471.342205 196471.117413 14: seq: 18, analog_in_state oid=11 next_clock=141259859 value=30050 Receive: 85 196471.372200 196471.117413 14: seq: 18, analog_in_state oid=14 next_clock=141619859 value=31302 Receive: 86 196471.632254 196471.562894 13: seq: 19, analog_in_state oid=10 next_clock=144739859 value=6779 Receive: 87 196471.642218 196471.562894 14: seq: 19, analog_in_state oid=11 next_clock=144859859 value=30048 Receive: 88 196471.672198 196471.562894 14: seq: 19, analog_in_state oid=14 next_clock=145219859 value=31298 Receive: 89 196471.808204 196471.562894 13: seq: 19, trsync_state oid=7 can_trigger=1 trigger_reason=0 clock=143335653 Receive: 90 196471.834706 196471.834004 10: seq: 1c, trsync_state oid=7 can_trigger=0 trigger_reason=3 clock=0 Receive: 91 196471.836538 196471.835279 10: seq: 1e, trsync_state oid=7 can_trigger=0 trigger_reason=3 clock=0 Receive: 92 196472.103240 196472.102700 10: seq: 1f, clock clock=146874767 Receive: 93 196473.088018 196473.087505 10: seq: 10, clock clock=158692576 Receive: 94 196474.072685 196474.072260 10: seq: 11, clock clock=170509178 Receive: 95 196475.057393 196475.056289 10: seq: 12, clock clock=182317788 Receive: 96 196475.057389 196475.056289 14: seq: 12, stats count=149 sum=31596 sumsq=137323 Receive: 97 196476.041403 196476.040934 10: seq: 13, clock clock=194133307 Receive: 98 196477.026277 196477.025812 11: seq: 14, clock clock=205951869 Receive: 99 196477.041241 196477.038990 12: seq: 15, shutdown clock=206110860 static_string_id=Command request MCU 'psu' shutdown: Command request clocksync state: mcu_freq=12000000 last_clock=206215805 clock_est=(196466.578 80845911 12000384.999) min_half_rtt=0.000091 min_rtt_time=196463.842 time_avg=196466.578(18.671) clock_avg=80845911.903(224062631.340) pred_variance=68340191.791 clock_adj=(0.017 12000809.750) Dumping serial stats: bytes_write=6158 bytes_read=5632 bytes_retransmit=9 bytes_invalid=0 send_seq=237 receive_seq=237 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 Dumping send queue 100 messages Sent 0 196466.250429 196466.250429 59: seq: 19, i2c_write oid=1 data='\x00\xb6\x10\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb6\x11\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 1 196466.251565 196466.251565 59: seq: 1a, i2c_write oid=1 data='\x00\xb6\x12\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb6\x13\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 2 196466.252722 196466.252722 59: seq: 1b, i2c_write oid=1 data='\x00\xb6\x14\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb6\x15\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 3 196466.253856 196466.253856 59: seq: 1c, i2c_write oid=1 data='\x00\xb6\x16\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb6\x17\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 4 196466.255058 196466.255058 59: seq: 1d, i2c_write oid=1 data='\x00\xb7\x10\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb7\x11\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 5 196466.256168 196466.256168 59: seq: 1e, i2c_write oid=1 data='\x00\xb7\x12\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb7\x13\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 6 196466.257289 196466.257289 59: seq: 1f, i2c_write oid=1 data='\x00\xb7\x14\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb7\x15\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 7 196466.258480 196466.258480 59: seq: 10, i2c_write oid=1 data='\x00\xb7\x16\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb7\x17\x00', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' Sent 8 196466.259659 196466.259659 51: seq: 11, i2c_write oid=1 data='\x00\xb0\x10\x03', i2c_write oid=1 data='@\x18<|<\x80\x80 pxxp', i2c_write oid=1 data='\x00\xb0\x11\x08', i2c_write oid=1 data='@\x08\xf8\xf8\x88\x88\xf8', i2c_write oid=1 data='\x00\xb0\x11\x0e' Sent 9 196466.260787 196466.260787 61: seq: 12, i2c_write oid=1 data='@p\x00\xf8\xf8\x00\x80\x00\xf8\xf8\x00\x08\xf8\xf8\x88\x88\xf8p', i2c_write oid=1 data='\x00\xb0\x13\x08', i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88\x08', i2c_write oid=1 data='\x00\xb0\x14\x08', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h\xf8' Sent 10 196466.261908 196466.261908 59: seq: 13, i2c_write oid=1 data='\x00\xb0\x14\x0e', i2c_write oid=1 data='@\xf0\x00\xf0\xf8\x88\xc8h\xf8\xf0\x00\xf0\xf8\x88\xc8h\xf8', i2c_write oid=1 data='\x00\xb0\x15\x0e', i2c_write oid=1 data='@\xf0\x00\xf0\xf8\x88\xc8h\xf8\xf0\x00\xf0\xf8\x88\xc8h\xf8' Sent 11 196466.263122 196466.263122 62: seq: 14, i2c_write oid=1 data='\x00\xb0\x16\x0e', i2c_write oid=1 data='@\xf0\x00\xf0\xf8\x88\xc8h\xf8\xf0\x00\xf0\xf8\x88\xc8h\xf8\xf0', i2c_write oid=1 data='\x00\xb1\x10\x02', i2c_write oid=1 data='@\x0e\x1e\x1e\x0e\x04\x01\x01<><\x18', i2c_write oid=1 data='\x00\xb1\x11\x08' Sent 12 196466.264224 196466.264224 60: seq: 15, i2c_write oid=1 data='@\x08\x0f\x0f', i2c_write oid=1 data='\x00\xb1\x11\x0b', i2c_write oid=1 data='@\x08\x00\x00\x00\x00\x03\x0f\x0e\x07\x0e\x0f\x03\x00\x08\x0f\x0f\x00\x01\x0f\x0e', i2c_write oid=1 data='\x00\xb1\x13\x08', i2c_write oid=1 data='@\x04\x0c\x08\x08\x08\x0f' Sent 13 196466.265354 196466.265354 59: seq: 16, i2c_write oid=1 data='\x00\xb1\x13\x0e', i2c_write oid=1 data='@\x07\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x07\x0f\t\x08\x08\x0f', i2c_write oid=1 data='\x00\xb1\x14\x0e', i2c_write oid=1 data='@\x07\x00\x07\x0f\t\x08\x08\x0f\x07\x00\x07\x0f\t\x08\x08\x0f' Sent 14 196466.266545 196466.266545 60: seq: 17, i2c_write oid=1 data='\x00\xb1\x15\x0e', i2c_write oid=1 data='@\x07\x00\x07\x0f\t\x08\x08\x0f\x07\x00\x07\x0f\t\x08\x08\x0f', i2c_write oid=1 data='\x00\xb1\x16\x0e', i2c_write oid=1 data='@\x07\x00\x07\x0f\t\x08\x08\x0f\x07\x00\x07\x0f\t\x08\x08\x0f\x07' Sent 15 196466.267653 196466.267653 51: seq: 18, i2c_write oid=1 data='\x00\xb2\x10\x03', i2c_write oid=1 data='@\x18<|<\x80\x80 pxxp', i2c_write oid=1 data='\x00\xb2\x11\x08', i2c_write oid=1 data='@\x08\xf8\xf8\x88\x88\xf8', i2c_write oid=1 data='\x00\xb2\x11\x0e' Sent 16 196466.268843 196466.268843 62: seq: 19, i2c_write oid=1 data='@p\x00\x08\xf8\xf8\x88\x88\xf8p\x00\xf8\xf8p\xe0p\xf8\xf8', i2c_write oid=1 data='\x00\xb2\x16\x08', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h\xf8\xf0', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h\xf8\xf0' Sent 17 196466.269976 196466.269976 51: seq: 1a, i2c_write oid=1 data='\x00\xb3\x10\x02', i2c_write oid=1 data='@\x0e\x1e\x1e\x0e\x04\x01\x01<><\x18', i2c_write oid=1 data='\x00\xb3\x11\x08', i2c_write oid=1 data='@\x08\x0f\x0f\x00\x01\x0f', i2c_write oid=1 data='\x00\xb3\x11\x0e' Sent 18 196466.271140 196466.271140 50: seq: 1b, i2c_write oid=1 data='@\x0e\x00\x08\x0f\x0f\x08\x00\x00\x00\x00\x0f\x0f\x00\x00\x00\x0f\x0f', i2c_write oid=1 data='\x00\xb3\x16\x08', i2c_write oid=1 data='@\x07\x0f\t\x08\x08\x0f', i2c_write oid=1 data='\x00\xb3\x16\x0e' Sent 19 196466.272293 196466.272293 57: seq: 1c, i2c_write oid=1 data='@\x07\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x07\x0f\t\x08\x08\x0f\x07', i2c_write oid=1 data='\x00\xb4\x10\x01', i2c_write oid=1 data='@8\x18\xf8\xf8\x188\x00\x08\xf8\xf8\x88\xc8\x18', i2c_write oid=1 data='\x00\xb4\x10\x0e' Sent 20 196466.273233 196466.273233 58: seq: 1d, i2c_write oid=1 data='@8\x00\xf8\xf8p\xe0p\xf8\xf8\x00\x08\xf8\xf8\x88\x88\xf8p', i2c_write oid=1 data='\x00\xb4\x12\x08', i2c_write oid=1 data='@\x10\x18\x08\x88\xc8x0\x00\x80\xc0`0\xf8\xf8', i2c_write oid=1 data='\x00\xb4\x14\x00' Sent 21 196466.274372 196466.274372 50: seq: 1e, i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8', i2c_write oid=1 data='\x00\xb4\x14\x06', i2c_write oid=1 data='@p\x00p\xf8\x88\x88\x88\xf8p\x00\x00\x00\x80\xc0`0\x18', i2c_write oid=1 data='\x00\xb4\x16\x00' Sent 22 196466.275509 196466.275509 63: seq: 1f, i2c_write oid=1 data='@\x80\xc0`0\xf8\xf8\x00\x00\xf0\xf8\x88\xc8h\xf8\xf0', i2c_write oid=1 data='\x00\xb4\x17\x08', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h\xf8\xf0', i2c_write oid=1 data='\x00\xb5\x10\x02', i2c_write oid=1 data='@\x08\x0f\x0f\x08\x00\x00\x08\x0f\x0f\x08' Sent 23 196466.276675 196466.276675 61: seq: 10, i2c_write oid=1 data='\x00\xb5\x10\x0c', i2c_write oid=1 data='@\t\x0c\x0e\x00\x0f\x0f\x00\x00\x00\x0f\x0f\x00\x08\x0f\x0f\x08', i2c_write oid=1 data='\x00\xb5\x12\x08', i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c\x0c\x00\x01\x01\x01', i2c_write oid=1 data='\x00\xb5\x13\x03' Sent 24 196466.277853 196466.277853 59: seq: 11, i2c_write oid=1 data='@\t\x0f\x0f\t\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x07\x0f\x08', i2c_write oid=1 data='\x00\xb5\x14\x03', i2c_write oid=1 data='@\x08\x08\x0f\x07\x00\x07\x0f\x08\x08\x08\x0f\x07\x00\x06\x03\x01', i2c_write oid=1 data='\x00\xb5\x16\x00' Sent 25 196466.283164 196466.283164 51: seq: 12, i2c_write oid=1 data='@\x01\x01\x01\t\x0f\x0f\t\x00\x07\x0f\t\x08\x08\x0f', i2c_write oid=1 data='\x00\xb5\x16\x0e', i2c_write oid=1 data='@\x07\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x07\x0f\t\x08\x08\x0f\x07' Sent 26 196466.751138 196466.751138 23: seq: 13, i2c_write oid=1 data='\x00\xb4\x14\x08', i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88\x08' Sent 27 196466.756703 196466.756703 18: seq: 14, i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x04\x0c' Sent 28 196467.178604 196467.178604 6: seq: 15, get_clock Sent 29 196467.248797 196467.248797 22: seq: 16, i2c_write oid=1 data='\x00\xb2\x15\x08', i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88' Sent 30 196467.249167 196467.249167 58: seq: 17, i2c_write oid=1 data='\x00\xb2\x15\x0e', i2c_write oid=1 data='@\x08\x00\x00 0\xf8\xf8\x00\x00\x00\xf8\xf8\x88\x88\x88\x88\x08', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\x10\x18\x08\x88\xc8x0', i2c_write oid=1 data='\x00\xb3\x15\x08' Sent 31 196467.249463 196467.249463 64: seq: 18, i2c_write oid=1 data='@\x04\x0c\x08', i2c_write oid=1 data='\x00\xb3\x15\x0b', i2c_write oid=1 data='@\x08\x08\x0f\x07\x00\x00\x08\x08\x0f\x0f\x08\x08\x00\x04\x0c\x08', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c\x0c', i2c_write oid=1 data='\x00\xb4\x14\x08' Sent 32 196467.254685 196467.254685 29: seq: 19, i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8p', i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x07\x0f' Sent 33 196467.747220 196467.747220 23: seq: 1a, i2c_write oid=1 data='\x00\xb4\x14\x08', i2c_write oid=1 data='@\xe0\xf0\x98\x88\x88\x80\x00' Sent 34 196468.162982 196468.162982 6: seq: 1b, get_clock Sent 35 196468.247789 196468.247789 30: seq: 1c, i2c_write oid=1 data='\x00\xb2\x15\x08', i2c_write oid=1 data='@\x10\x18\x88\x88\x88\xf8p\x00\xe0\xf0\x98\x88\x88\x80' Sent 36 196468.248306 196468.248306 59: seq: 1d, i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8\xf0', i2c_write oid=1 data='\x00\xb3\x16\x00', i2c_write oid=1 data='@\x07\x0f\x08\x08\x08\x0f\x07', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x00\x08\x08\x08\x0c\x07\x03' Sent 37 196468.248568 196468.248568 55: seq: 1e, i2c_write oid=1 data='\x00\xb4\x12\x08', i2c_write oid=1 data='@\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb4\x12\r', i2c_write oid=1 data='@\x00\x00\x00\x10\x18\x08\x88\xc8x0\x00\x80\xc0`0\xf8', i2c_write oid=1 data='\x00\xb4\x13\r' Sent 38 196468.248864 196468.248864 51: seq: 1f, i2c_write oid=1 data='@\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00p\xf8\x88\x88\x88\xf8\xf0', i2c_write oid=1 data='\x00\xb5\x12\x08', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb5\x12\x0e' Sent 39 196468.254666 196468.254666 53: seq: 10, i2c_write oid=1 data='@\x00\x00\x0c\x0e\x0b\t\x08\x0c\x0c\x00\x01\x01\x01\t\x0f\x0f', i2c_write oid=1 data='\x00\xb5\x13\x0e', i2c_write oid=1 data='@\t\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x00\x08\x08\x08\x0c\x07\x03' Sent 40 196468.748611 196468.748611 21: seq: 11, i2c_write oid=1 data='\x00\xb4\x12\x08', i2c_write oid=1 data='@\x10\x18\x08\x88\xc8' Sent 41 196468.749010 196468.749010 61: seq: 12, i2c_write oid=1 data='\x00\xb4\x12\r', i2c_write oid=1 data='@x0\x00\x80\xc0`0\xf8\xf8\x00\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb4\x13\r', i2c_write oid=1 data='@\x00\x00\x00p\xf8\x88\x88\x88\xf8\xf0\x00\x10\x18\x08\x88\xc8x0' Sent 42 196468.749266 196468.749266 56: seq: 13, i2c_write oid=1 data='\x00\xb5\x12\x08', i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c', i2c_write oid=1 data='\x00\xb5\x12\x0e', i2c_write oid=1 data='@\x0c\x00\x01\x01\x01\t\x0f\x0f\t\x00\x00\x00\x00\x0c\x0c\x00', i2c_write oid=1 data='\x00\xb5\x13\x0e' Sent 43 196468.754462 196468.754462 26: seq: 14, i2c_write oid=1 data='@\x00\x00\x00\x08\x08\x08\x0c\x07\x03\x00\x0c\x0e\x0b\t\x08\x0c\x0c' Sent 44 196469.147574 196469.147574 6: seq: 15, get_clock Sent 45 196469.251867 196469.251867 20: seq: 16, i2c_write oid=1 data='\x00\xb2\x15\n', i2c_write oid=1 data='@\x08\x88\xc8x' Sent 46 196469.252351 196469.252351 56: seq: 17, i2c_write oid=1 data='\x00\xb2\x15\x0e', i2c_write oid=1 data='@0\x00\xf0\xf8\x88\xc8h\xf8\xf0\x00\xe0\xf0\x98\x88\x88\x80\x00', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h', i2c_write oid=1 data='\x00\xb3\x15\x08' Sent 47 196469.257598 196469.257598 51: seq: 18, i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c\x0c\x00\x07\x0f\t', i2c_write oid=1 data='\x00\xb3\x16\x08', i2c_write oid=1 data='@\x07\x0f', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x07\x0f\t\x08\x08\x0f\x07' Sent 48 196469.751345 196469.751345 23: seq: 19, i2c_write oid=1 data='\x00\xb4\x14\x08', i2c_write oid=1 data='@\x00 0\xf8\xf8\x00\x00' Sent 49 196469.756925 196469.756925 23: seq: 1a, i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x00\x08\x08\x0f\x0f\x08\x08' Sent 50 196470.132107 196470.132107 6: seq: 1b, get_clock Sent 51 196470.250430 196470.250430 22: seq: 1c, i2c_write oid=1 data='\x00\xb2\x15\x08', i2c_write oid=1 data='@\x00 0\xf8\xf8\x00' Sent 52 196470.250920 196470.250920 64: seq: 1d, i2c_write oid=1 data='\x00\xb2\x15\x0e', i2c_write oid=1 data='@\x00\x00\x18\x18\x08\x88\xc8x8\x00\x10\x18\x88\x88\x88\xf8p', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\x18\x18\x08\x88\xc8x8', i2c_write oid=1 data='\x00\xb3\x15\x08', i2c_write oid=1 data='@\x00\x08' Sent 53 196470.251315 196470.251315 57: seq: 1e, i2c_write oid=1 data='\x00\xb3\x15\n', i2c_write oid=1 data='@\x08\x0f\x0f\x08\x08\x00\x00\x00\x0f\x0f\x00\x00\x00\x00\x04\x0c', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x00\x00\x0f\x0f\x00\x00\x00', i2c_write oid=1 data='\x00\xb4\x14\x08' Sent 54 196470.256411 196470.256411 33: seq: 1f, i2c_write oid=1 data='@\xe0\xf0\x98\x88\x88\x80', i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x07\x0f\x08\x08\x08\x0f\x07' Sent 55 196470.751403 196470.751403 23: seq: 10, i2c_write oid=1 data='\x00\xb4\x14\x08', i2c_write oid=1 data='@\x10\x18\x88\x88\x88\xf8p' Sent 56 196470.757041 196470.757041 18: seq: 11, i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x04\x0c' Sent 57 196471.117201 196471.117201 6: seq: 12, get_clock Sent 58 196471.257844 196471.257844 31: seq: 13, i2c_write oid=1 data='\x00\xb2\x16\x00', i2c_write oid=1 data='@\xe0\xf0\x98\x88\x88\x80\x00\x00\xe0\xf0\x98\x88\x88\x80\x00' Sent 59 196471.258736 196471.258736 62: seq: 14, i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\x80\xc0`0\xf8\xf8\x00', i2c_write oid=1 data='\x00\xb3\x16\x00', i2c_write oid=1 data='@\x07\x0f\x08\x08\x08\x0f\x07\x00\x07\x0f', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x01\x01\x01\t\x0f\x0f\t' Sent 60 196471.264177 196471.264177 31: seq: 15, i2c_write oid=1 data='\x00\xb4\x14\x08', i2c_write oid=1 data='@p\xf8', i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x07\x0f' Sent 61 196471.760756 196471.760756 12: seq: 16, i2c_write oid=1 data='\x00\xb4\x14\x08' Sent 62 196471.766698 196471.766698 29: seq: 17, i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88\x08', i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x04\x0c' Sent 63 196472.102249 196472.102249 6: seq: 18, get_clock Sent 64 196472.258404 196472.258404 12: seq: 19, i2c_write oid=1 data='\x00\xb2\x16\x08' Sent 65 196472.259986 196472.259986 59: seq: 1a, i2c_write oid=1 data='@\x18\x18\x08\x88\xc8x8', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\x18\x18\x08\x88\xc8x8', i2c_write oid=1 data='\x00\xb3\x16\x08', i2c_write oid=1 data='@\x00\x00\x0f\x0f\x00\x00\x00', i2c_write oid=1 data='\x00\xb3\x17\x08' Sent 66 196472.265454 196472.265454 16: seq: 1b, i2c_write oid=1 data='@\x00\x00\x0f\x0f\x00\x00\x00' Sent 67 196472.758482 196472.758482 12: seq: 1c, i2c_write oid=1 data='\x00\xb4\x14\x08' Sent 68 196472.764212 196472.764212 29: seq: 1d, i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8p', i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x07\x0f' Sent 69 196473.087027 196473.087027 6: seq: 1e, get_clock Sent 70 196473.269847 196473.269847 12: seq: 1f, i2c_write oid=1 data='\x00\xb2\x16\x08' Sent 71 196473.271561 196473.271561 58: seq: 10, i2c_write oid=1 data='@\xe0\xf0\x98\x88\x88\x80\x00', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\x10', i2c_write oid=1 data='\x00\xb2\x17\x0e', i2c_write oid=1 data='@0', i2c_write oid=1 data='\x00\xb3\x16\x08', i2c_write oid=1 data='@\x07\x0f\x08\x08\x08\x0f\x07' Sent 72 196473.276896 196473.276896 53: seq: 11, i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c\x0c', i2c_write oid=1 data='\x00\xb4\x14\x06', i2c_write oid=1 data='@p', i2c_write oid=1 data='\x00\xb5\x14\x00', i2c_write oid=1 data='@\x07\x0f\x08\x08\x08\x0f\x07' Sent 73 196473.760091 196473.760091 12: seq: 12, i2c_write oid=1 data='\x00\xb4\x13\x00' Sent 74 196473.761483 196473.761483 60: seq: 13, i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88\x08', i2c_write oid=1 data='\x00\xb4\x14\x00', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h\xf8\xf0\x00\x10\x18\x08\x88\xc8x0', i2c_write oid=1 data='\x00\xb5\x13\x00', i2c_write oid=1 data='@\x04\x0c\x08\x08\x08\x0f\x07' Sent 75 196473.766985 196473.766985 35: seq: 14, i2c_write oid=1 data='\x00\xb5\x14\x02', i2c_write oid=1 data='@\t', i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c\x0c' Sent 76 196474.071441 196474.071441 6: seq: 15, get_clock Sent 77 196474.262816 196474.262816 12: seq: 16, i2c_write oid=1 data='\x00\xb2\x17\x08' Sent 78 196474.264811 196474.264811 59: seq: 17, i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8\xf0', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x00\x08\x08\x08\x0c\x07\x03', i2c_write oid=1 data='\x00\xb4\x13\x00', i2c_write oid=1 data='@\x80\xc0`0\xf8\xf8\x00', i2c_write oid=1 data='\x00\xb4\x14\x00' Sent 79 196474.265866 196474.265866 49: seq: 18, i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8\xf0\x00p\xf8\x88\x88\x88\xf8\xf0', i2c_write oid=1 data='\x00\xb5\x13\x00', i2c_write oid=1 data='@\x01\x01\x01\t\x0f\x0f\t', i2c_write oid=1 data='\x00\xb5\x14\x00' Sent 80 196474.271164 196474.271164 24: seq: 19, i2c_write oid=1 data='@\x00\x08\x08\x08\x0c\x07\x03\x00\x00\x08\x08\x08\x0c\x07\x03' Sent 81 196474.762064 196474.762064 23: seq: 1a, i2c_write oid=1 data='\x00\xb4\x14\x08', i2c_write oid=1 data='@\xe0\xf0\x98\x88\x88\x80\x00' Sent 82 196474.767769 196474.767769 23: seq: 1b, i2c_write oid=1 data='\x00\xb5\x14\x08', i2c_write oid=1 data='@\x07\x0f\x08\x08\x08\x0f\x07' Sent 83 196475.056069 196475.056069 6: seq: 1c, get_clock Sent 84 196475.263569 196475.263569 23: seq: 1d, i2c_write oid=1 data='\x00\xb2\x16\x08', i2c_write oid=1 data='@p\xf8\x88\x88\x88\xf8p' Sent 85 196475.269472 196475.269472 39: seq: 1e, i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x07\x0f\t\x08\x08\x0f\x07' Sent 86 196475.765623 196475.765623 12: seq: 1f, i2c_write oid=1 data='\x00\xb4\x12\x08' Sent 87 196475.766826 196475.766826 48: seq: 10, i2c_write oid=1 data='@\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb4\x12\r', i2c_write oid=1 data='@\x00\x00\x00\x10\x18\x08\x88\xc8x0\x00\x80\xc0`0\xf8', i2c_write oid=1 data='\x00\xb4\x13\r' Sent 88 196475.768110 196475.768110 51: seq: 11, i2c_write oid=1 data='@\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00p\xf8\x88\x88\x88\xf8\xf0', i2c_write oid=1 data='\x00\xb5\x12\x08', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00', i2c_write oid=1 data='\x00\xb5\x12\x0e' Sent 89 196475.773447 196475.773447 53: seq: 12, i2c_write oid=1 data='@\x00\x00\x0c\x0e\x0b\t\x08\x0c\x0c\x00\x01\x01\x01\t\x0f\x0f', i2c_write oid=1 data='\x00\xb5\x13\x0e', i2c_write oid=1 data='@\t\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x00\x08\x08\x08\x0c\x07\x03' Sent 90 196476.040479 196476.040479 6: seq: 13, get_clock Sent 91 196476.264178 196476.264178 12: seq: 14, i2c_write oid=1 data='\x00\xb2\x16\x08' Sent 92 196476.266372 196476.266372 63: seq: 15, i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88\x08', i2c_write oid=1 data='\x00\xb2\x17\x08', i2c_write oid=1 data='@p\xf8\x88\x88\x88', i2c_write oid=1 data='\x00\xb3\x16\x08', i2c_write oid=1 data='@\x04\x0c', i2c_write oid=1 data='\x00\xb3\x17\x08', i2c_write oid=1 data='@\x00\x08\x08\x08\x0c\x07\x03' Sent 93 196476.267423 196476.267423 58: seq: 16, i2c_write oid=1 data='\x00\xb4\x12\x08', i2c_write oid=1 data='@\x10\x18\x08\x88\xc8x0\x00\x80\xc0`0\xf8\xf8', i2c_write oid=1 data='\x00\xb4\x13\x06', i2c_write oid=1 data='@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00p\xf8\x88\x88\x88\xf8\xf0' Sent 94 196476.273006 196476.273006 58: seq: 17, i2c_write oid=1 data='\x00\xb5\x12\x08', i2c_write oid=1 data='@\x0c\x0e\x0b\t\x08\x0c\x0c\x00\x01\x01\x01\t\x0f\x0f', i2c_write oid=1 data='\x00\xb5\x13\x06', i2c_write oid=1 data='@\t\x00\x00\x00\x00\x0c\x0c\x00\x00\x00\x00\x08\x08\x08\x0c\x07\x03' Sent 95 196476.764162 196476.764162 12: seq: 18, i2c_write oid=1 data='\x00\xb4\x13\x00' Sent 96 196476.765583 196476.765583 60: seq: 19, i2c_write oid=1 data='@\xf8\xf8\x88\x88\x88\x88\x08', i2c_write oid=1 data='\x00\xb4\x14\x00', i2c_write oid=1 data='@\xf0\xf8\x88\xc8h\xf8\xf0\x00\x10\x18\x88\x88\x88\xf8p', i2c_write oid=1 data='\x00\xb5\x13\x00', i2c_write oid=1 data='@\x04\x0c\x08\x08\x08\x0f\x07' Sent 97 196476.771054 196476.771054 31: seq: 1a, i2c_write oid=1 data='\x00\xb5\x14\x00', i2c_write oid=1 data='@\x07\x0f\t\x08\x08\x0f\x07\x00\x04\x0c\x08\x08\x08\x0f\x07' Sent 98 196477.025348 196477.025348 6: seq: 1b, get_clock Sent 99 196477.038561 196477.038561 6: seq: 1c, emergency_stop Dumping receive queue 100 messages Receive: 0 196463.723511 196463.723307 49: seq: 14, identify_response offset=2040 data='\n\xa8\xac\x8cj\xc0Bo\x84\x94\x1cHB\xb3S\x8e\x15\x9a* c!\xcat\x8eWV\xcd\x1f9j\x04k\xd0\xaf#\x1c\xf2\xbeT' Receive: 1 196463.723983 196463.723803 49: seq: 15, identify_response offset=2080 data='\xb6\xa9\xa1q\x0ez\x83\x12W\xb59\x83\xa7~W\xb5OT\xdc\xff\x04\x06\x9d3\xba\x0e\xfa\x8e\n\x04\xd8\x9e\xaa\x8d\x06\xaa\xf7\x8e\x8a\\' Receive: 2 196463.724418 196463.724240 49: seq: 16, identify_response offset=2120 data='j~\xf5*\xf0\xe2\x96#\x151\x95[\xa1;AC\ru!P\xb6\xbe\x01\xb6\xba\xeb\xdb\x1a\x10[\x94\x18\x9c\x89\x92\xc3\xbe\x0c\xfeU' Receive: 3 196463.724844 196463.724668 49: seq: 17, identify_response offset=2160 data='\xa2\xe0\xd4:|\xe2\xfa2p-D\xb2\x80]\x8e\xb6\x8a\xf3\xc5[\x0bp$\x15\xf6$\xaa\nJ\xaa\x82\xc3\xae?\xc4\xa3"\xd1aZ' Receive: 4 196463.725325 196463.725088 49: seq: 18, identify_response offset=2200 data='\xc9|\x03\x03[\xcc[\xf03\xd2\x9db\x00!D=\xd6f\xcd8\x07\xa6\x023\xa8S#\x038Ly\xa6\n\x15\xfeT\xfbV\xbb\xea' Receive: 5 196463.725745 196463.725569 49: seq: 19, identify_response offset=2240 data='\xd0\xb6l\x97\xab\xdb\xd1\xcdpBr\xe7\x9b\x12\x86\x04\x00T\xa3I*/\xef\x94<\x10\x13\xaaI\xc9UtTC\x7f\xe8\x8e\xc7\xe6\x01' Receive: 6 196463.726176 196463.725993 49: seq: 1a, identify_response offset=2280 data='@\x85\n_8K\xf6\xd6\xa5\xdb\x00>\xc9\x96\xa1\xe8\x95m\xaf\xdc\x0f\xaaO\xc9\nIz\xf4&\x88\x14d\xda\xa6\x82\xb8\xf4\x08\x07`' Receive: 7 196463.726586 196463.726419 49: seq: 1b, identify_response offset=2320 data='l\xd4\xe1\xc6^\x88\x92\r\xd3E1M\x06f\x13\x95\x0b\xf6\x01\x02\x1e$\xc4{\xaccw8Q\x93\x7f\xa2\x89\x99nN\x19\xa6\x16m' Receive: 8 196463.727013 196463.726827 49: seq: 1c, identify_response offset=2360 data="F\xc0\xb9\xfaza#\xa2\xfe\xa6QR:\x938-i\xc0\xe9\xc94\n\xd8V\xf1\xdaV\xf3*Z(\x11Uy\x8f\x81\x1f\x07\xb1'" Receive: 9 196463.728040 196463.727861 49: seq: 1d, identify_response offset=2400 data='\xead\xd4\x0b\x11\xc7!\xa9\x0e\x9c\xe4\x1b\xd8\x1d@^9\x1a$bb\x81\x82 \x0e7i\xaa\xd2\x96~Y\xa9\xccE/\xabT)\x19' Receive: 10 196463.728542 196463.728360 49: seq: 1e, identify_response offset=2440 data='^V\xab5<\xc7\xaf\xaf\xaa\x9b\xed\xc0\xf79}\xa4\xd1#\x15\xbf\xd5\x91\x18\x04\x9b\x82\xcf\x067[T\xef\xa9\t\x8c\xeb\xbb\xf5\xb4\xc0' Receive: 11 196463.728963 196463.728799 49: seq: 1f, identify_response offset=2480 data="\xf4\x12\xd4\xb3\xfa\xa7\xdd\x8f\xca\x0f\x15\xd6N\xecZ\xfc\xad\x84\xf7%\x06\x9b\xd3m\x84f\xa1'9\x93\xc1\x1d\x9dx\xaa\xcd\xdfx_\x95" Receive: 12 196463.729383 196463.729209 49: seq: 10, identify_response offset=2520 data='&\x18\xb97\xa6aj\x87n\xb3\xc4xH\xdd\xbck\x9a6\xf6\x0b\x0e\xa4A=\xf3S\x17T\xa3A\\3\xb6\xa6zU\x88Z>\xdf' Receive: 13 196463.729805 196463.729630 49: seq: 11, identify_response offset=2560 data="\x1b5\xf1W\xd3\x9foq\xad1\xf4C\xe6\xa8/\xb1*0\xf3X\tnf\xc7\xab\x9b\xc4\x8d3''\x1f\xda\x1a\xa2\xec1\r\x7fZ" Receive: 14 196463.730219 196463.730046 49: seq: 12, identify_response offset=2600 data='\n\xe8+7!\xcc\x8c\xfa]\x13G\xefZ\xc9\xa1\x1b\x02z\xa0v\x1aH\xe6p\x8e\xa0\xe81N l^\xf8\x90L\xd6\xe0Af>' Receive: 15 196463.730637 196463.730461 49: seq: 13, identify_response offset=2640 data='\xf5\x07ll\x89~xr\x9e\xf5\x7f\x19\xd9xld\xcb\xd8\x1fgjy\x1b\xe6\xc6\xa2P_\x90\nT\n\xdc\x00\xa4\xe0\xcf\xcd7X' Receive: 16 196463.731044 196463.730878 49: seq: 14, identify_response offset=2680 data='\x06\xba\xf8jF\x8c\xa7\x05\xb0\xf1k\xd3?$\x82\xc8\xc7\xf0\xa6\x01>\x02h\xea\xe4\x08\xe7H\xbd\xfe\x98\xce\xd7s2\x1d\x99\xfc\x8eY' Receive: 17 196463.731466 196463.731283 49: seq: 15, identify_response offset=2720 data='l\xd4H\x03\x02\x9a*\x1e\xd7+\xaas\xa5\xb3e9\xd6\xfaG~\xa1y\xa67\x04\x99MHh(,\xe0\xd4t\x16\xd7\xa6j8\xe9' Receive: 18 196463.731937 196463.731756 49: seq: 16, identify_response offset=2760 data='\xec#e \xa5\x9bm\xe0\xc6&\xc7\xfc\xe3\xc0\x84<}2\nq\xceS\xe4v.s\xf23\x82\x1f\x18\xd4xCU\r\xf4Mm\xf4' Receive: 19 196463.732388 196463.732205 43: seq: 17, identify_response offset=2800 data='7\x03\x88\xaa\xfa\xbb;\xb4l\x8f\xc1y\x18\x9c\x07\xcbU\xbcY\xee\xb7\xebh\xbd\x0b\xa0uz\xfd/\xca\x9b}\x84' Receive: 20 196463.732766 196463.732630 9: seq: 18, identify_response offset=2834 data='' Receive: 21 196463.740219 196463.740035 11: seq: 19, uptime high=0 clock=46786964 Receive: 22 196463.791053 196463.790856 10: seq: 1a, clock clock=47396880 Receive: 23 196463.841918 196463.841737 10: seq: 1b, clock clock=48007386 Receive: 24 196463.892947 196463.892761 10: seq: 1c, clock clock=48619783 Receive: 25 196463.944053 196463.943837 10: seq: 1d, clock clock=49232824 Receive: 26 196463.995194 196463.994956 10: seq: 1e, clock clock=49846284 Receive: 27 196464.046554 196464.046254 10: seq: 1f, clock clock=50461983 Receive: 28 196464.097945 196464.097646 10: seq: 10, clock clock=51078659 Receive: 29 196464.149210 196464.148937 10: seq: 11, clock clock=51694254 Receive: 30 196464.155923 196464.155640 10: seq: 12, clock clock=51774483 Receive: 31 196464.841376 196464.155640 14: seq: 12, stats count=415 sum=42539 sumsq=43159 Receive: 32 196464.843219 196464.842932 10: seq: 13, config is_config=0 crc=0 is_shutdown=0 move_count=0 Receive: 33 196464.847724 196464.847503 15: seq: 1c, config is_config=1 crc=2350052480 is_shutdown=0 move_count=1024 Receive: 34 196465.140498 196465.140166 10: seq: 1d, clock clock=63589281 Receive: 35 196465.826739 196465.140166 16: seq: 1d, counter_state oid=0 next_clock=71843282 count=1 count_clock=71807282 Receive: 36 196465.862269 196465.140166 14: seq: 1d, analog_in_state oid=3 next_clock=75767282 value=16444 Receive: 37 196466.162252 196465.916722 14: seq: 1e, analog_in_state oid=3 next_clock=79367282 value=16422 Receive: 38 196466.194853 196466.194667 10: seq: 10, clock clock=76243347 Receive: 39 196466.462245 196466.283164 14: seq: 13, analog_in_state oid=3 next_clock=82967282 value=16431 Receive: 40 196466.762182 196466.756703 14: seq: 15, analog_in_state oid=3 next_clock=86567282 value=16425 Receive: 41 196466.827174 196466.756703 16: seq: 15, counter_state oid=0 next_clock=83849282 count=35 count_clock=83705282 Receive: 42 196467.062229 196466.756703 14: seq: 15, analog_in_state oid=3 next_clock=90167282 value=16422 Receive: 43 196467.178857 196467.178604 10: seq: 16, clock clock=88050995 Receive: 44 196467.362192 196467.254685 14: seq: 1a, analog_in_state oid=3 next_clock=93767282 value=16421 Receive: 45 196467.662193 196467.254685 14: seq: 1a, analog_in_state oid=3 next_clock=97367282 value=16427 Receive: 46 196467.827625 196467.747220 16: seq: 1b, counter_state oid=0 next_clock=95855282 count=59 count_clock=95513282 Receive: 47 196467.962214 196467.747220 14: seq: 1b, analog_in_state oid=3 next_clock=100967282 value=16414 Receive: 48 196468.163169 196468.162982 10: seq: 1c, clock clock=99863919 Receive: 49 196468.262130 196468.254666 14: seq: 11, analog_in_state oid=3 next_clock=104567282 value=16396 Receive: 50 196468.562178 196468.254666 14: seq: 11, analog_in_state oid=3 next_clock=108167282 value=16409 Receive: 51 196468.828124 196468.754462 16: seq: 15, counter_state oid=0 next_clock=107861282 count=72 count_clock=106871282 Receive: 52 196468.862175 196468.754462 14: seq: 15, analog_in_state oid=3 next_clock=111767282 value=16390 Receive: 53 196469.147773 196469.147574 10: seq: 16, clock clock=111679435 Receive: 54 196469.162126 196469.147574 14: seq: 16, analog_in_state oid=3 next_clock=115367282 value=16409 Receive: 55 196469.462238 196469.257598 14: seq: 19, analog_in_state oid=3 next_clock=118967282 value=16410 Receive: 56 196469.762101 196469.756925 14: seq: 1b, analog_in_state oid=3 next_clock=122567282 value=16389 Receive: 57 196469.828561 196469.756925 16: seq: 1b, counter_state oid=0 next_clock=119867282 count=84 count_clock=119309282 Receive: 58 196469.841110 196469.756925 15: seq: 1b, stats count=263 sum=873602 sumsq=43232914 Receive: 59 196470.062139 196469.756925 14: seq: 1b, analog_in_state oid=3 next_clock=126167282 value=16394 Receive: 60 196470.132317 196470.132107 10: seq: 1c, clock clock=123494293 Receive: 61 196470.362123 196470.256411 14: seq: 10, analog_in_state oid=3 next_clock=129767282 value=16385 Receive: 62 196470.662112 196470.256411 14: seq: 10, analog_in_state oid=3 next_clock=133367282 value=16404 Receive: 63 196470.829105 196470.757041 16: seq: 12, counter_state oid=0 next_clock=131873282 count=95 count_clock=131207282 Receive: 64 196470.962203 196470.757041 14: seq: 12, analog_in_state oid=3 next_clock=136967282 value=16388 Receive: 65 196471.117538 196471.117201 10: seq: 13, clock clock=135316358 Receive: 66 196471.262066 196471.258736 14: seq: 15, analog_in_state oid=3 next_clock=140567282 value=16400 Receive: 67 196471.562184 196471.264177 14: seq: 16, analog_in_state oid=3 next_clock=144167282 value=16399 Receive: 68 196471.829532 196471.766698 17: seq: 18, counter_state oid=0 next_clock=143879282 count=106 count_clock=143015282 Receive: 69 196471.862161 196471.766698 14: seq: 18, analog_in_state oid=3 next_clock=147767282 value=16426 Receive: 70 196472.102552 196472.102249 10: seq: 19, clock clock=147136852 Receive: 71 196472.162121 196472.102249 14: seq: 19, analog_in_state oid=3 next_clock=151367282 value=16397 Receive: 72 196472.462146 196472.265454 14: seq: 1c, analog_in_state oid=3 next_clock=154967282 value=16388 Receive: 73 196472.762066 196472.758482 14: seq: 1d, analog_in_state oid=3 next_clock=158567282 value=16395 Receive: 74 196472.830067 196472.764212 17: seq: 1e, counter_state oid=0 next_clock=155885282 count=117 count_clock=154931282 Receive: 75 196473.062117 196472.764212 14: seq: 1e, analog_in_state oid=3 next_clock=162167282 value=16421 Receive: 76 196473.087354 196473.087027 10: seq: 1f, clock clock=158954534 Receive: 77 196473.362050 196473.276896 14: seq: 12, analog_in_state oid=3 next_clock=165767282 value=16393 Receive: 78 196473.662104 196473.276896 14: seq: 12, analog_in_state oid=3 next_clock=169367282 value=16373 Receive: 79 196473.830530 196473.766985 17: seq: 15, counter_state oid=0 next_clock=167891282 count=129 count_clock=167873282 Receive: 80 196473.962100 196473.766985 14: seq: 15, analog_in_state oid=3 next_clock=172967282 value=16382 Receive: 81 196474.071689 196474.071441 10: seq: 16, clock clock=170767742 Receive: 82 196474.262140 196474.071441 14: seq: 16, analog_in_state oid=3 next_clock=176567282 value=16417 Receive: 83 196474.562040 196474.271164 14: seq: 1a, analog_in_state oid=3 next_clock=180167282 value=16395 Receive: 84 196474.831037 196474.767769 17: seq: 1c, counter_state oid=0 next_clock=179897282 count=140 count_clock=179663282 Receive: 85 196474.841025 196474.767769 15: seq: 1c, stats count=210 sum=191770 sumsq=6860493 Receive: 86 196474.861995 196474.767769 14: seq: 1c, analog_in_state oid=3 next_clock=183767282 value=16424 Receive: 87 196475.056334 196475.056069 10: seq: 1d, clock clock=182583741 Receive: 88 196475.162092 196475.056069 14: seq: 1d, analog_in_state oid=3 next_clock=187367282 value=16394 Receive: 89 196475.462072 196475.269472 14: seq: 1f, analog_in_state oid=3 next_clock=190967282 value=16394 Receive: 90 196475.762089 196475.269472 14: seq: 1f, analog_in_state oid=3 next_clock=194567282 value=16416 Receive: 91 196475.831468 196475.773447 17: seq: 13, counter_state oid=0 next_clock=191903282 count=151 count_clock=191597282 Receive: 92 196476.040767 196476.040479 10: seq: 14, clock clock=194397066 Receive: 93 196476.061988 196476.040479 14: seq: 14, analog_in_state oid=3 next_clock=198167282 value=16385 Receive: 94 196476.361997 196476.273006 15: seq: 18, analog_in_state oid=3 next_clock=201767282 value=16404 Receive: 95 196476.662031 196476.273006 15: seq: 18, analog_in_state oid=3 next_clock=205367282 value=16369 Receive: 96 196476.831942 196476.771054 19: seq: 1b, counter_state oid=0 next_clock=203909282 count=162 count_clock=203369282 Receive: 97 196476.961996 196476.771054 15: seq: 1b, analog_in_state oid=3 next_clock=208967282 value=16389 Receive: 98 196477.025656 196477.025348 11: seq: 1c, clock clock=206215805 Receive: 99 196477.039053 196477.038561 12: seq: 1d, shutdown clock=206374431 static_string_id=Command request Requested toolhead position at shutdown time 17.213269: (215.0, 5.0, 15.075) Stats 196477.2: gcodein=0 mcu: mcu_awake=0.020 mcu_task_avg=0.000033 mcu_task_stddev=0.000121 bytes_write=11315 bytes_read=9277 bytes_retransmit=9 bytes_invalid=0 send_seq=484 receive_seq=484 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996494 psu: mcu_awake=0.016 mcu_task_avg=0.000076 mcu_task_stddev=0.000229 bytes_write=6158 bytes_read=5632 bytes_retransmit=9 bytes_invalid=0 send_seq=237 receive_seq=237 retransmit_seq=2 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000384 adj=12000809 toolhead: mcu_awake=0.003 mcu_task_avg=0.000018 mcu_task_stddev=0.000036 bytes_write=1582 bytes_read=5854 bytes_retransmit=0 bytes_invalid=0 send_seq=165 receive_seq=165 retransmit_seq=0 srtt=0.001 rttvar=0.001 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999928 adj=12000280 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.7 sysload=0.36 cputime=10.961 memavail=7309304 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 BME280: Error reading data Traceback (most recent call last): File "/home/pi/klipper/klippy/extras/bme280.py", line 242, in _sample_bme280 status = self.read_register('STATUS', 1)[0] File "/home/pi/klipper/klippy/extras/bme280.py", line 455, in read_register params = self.i2c.i2c_read(regs, read_len) File "/home/pi/klipper/klippy/extras/bus.py", line 185, in i2c_read return self.i2c_read_cmd.send([self.oid, write, read_len]) File "/home/pi/klipper/klippy/mcu.py", line 515, in send return self._do_send([self._cmd.encode(data)], minclock, reqclock) File "/home/pi/klipper/klippy/mcu.py", line 513, in _do_send raise self._error(str(e)) CommandError: Unable to obtain 'i2c_read_response' response Stats 196478.2: gcodein=0 mcu: mcu_awake=0.020 mcu_task_avg=0.000033 mcu_task_stddev=0.000121 bytes_write=11401 bytes_read=9479 bytes_retransmit=9 bytes_invalid=0 send_seq=493 receive_seq=493 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996456 psu: mcu_awake=0.016 mcu_task_avg=0.000076 mcu_task_stddev=0.000229 bytes_write=6448 bytes_read=5910 bytes_retransmit=9 bytes_invalid=0 send_seq=245 receive_seq=245 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000378 adj=12000795 toolhead: mcu_awake=0.003 mcu_task_avg=0.000018 mcu_task_stddev=0.000036 bytes_write=1588 bytes_read=5870 bytes_retransmit=0 bytes_invalid=0 send_seq=166 receive_seq=166 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999924 adj=12000280 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.33 cputime=10.993 memavail=7309908 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196479.2: gcodein=0 mcu: mcu_awake=0.020 mcu_task_avg=0.000033 mcu_task_stddev=0.000121 bytes_write=11407 bytes_read=9615 bytes_retransmit=9 bytes_invalid=0 send_seq=494 receive_seq=494 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996410 psu: mcu_awake=0.016 mcu_task_avg=0.000076 mcu_task_stddev=0.000229 bytes_write=6601 bytes_read=6094 bytes_retransmit=9 bytes_invalid=0 send_seq=251 receive_seq=251 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000376 adj=12000802 toolhead: mcu_awake=0.003 mcu_task_avg=0.000018 mcu_task_stddev=0.000036 bytes_write=1594 bytes_read=5886 bytes_retransmit=0 bytes_invalid=0 send_seq=167 receive_seq=167 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999920 adj=12000300 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.7 sysload=0.33 cputime=11.019 memavail=7309908 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196480.2: gcodein=0 mcu: mcu_awake=0.008 mcu_task_avg=0.000036 mcu_task_stddev=0.000141 bytes_write=11419 bytes_read=9752 bytes_retransmit=9 bytes_invalid=0 send_seq=496 receive_seq=496 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996388 psu: mcu_awake=0.010 mcu_task_avg=0.000049 mcu_task_stddev=0.000197 bytes_write=6703 bytes_read=6246 bytes_retransmit=9 bytes_invalid=0 send_seq=256 receive_seq=256 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000371 adj=12000815 toolhead: mcu_awake=0.003 mcu_task_avg=0.000018 mcu_task_stddev=0.000036 bytes_write=1600 bytes_read=5902 bytes_retransmit=0 bytes_invalid=0 send_seq=168 receive_seq=168 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999914 adj=12000320 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.33 cputime=11.041 memavail=7310172 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196481.3: gcodein=0 mcu: mcu_awake=0.008 mcu_task_avg=0.000036 mcu_task_stddev=0.000141 bytes_write=11425 bytes_read=9858 bytes_retransmit=9 bytes_invalid=0 send_seq=497 receive_seq=497 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996386 psu: mcu_awake=0.010 mcu_task_avg=0.000049 mcu_task_stddev=0.000197 bytes_write=6809 bytes_read=6398 bytes_retransmit=9 bytes_invalid=0 send_seq=261 receive_seq=261 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000369 adj=12000805 toolhead: mcu_awake=0.001 mcu_task_avg=0.000021 mcu_task_stddev=0.000038 bytes_write=1606 bytes_read=5930 bytes_retransmit=0 bytes_invalid=0 send_seq=169 receive_seq=169 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999909 adj=12000370 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.33 cputime=11.064 memavail=7310172 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196482.3: gcodein=0 mcu: mcu_awake=0.008 mcu_task_avg=0.000036 mcu_task_stddev=0.000141 bytes_write=11431 bytes_read=9994 bytes_retransmit=9 bytes_invalid=0 send_seq=498 receive_seq=498 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996407 psu: mcu_awake=0.010 mcu_task_avg=0.000049 mcu_task_stddev=0.000197 bytes_write=6926 bytes_read=6535 bytes_retransmit=9 bytes_invalid=0 send_seq=266 receive_seq=266 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000370 adj=12000793 toolhead: mcu_awake=0.001 mcu_task_avg=0.000021 mcu_task_stddev=0.000038 bytes_write=1612 bytes_read=5946 bytes_retransmit=0 bytes_invalid=0 send_seq=170 receive_seq=170 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999905 adj=12000345 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=51.6 sysload=0.33 cputime=11.091 memavail=7310068 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196483.3: gcodein=0 mcu: mcu_awake=0.008 mcu_task_avg=0.000036 mcu_task_stddev=0.000141 bytes_write=11437 bytes_read=10100 bytes_retransmit=9 bytes_invalid=0 send_seq=499 receive_seq=499 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996435 psu: mcu_awake=0.010 mcu_task_avg=0.000049 mcu_task_stddev=0.000197 bytes_write=7044 bytes_read=6672 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 stalled_bytes=0 freq=12000372 adj=12000792 toolhead: mcu_awake=0.001 mcu_task_avg=0.000021 mcu_task_stddev=0.000038 bytes_write=1618 bytes_read=5962 bytes_retransmit=0 bytes_invalid=0 send_seq=171 receive_seq=171 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999909 adj=12000335 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.30 cputime=11.137 memavail=7310168 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196484.3: gcodein=0 mcu: mcu_awake=0.008 mcu_task_avg=0.000036 mcu_task_stddev=0.000141 bytes_write=11443 bytes_read=10206 bytes_retransmit=9 bytes_invalid=0 send_seq=500 receive_seq=500 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996424 psu: mcu_awake=0.010 mcu_task_avg=0.000049 mcu_task_stddev=0.000197 bytes_write=7142 bytes_read=6824 bytes_retransmit=9 bytes_invalid=0 send_seq=276 receive_seq=276 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000376 adj=12000783 toolhead: mcu_awake=0.001 mcu_task_avg=0.000021 mcu_task_stddev=0.000038 bytes_write=1624 bytes_read=5978 bytes_retransmit=0 bytes_invalid=0 send_seq=172 receive_seq=172 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999913 adj=12000337 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.30 cputime=11.180 memavail=7310172 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196485.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000006 bytes_write=11449 bytes_read=10356 bytes_retransmit=9 bytes_invalid=0 send_seq=501 receive_seq=501 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996413 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000006 bytes_write=7250 bytes_read=6974 bytes_retransmit=9 bytes_invalid=0 send_seq=281 receive_seq=281 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000373 adj=12000817 toolhead: mcu_awake=0.001 mcu_task_avg=0.000021 mcu_task_stddev=0.000038 bytes_write=1630 bytes_read=5994 bytes_retransmit=0 bytes_invalid=0 send_seq=173 receive_seq=173 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999909 adj=12000366 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=51.6 sysload=0.30 cputime=11.204 memavail=7310432 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196486.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000006 bytes_write=11455 bytes_read=10462 bytes_retransmit=9 bytes_invalid=0 send_seq=502 receive_seq=502 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996407 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000006 bytes_write=7360 bytes_read=7111 bytes_retransmit=9 bytes_invalid=0 send_seq=286 receive_seq=286 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000371 adj=12000809 toolhead: mcu_awake=0.001 mcu_task_avg=0.000021 mcu_task_stddev=0.000038 bytes_write=1636 bytes_read=6010 bytes_retransmit=0 bytes_invalid=0 send_seq=174 receive_seq=174 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999907 adj=12000348 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.30 cputime=11.226 memavail=7310432 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196487.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000006 bytes_write=11461 bytes_read=10568 bytes_retransmit=9 bytes_invalid=0 send_seq=503 receive_seq=503 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996408 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000006 bytes_write=7468 bytes_read=7263 bytes_retransmit=9 bytes_invalid=0 send_seq=291 receive_seq=291 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000373 adj=12000796 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000021 bytes_write=1642 bytes_read=6037 bytes_retransmit=0 bytes_invalid=0 send_seq=175 receive_seq=175 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999906 adj=12000338 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.30 cputime=11.248 memavail=7309712 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196488.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000006 bytes_write=11467 bytes_read=10704 bytes_retransmit=9 bytes_invalid=0 send_seq=504 receive_seq=504 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996444 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000006 bytes_write=7638 bytes_read=7428 bytes_retransmit=9 bytes_invalid=0 send_seq=296 receive_seq=296 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000369 adj=12000808 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000021 bytes_write=1648 bytes_read=6053 bytes_retransmit=0 bytes_invalid=0 send_seq=176 receive_seq=176 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999905 adj=12000330 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.7 sysload=0.28 cputime=11.272 memavail=7309712 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196489.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000006 bytes_write=11473 bytes_read=10810 bytes_retransmit=9 bytes_invalid=0 send_seq=505 receive_seq=505 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996442 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000006 bytes_write=7915 bytes_read=7678 bytes_retransmit=9 bytes_invalid=0 send_seq=304 receive_seq=304 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000366 adj=12000758 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000021 bytes_write=1654 bytes_read=6069 bytes_retransmit=0 bytes_invalid=0 send_seq=177 receive_seq=177 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999905 adj=12000299 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.28 cputime=11.299 memavail=7309236 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196490.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000007 bytes_write=11479 bytes_read=10930 bytes_retransmit=9 bytes_invalid=0 send_seq=506 receive_seq=506 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996450 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000007 bytes_write=8069 bytes_read=7890 bytes_retransmit=9 bytes_invalid=0 send_seq=310 receive_seq=310 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000367 adj=12000751 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000021 bytes_write=1660 bytes_read=6085 bytes_retransmit=0 bytes_invalid=0 send_seq=178 receive_seq=178 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999906 adj=12000307 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=49.7 sysload=0.28 cputime=11.351 memavail=7308488 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196491.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000007 bytes_write=11485 bytes_read=11066 bytes_retransmit=9 bytes_invalid=0 send_seq=507 receive_seq=507 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996490 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000007 bytes_write=8233 bytes_read=8074 bytes_retransmit=9 bytes_invalid=0 send_seq=316 receive_seq=316 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000367 adj=12000762 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000021 bytes_write=1666 bytes_read=6101 bytes_retransmit=0 bytes_invalid=0 send_seq=179 receive_seq=179 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999921 adj=12000315 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.28 cputime=11.401 memavail=7308444 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196492.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000007 bytes_write=11491 bytes_read=11172 bytes_retransmit=9 bytes_invalid=0 send_seq=508 receive_seq=508 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996496 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000007 bytes_write=8562 bytes_read=8338 bytes_retransmit=9 bytes_invalid=0 send_seq=324 receive_seq=324 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000367 adj=12000734 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000021 bytes_write=1672 bytes_read=6117 bytes_retransmit=0 bytes_invalid=0 send_seq=180 receive_seq=180 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999933 adj=12000387 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.6 sysload=0.28 cputime=11.451 memavail=7308516 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196493.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000007 bytes_write=11497 bytes_read=11278 bytes_retransmit=9 bytes_invalid=0 send_seq=509 receive_seq=509 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996502 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000007 bytes_write=8631 bytes_read=8471 bytes_retransmit=9 bytes_invalid=0 send_seq=328 receive_seq=328 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000366 adj=12000744 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000022 bytes_write=1678 bytes_read=6144 bytes_retransmit=0 bytes_invalid=0 send_seq=181 receive_seq=181 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999931 adj=12000451 heater_bed: target=0 temp=22.5 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=50.1 sysload=0.25 cputime=11.497 memavail=7308516 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000 Stats 196494.3: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000008 mcu_task_stddev=0.000007 bytes_write=11503 bytes_read=11414 bytes_retransmit=9 bytes_invalid=0 send_seq=510 receive_seq=510 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=99996491 psu: mcu_awake=0.001 mcu_task_avg=0.000006 mcu_task_stddev=0.000007 bytes_write=8688 bytes_read=8570 bytes_retransmit=9 bytes_invalid=0 send_seq=331 receive_seq=331 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=12000367 adj=12000742 toolhead: mcu_awake=0.000 mcu_task_avg=0.000016 mcu_task_stddev=0.000022 bytes_write=1684 bytes_read=6160 bytes_retransmit=0 bytes_invalid=0 send_seq=182 receive_seq=182 retransmit_seq=0 srtt=0.001 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=11999942 adj=12000412 heater_bed: target=0 temp=22.4 pwm=0.000 enclosure: temp=22.7 toolhead_mcu: temp=40.4 toolhead_ntc: temp=39.5 host: temp=51.1 sysload=0.25 cputime=11.538 memavail=7297708 print_time=12.475 buffer_time=0.000 print_stall=0 extruder: target=0 temp=24.9 pwm=0.000