Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ===== Config file =====
- [virtual_sdcard]
- path = ~/gcode_files
- [display_status]
- [pause_resume]
- [stepper_x]
- step_pin = PB13
- dir_pin = !PB12
- enable_pin = !PB14
- microsteps = 16
- rotation_distance = 40
- endstop_pin = ^PC0
- position_endstop = 0
- position_max = 300
- homing_speed = 25
- [tmc2209 stepper_x]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 0
- run_current = 0.580
- stealthchop_threshold = 999999
- [stepper_y]
- step_pin = PB10
- dir_pin = !PB2
- enable_pin = !PB11
- microsteps = 16
- rotation_distance = 40
- endstop_pin = ^PC1
- position_endstop = 0
- position_max = 300
- homing_speed = 25
- [tmc2209 stepper_y]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 2
- run_current = 0.580
- stealthchop_threshold = 999999
- [stepper_z]
- step_pin = PB0
- dir_pin = PC5
- enable_pin = !PB1
- microsteps = 16
- rotation_distance = 8
- endstop_pin = ^PC2
- position_endstop = 0.0
- position_max = 350
- [tmc2209 stepper_z]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 1
- run_current = 0.580
- stealthchop_threshold = 999999
- [extruder]
- step_pin = PB3
- dir_pin = PB4
- enable_pin = !PD1
- microsteps = 16
- rotation_distance = 6.74
- nozzle_diameter = 0.400
- filament_diameter = 1.750
- heater_pin = PC8
- sensor_type = EPCOS 100K B57560G104F
- sensor_pin = PA0
- control = pid
- pid_kp = 21.527
- pid_ki = 1.063
- pid_kd = 108.982
- min_temp = 0
- max_temp = 250
- min_extrude_temp = 0
- max_extrude_only_distance = 1000
- [tmc2209 extruder]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 3
- run_current = 0.650
- stealthchop_threshold = 999999
- [heater_bed]
- heater_pin = PC9
- sensor_type = ATC Semitec 104GT-2
- sensor_pin = PC4
- control = pid
- pid_kp = 54.027
- pid_ki = 0.770
- pid_kd = 948.182
- min_temp = 0
- max_temp = 130
- [heater_fan nozzle_cooling_fan]
- pin = PC7
- [heater_fan controller_fan]
- pin = PB15
- [fan]
- pin = PC6
- [mcu]
- serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_34002B000750414235363020-if00
- [printer]
- kinematics = cartesian
- max_velocity = 300
- max_accel = 3000
- max_z_velocity = 5
- max_z_accel = 100
- [gcode_macro PAUSE]
- description = Pause the actual running print
- rename_existing = PAUSE_BASE
- variable_extrude = 1.0
- gcode =
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
- {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
- {% set max_z = printer.toolhead.axis_maximum.z|float %}
- {% set act_z = printer.toolhead.position.z|float %}
- {% if act_z < (max_z - 2.0) %}
- {% set z_safe = 2.0 %}
- {% else %}
- {% set z_safe = max_z - act_z %}
- {% endif %}
- PAUSE_BASE
- G91
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G1 E-{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- {% if "xyz" in printer.toolhead.homed_axes %}
- G1 Z{z_safe} F900
- G90
- G1 X{x_park} Y{y_park} F6000
- {% else %}
- {action_respond_info("Printer not homed")}
- {% endif %}
- [gcode_macro RESUME]
- description = Resume the actual running print
- rename_existing = RESUME_BASE
- gcode =
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- {% if 'VELOCITY' in params|upper %}
- {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
- {%else %}
- {% set get_params = "" %}
- {% endif %}
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G91
- G1 E{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- RESUME_BASE {get_params}
- [gcode_macro CANCEL_PRINT]
- description = Cancel the actual running print
- rename_existing = CANCEL_PRINT_BASE
- gcode =
- TURN_OFF_HEATERS
- CANCEL_PRINT_BASE
- [board_pins]
- aliases =
- EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
- EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
- =======================
- Loaded MCU 'mcu' 105 commands (v0.10.0-594-g7290c145 / 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_PB6_PB7=PB6,PB7 BUS_PINS_spi2a=PC2,PC3,PB10 RESERVE_PINS_crystal=PF0,PF1 RESERVE_PINS_USB=PA11,PA12 CLOCK_FREQ=64000000 BUS_PINS_i2c1_PB8_PB9=PB8,PB9 BUS_PINS_spi1a=PB4,PB5,PB3 STATS_SUMSQ_BASE=256 BUS_PINS_i2c1_PA9_PA10=PA9,PA10 BUS_PINS_i2c2_PB10_PB11=PB10,PB11 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_spi3=PB4,PB5,PB3 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi1=PA6,PA7,PA5 BUS_PINS_i2c2_PB13_PB14=PB13,PB14 PWM_MAX=255 MCU=stm32g0b1xx BUS_PINS_i2c3_PB3_PB4=PB3,PB4
- Configured MCU 'mcu' (1024 moves)
- Args: ['/home/pi/klipper/klippy/klippy.py', '/home/pi/klipper_config/printer.cfg', '-l', '/home/pi/klipper_logs/klippy.log', '-a', '/tmp/klippy_uds']
- Git version: 'v0.10.0-594-g7290c145'
- CPU: 4 core ARMv7 Processor rev 3 (v7l)
- Python: '2.7.18 (default, Jul 14 2021, 08:11:37) \n[GCC 10.2.1 20210110]'
- =============== Log rollover at Sun Oct 16 00:07:06 2022 ===============
- Unable to issue reset command on MCU 'mcu'
- webhooks client 3044683904: Disconnected
- Restarting printer
- Start printer at Sun Oct 16 00:07:07 2022 (1665875227.3 54708.6)
- ===== Config file =====
- [virtual_sdcard]
- path = ~/gcode_files
- [display_status]
- [pause_resume]
- [stepper_x]
- step_pin = PB13
- dir_pin = !PB12
- enable_pin = !PB14
- microsteps = 16
- rotation_distance = 40
- endstop_pin = ^PC0
- position_endstop = 0
- position_max = 300
- homing_speed = 25
- [tmc2209 stepper_x]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 0
- run_current = 0.580
- stealthchop_threshold = 999999
- [stepper_y]
- step_pin = PB10
- dir_pin = !PB2
- enable_pin = !PB11
- microsteps = 16
- rotation_distance = 40
- endstop_pin = ^PC1
- position_endstop = 0
- position_max = 300
- homing_speed = 25
- [tmc2209 stepper_y]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 2
- run_current = 0.580
- stealthchop_threshold = 999999
- [stepper_z]
- step_pin = PB0
- dir_pin = PC5
- enable_pin = !PB1
- microsteps = 16
- rotation_distance = 8
- endstop_pin = ^PC2
- position_endstop = 0.0
- position_max = 350
- [tmc2209 stepper_z]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 1
- run_current = 0.580
- stealthchop_threshold = 999999
- [extruder]
- step_pin = PB3
- dir_pin = PB4
- enable_pin = !PD1
- microsteps = 16
- rotation_distance = 6.74
- nozzle_diameter = 0.400
- filament_diameter = 1.750
- heater_pin = PC8
- sensor_type = EPCOS 100K B57560G104F
- sensor_pin = PA0
- control = pid
- pid_kp = 21.527
- pid_ki = 1.063
- pid_kd = 108.982
- min_temp = 0
- max_temp = 250
- min_extrude_temp = 0
- max_extrude_only_distance = 1000
- [tmc2209 extruder]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 3
- run_current = 0.650
- stealthchop_threshold = 999999
- [heater_bed]
- heater_pin = PC9
- sensor_type = ATC Semitec 104GT-2
- sensor_pin = PC4
- control = pid
- pid_kp = 54.027
- pid_ki = 0.770
- pid_kd = 948.182
- min_temp = 0
- max_temp = 130
- [heater_fan nozzle_cooling_fan]
- pin = PC7
- [heater_fan controller_fan]
- pin = PB15
- [fan]
- pin = PC6
- [mcu]
- serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_34002B000750414235363020-if00
- [printer]
- kinematics = cartesian
- max_velocity = 300
- max_accel = 3000
- max_z_velocity = 5
- max_z_accel = 100
- [gcode_macro PAUSE]
- description = Pause the actual running print
- rename_existing = PAUSE_BASE
- variable_extrude = 1.0
- gcode =
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
- {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
- {% set max_z = printer.toolhead.axis_maximum.z|float %}
- {% set act_z = printer.toolhead.position.z|float %}
- {% if act_z < (max_z - 2.0) %}
- {% set z_safe = 2.0 %}
- {% else %}
- {% set z_safe = max_z - act_z %}
- {% endif %}
- PAUSE_BASE
- G91
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G1 E-{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- {% if "xyz" in printer.toolhead.homed_axes %}
- G1 Z{z_safe} F900
- G90
- G1 X{x_park} Y{y_park} F6000
- {% else %}
- {action_respond_info("Printer not homed")}
- {% endif %}
- [gcode_macro RESUME]
- description = Resume the actual running print
- rename_existing = RESUME_BASE
- gcode =
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- {% if 'VELOCITY' in params|upper %}
- {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
- {%else %}
- {% set get_params = "" %}
- {% endif %}
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G91
- G1 E{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- RESUME_BASE {get_params}
- [gcode_macro CANCEL_PRINT]
- description = Cancel the actual running print
- rename_existing = CANCEL_PRINT_BASE
- gcode =
- TURN_OFF_HEATERS
- CANCEL_PRINT_BASE
- [board_pins]
- aliases =
- EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
- EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
- =======================
- Extruder max_extrude_ratio=0.266081
- mcu 'mcu': Starting serial connect
- webhooks client 3024955432: New connection
- webhooks client 3024955432: Client info {'program': 'Moonraker', 'version': 'v0.7.1-676-gedaeb17'}
- Loaded MCU 'mcu' 105 commands (v0.10.0-594-g7290c145 / 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_PB6_PB7=PB6,PB7 BUS_PINS_spi2a=PC2,PC3,PB10 RESERVE_PINS_crystal=PF0,PF1 RESERVE_PINS_USB=PA11,PA12 CLOCK_FREQ=64000000 BUS_PINS_i2c1_PB8_PB9=PB8,PB9 BUS_PINS_spi1a=PB4,PB5,PB3 STATS_SUMSQ_BASE=256 BUS_PINS_i2c1_PA9_PA10=PA9,PA10 BUS_PINS_i2c2_PB10_PB11=PB10,PB11 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_spi3=PB4,PB5,PB3 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi1=PA6,PA7,PA5 BUS_PINS_i2c2_PB13_PB14=PB13,PB14 PWM_MAX=255 MCU=stm32g0b1xx BUS_PINS_i2c3_PB3_PB4=PB3,PB4
- Sending MCU 'mcu' printer configuration...
- Configured MCU 'mcu' (1024 moves)
- Starting heater checks for heater_bed
- Starting heater checks for extruder
- webhooks: registering remote method 'shutdown_machine' for connection id: 3024955432
- webhooks: registering remote method 'reboot_machine' for connection id: 3024955432
- webhooks: registering remote method 'pause_job_queue' for connection id: 3024955432
- webhooks: registering remote method 'start_job_queue' for connection id: 3024955432
- Stats 54744.7: gcodein=0 mcu: mcu_awake=0.002 mcu_task_avg=0.000013 mcu_task_stddev=0.000010 bytes_write=2536 bytes_read=9611 bytes_retransmit=9 bytes_invalid=0 send_seq=246 receive_seq=246 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=63998665 heater_bed: target=0 temp=22.3 pwm=0.000 sysload=0.00 cputime=475.903 memavail=1675632 print_time=765.202 buffer_time=0.822 print_stall=0 extruder: target=0 temp=21.9 pwm=0.000
- Attempting MCU 'mcu' reset command
- webhooks client 3024955432: Disconnected
- Restarting printer
- Start printer at Sun Oct 16 00:07:45 2022 (1665875265.3 54746.6)
- ===== Config file =====
- [virtual_sdcard]
- path = ~/gcode_files
- [display_status]
- [pause_resume]
- [stepper_x]
- step_pin = PB13
- dir_pin = !PB12
- enable_pin = !PB14
- microsteps = 16
- rotation_distance = 40
- endstop_pin = ^PC0
- position_endstop = 0
- position_max = 300
- homing_speed = 25
- [tmc2209 stepper_x]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 0
- run_current = 0.580
- stealthchop_threshold = 999999
- [stepper_y]
- step_pin = PB10
- dir_pin = !PB2
- enable_pin = !PB11
- microsteps = 16
- rotation_distance = 40
- endstop_pin = ^PC1
- position_endstop = 0
- position_max = 300
- homing_speed = 25
- [tmc2209 stepper_y]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 2
- run_current = 0.580
- stealthchop_threshold = 999999
- [stepper_z]
- step_pin = PB0
- dir_pin = PC5
- enable_pin = !PB1
- microsteps = 16
- rotation_distance = 8
- endstop_pin = ^PC2
- position_endstop = 0.0
- position_max = 350
- [tmc2209 stepper_z]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 1
- run_current = 0.580
- stealthchop_threshold = 999999
- [extruder]
- step_pin = PB3
- dir_pin = PB4
- enable_pin = !PD1
- microsteps = 16
- rotation_distance = 6.74
- nozzle_diameter = 0.400
- filament_diameter = 1.750
- heater_pin = PC8
- sensor_type = EPCOS 100K B57560G104F
- sensor_pin = PA0
- control = pid
- pid_kp = 21.527
- pid_ki = 1.063
- pid_kd = 108.982
- min_temp = 0
- max_temp = 250
- max_extrude_only_distance = 1000
- [tmc2209 extruder]
- uart_pin = PC11
- tx_pin = PC10
- uart_address = 3
- run_current = 0.650
- stealthchop_threshold = 999999
- [heater_bed]
- heater_pin = PC9
- sensor_type = ATC Semitec 104GT-2
- sensor_pin = PC4
- control = pid
- pid_kp = 54.027
- pid_ki = 0.770
- pid_kd = 948.182
- min_temp = 0
- max_temp = 130
- [heater_fan nozzle_cooling_fan]
- pin = PC7
- [heater_fan controller_fan]
- pin = PB15
- [fan]
- pin = PC6
- [mcu]
- serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_34002B000750414235363020-if00
- [printer]
- kinematics = cartesian
- max_velocity = 300
- max_accel = 3000
- max_z_velocity = 5
- max_z_accel = 100
- [gcode_macro PAUSE]
- description = Pause the actual running print
- rename_existing = PAUSE_BASE
- variable_extrude = 1.0
- gcode =
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
- {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
- {% set max_z = printer.toolhead.axis_maximum.z|float %}
- {% set act_z = printer.toolhead.position.z|float %}
- {% if act_z < (max_z - 2.0) %}
- {% set z_safe = 2.0 %}
- {% else %}
- {% set z_safe = max_z - act_z %}
- {% endif %}
- PAUSE_BASE
- G91
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G1 E-{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- {% if "xyz" in printer.toolhead.homed_axes %}
- G1 Z{z_safe} F900
- G90
- G1 X{x_park} Y{y_park} F6000
- {% else %}
- {action_respond_info("Printer not homed")}
- {% endif %}
- [gcode_macro RESUME]
- description = Resume the actual running print
- rename_existing = RESUME_BASE
- gcode =
- {% set E = printer["gcode_macro PAUSE"].extrude|float %}
- {% if 'VELOCITY' in params|upper %}
- {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
- {%else %}
- {% set get_params = "" %}
- {% endif %}
- {% if printer.extruder.can_extrude|lower == 'true' %}
- G91
- G1 E{E} F2100
- {% else %}
- {action_respond_info("Extruder not hot enough")}
- {% endif %}
- RESUME_BASE {get_params}
- [gcode_macro CANCEL_PRINT]
- description = Cancel the actual running print
- rename_existing = CANCEL_PRINT_BASE
- gcode =
- TURN_OFF_HEATERS
- CANCEL_PRINT_BASE
- [board_pins]
- aliases =
- EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
- EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
- =======================
- Extruder max_extrude_ratio=0.266081
- mcu 'mcu': Starting serial connect
- webhooks client 3042202768: New connection
- webhooks client 3042202768: Client info {'program': 'Moonraker', 'version': 'v0.7.1-676-gedaeb17'}
- Loaded MCU 'mcu' 105 commands (v0.10.0-594-g7290c145 / 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_PB6_PB7=PB6,PB7 BUS_PINS_spi2a=PC2,PC3,PB10 RESERVE_PINS_crystal=PF0,PF1 RESERVE_PINS_USB=PA11,PA12 CLOCK_FREQ=64000000 BUS_PINS_i2c1_PB8_PB9=PB8,PB9 BUS_PINS_spi1a=PB4,PB5,PB3 STATS_SUMSQ_BASE=256 BUS_PINS_i2c1_PA9_PA10=PA9,PA10 BUS_PINS_i2c2_PB10_PB11=PB10,PB11 STEPPER_BOTH_EDGE=1 ADC_MAX=4095 BUS_PINS_spi3=PB4,PB5,PB3 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi1=PA6,PA7,PA5 BUS_PINS_i2c2_PB13_PB14=PB13,PB14 PWM_MAX=255 MCU=stm32g0b1xx BUS_PINS_i2c3_PB3_PB4=PB3,PB4
- Sending MCU 'mcu' printer configuration...
- Configured MCU 'mcu' (1024 moves)
- Starting heater checks for heater_bed
- Starting heater checks for extruder
- Stats 54747.6: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=2320 bytes_read=5540 bytes_retransmit=9 bytes_invalid=0 send_seq=211 receive_seq=211 retransmit_seq=2 srtt=0.000 rttvar=0.000 rto=0.025 ready_bytes=0 stalled_bytes=0 freq=63997512 heater_bed: target=0 temp=0.0 pwm=0.000 sysload=0.00 cputime=476.197 memavail=1677920 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=0.0 pwm=0.000
- webhooks: registering remote method 'shutdown_machine' for connection id: 3042202768
- webhooks: registering remote method 'reboot_machine' for connection id: 3042202768
- webhooks: registering remote method 'pause_job_queue' for connection id: 3042202768
- webhooks: registering remote method 'start_job_queue' for connection id: 3042202768
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement