Advertisement
chewyt

Untitled

Oct 15th, 2022
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.09 KB | None | 0 0
  1. ===== Config file =====
  2. [virtual_sdcard]
  3. path = ~/gcode_files
  4.  
  5. [display_status]
  6.  
  7. [pause_resume]
  8.  
  9. [stepper_x]
  10. step_pin = PB13
  11. dir_pin = !PB12
  12. enable_pin = !PB14
  13. microsteps = 16
  14. rotation_distance = 40
  15. endstop_pin = ^PC0
  16. position_endstop = 0
  17. position_max = 300
  18. homing_speed = 25
  19.  
  20. [tmc2209 stepper_x]
  21. uart_pin = PC11
  22. tx_pin = PC10
  23. uart_address = 0
  24. run_current = 0.580
  25. stealthchop_threshold = 999999
  26.  
  27. [stepper_y]
  28. step_pin = PB10
  29. dir_pin = !PB2
  30. enable_pin = !PB11
  31. microsteps = 16
  32. rotation_distance = 40
  33. endstop_pin = ^PC1
  34. position_endstop = 0
  35. position_max = 300
  36. homing_speed = 25
  37.  
  38. [tmc2209 stepper_y]
  39. uart_pin = PC11
  40. tx_pin = PC10
  41. uart_address = 2
  42. run_current = 0.580
  43. stealthchop_threshold = 999999
  44.  
  45. [stepper_z]
  46. step_pin = PB0
  47. dir_pin = PC5
  48. enable_pin = !PB1
  49. microsteps = 16
  50. rotation_distance = 8
  51. endstop_pin = ^PC2
  52. position_endstop = 0.0
  53. position_max = 350
  54.  
  55. [tmc2209 stepper_z]
  56. uart_pin = PC11
  57. tx_pin = PC10
  58. uart_address = 1
  59. run_current = 0.580
  60. stealthchop_threshold = 999999
  61.  
  62. [extruder]
  63. step_pin = PB3
  64. dir_pin = PB4
  65. enable_pin = !PD1
  66. microsteps = 16
  67. rotation_distance = 6.74
  68. nozzle_diameter = 0.400
  69. filament_diameter = 1.750
  70. heater_pin = PC8
  71. sensor_type = EPCOS 100K B57560G104F
  72. sensor_pin = PA0
  73. control = pid
  74. pid_kp = 21.527
  75. pid_ki = 1.063
  76. pid_kd = 108.982
  77. min_temp = 0
  78. max_temp = 250
  79. min_extrude_temp = 0
  80. max_extrude_only_distance = 1000
  81.  
  82. [tmc2209 extruder]
  83. uart_pin = PC11
  84. tx_pin = PC10
  85. uart_address = 3
  86. run_current = 0.650
  87. stealthchop_threshold = 999999
  88.  
  89. [heater_bed]
  90. heater_pin = PC9
  91. sensor_type = ATC Semitec 104GT-2
  92. sensor_pin = PC4
  93. control = pid
  94. pid_kp = 54.027
  95. pid_ki = 0.770
  96. pid_kd = 948.182
  97. min_temp = 0
  98. max_temp = 130
  99.  
  100. [heater_fan nozzle_cooling_fan]
  101. pin = PC7
  102.  
  103. [heater_fan controller_fan]
  104. pin = PB15
  105.  
  106. [fan]
  107. pin = PC6
  108.  
  109. [mcu]
  110. serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_34002B000750414235363020-if00
  111.  
  112. [printer]
  113. kinematics = cartesian
  114. max_velocity = 300
  115. max_accel = 3000
  116. max_z_velocity = 5
  117. max_z_accel = 100
  118.  
  119. [gcode_macro PAUSE]
  120. description = Pause the actual running print
  121. rename_existing = PAUSE_BASE
  122. variable_extrude = 1.0
  123. gcode =
  124. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  125. {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
  126. {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
  127. {% set max_z = printer.toolhead.axis_maximum.z|float %}
  128. {% set act_z = printer.toolhead.position.z|float %}
  129. {% if act_z < (max_z - 2.0) %}
  130. {% set z_safe = 2.0 %}
  131. {% else %}
  132. {% set z_safe = max_z - act_z %}
  133. {% endif %}
  134. PAUSE_BASE
  135. G91
  136. {% if printer.extruder.can_extrude|lower == 'true' %}
  137. G1 E-{E} F2100
  138. {% else %}
  139. {action_respond_info("Extruder not hot enough")}
  140. {% endif %}
  141. {% if "xyz" in printer.toolhead.homed_axes %}
  142. G1 Z{z_safe} F900
  143. G90
  144. G1 X{x_park} Y{y_park} F6000
  145. {% else %}
  146. {action_respond_info("Printer not homed")}
  147. {% endif %}
  148.  
  149. [gcode_macro RESUME]
  150. description = Resume the actual running print
  151. rename_existing = RESUME_BASE
  152. gcode =
  153. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  154. {% if 'VELOCITY' in params|upper %}
  155. {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
  156. {%else %}
  157. {% set get_params = "" %}
  158. {% endif %}
  159. {% if printer.extruder.can_extrude|lower == 'true' %}
  160. G91
  161. G1 E{E} F2100
  162. {% else %}
  163. {action_respond_info("Extruder not hot enough")}
  164. {% endif %}
  165. RESUME_BASE {get_params}
  166.  
  167. [gcode_macro CANCEL_PRINT]
  168. description = Cancel the actual running print
  169. rename_existing = CANCEL_PRINT_BASE
  170. gcode =
  171. TURN_OFF_HEATERS
  172. CANCEL_PRINT_BASE
  173.  
  174. [board_pins]
  175. aliases =
  176. EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
  177. EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
  178. =======================
  179. 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)
  180. 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
  181. Configured MCU 'mcu' (1024 moves)
  182. Args: ['/home/pi/klipper/klippy/klippy.py', '/home/pi/klipper_config/printer.cfg', '-l', '/home/pi/klipper_logs/klippy.log', '-a', '/tmp/klippy_uds']
  183. Git version: 'v0.10.0-594-g7290c145'
  184. CPU: 4 core ARMv7 Processor rev 3 (v7l)
  185. Python: '2.7.18 (default, Jul 14 2021, 08:11:37) \n[GCC 10.2.1 20210110]'
  186. =============== Log rollover at Sun Oct 16 00:07:06 2022 ===============
  187. Unable to issue reset command on MCU 'mcu'
  188. webhooks client 3044683904: Disconnected
  189. Restarting printer
  190. Start printer at Sun Oct 16 00:07:07 2022 (1665875227.3 54708.6)
  191. ===== Config file =====
  192. [virtual_sdcard]
  193. path = ~/gcode_files
  194.  
  195. [display_status]
  196.  
  197. [pause_resume]
  198.  
  199. [stepper_x]
  200. step_pin = PB13
  201. dir_pin = !PB12
  202. enable_pin = !PB14
  203. microsteps = 16
  204. rotation_distance = 40
  205. endstop_pin = ^PC0
  206. position_endstop = 0
  207. position_max = 300
  208. homing_speed = 25
  209.  
  210. [tmc2209 stepper_x]
  211. uart_pin = PC11
  212. tx_pin = PC10
  213. uart_address = 0
  214. run_current = 0.580
  215. stealthchop_threshold = 999999
  216.  
  217. [stepper_y]
  218. step_pin = PB10
  219. dir_pin = !PB2
  220. enable_pin = !PB11
  221. microsteps = 16
  222. rotation_distance = 40
  223. endstop_pin = ^PC1
  224. position_endstop = 0
  225. position_max = 300
  226. homing_speed = 25
  227.  
  228. [tmc2209 stepper_y]
  229. uart_pin = PC11
  230. tx_pin = PC10
  231. uart_address = 2
  232. run_current = 0.580
  233. stealthchop_threshold = 999999
  234.  
  235. [stepper_z]
  236. step_pin = PB0
  237. dir_pin = PC5
  238. enable_pin = !PB1
  239. microsteps = 16
  240. rotation_distance = 8
  241. endstop_pin = ^PC2
  242. position_endstop = 0.0
  243. position_max = 350
  244.  
  245. [tmc2209 stepper_z]
  246. uart_pin = PC11
  247. tx_pin = PC10
  248. uart_address = 1
  249. run_current = 0.580
  250. stealthchop_threshold = 999999
  251.  
  252. [extruder]
  253. step_pin = PB3
  254. dir_pin = PB4
  255. enable_pin = !PD1
  256. microsteps = 16
  257. rotation_distance = 6.74
  258. nozzle_diameter = 0.400
  259. filament_diameter = 1.750
  260. heater_pin = PC8
  261. sensor_type = EPCOS 100K B57560G104F
  262. sensor_pin = PA0
  263. control = pid
  264. pid_kp = 21.527
  265. pid_ki = 1.063
  266. pid_kd = 108.982
  267. min_temp = 0
  268. max_temp = 250
  269. min_extrude_temp = 0
  270. max_extrude_only_distance = 1000
  271.  
  272. [tmc2209 extruder]
  273. uart_pin = PC11
  274. tx_pin = PC10
  275. uart_address = 3
  276. run_current = 0.650
  277. stealthchop_threshold = 999999
  278.  
  279. [heater_bed]
  280. heater_pin = PC9
  281. sensor_type = ATC Semitec 104GT-2
  282. sensor_pin = PC4
  283. control = pid
  284. pid_kp = 54.027
  285. pid_ki = 0.770
  286. pid_kd = 948.182
  287. min_temp = 0
  288. max_temp = 130
  289.  
  290. [heater_fan nozzle_cooling_fan]
  291. pin = PC7
  292.  
  293. [heater_fan controller_fan]
  294. pin = PB15
  295.  
  296. [fan]
  297. pin = PC6
  298.  
  299. [mcu]
  300. serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_34002B000750414235363020-if00
  301.  
  302. [printer]
  303. kinematics = cartesian
  304. max_velocity = 300
  305. max_accel = 3000
  306. max_z_velocity = 5
  307. max_z_accel = 100
  308.  
  309. [gcode_macro PAUSE]
  310. description = Pause the actual running print
  311. rename_existing = PAUSE_BASE
  312. variable_extrude = 1.0
  313. gcode =
  314. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  315. {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
  316. {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
  317. {% set max_z = printer.toolhead.axis_maximum.z|float %}
  318. {% set act_z = printer.toolhead.position.z|float %}
  319. {% if act_z < (max_z - 2.0) %}
  320. {% set z_safe = 2.0 %}
  321. {% else %}
  322. {% set z_safe = max_z - act_z %}
  323. {% endif %}
  324. PAUSE_BASE
  325. G91
  326. {% if printer.extruder.can_extrude|lower == 'true' %}
  327. G1 E-{E} F2100
  328. {% else %}
  329. {action_respond_info("Extruder not hot enough")}
  330. {% endif %}
  331. {% if "xyz" in printer.toolhead.homed_axes %}
  332. G1 Z{z_safe} F900
  333. G90
  334. G1 X{x_park} Y{y_park} F6000
  335. {% else %}
  336. {action_respond_info("Printer not homed")}
  337. {% endif %}
  338.  
  339. [gcode_macro RESUME]
  340. description = Resume the actual running print
  341. rename_existing = RESUME_BASE
  342. gcode =
  343. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  344. {% if 'VELOCITY' in params|upper %}
  345. {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
  346. {%else %}
  347. {% set get_params = "" %}
  348. {% endif %}
  349. {% if printer.extruder.can_extrude|lower == 'true' %}
  350. G91
  351. G1 E{E} F2100
  352. {% else %}
  353. {action_respond_info("Extruder not hot enough")}
  354. {% endif %}
  355. RESUME_BASE {get_params}
  356.  
  357. [gcode_macro CANCEL_PRINT]
  358. description = Cancel the actual running print
  359. rename_existing = CANCEL_PRINT_BASE
  360. gcode =
  361. TURN_OFF_HEATERS
  362. CANCEL_PRINT_BASE
  363.  
  364. [board_pins]
  365. aliases =
  366. EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
  367. EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
  368. =======================
  369. Extruder max_extrude_ratio=0.266081
  370. mcu 'mcu': Starting serial connect
  371. webhooks client 3024955432: New connection
  372. webhooks client 3024955432: Client info {'program': 'Moonraker', 'version': 'v0.7.1-676-gedaeb17'}
  373. 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)
  374. 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
  375. Sending MCU 'mcu' printer configuration...
  376. Configured MCU 'mcu' (1024 moves)
  377. Starting heater checks for heater_bed
  378. Starting heater checks for extruder
  379. webhooks: registering remote method 'shutdown_machine' for connection id: 3024955432
  380. webhooks: registering remote method 'reboot_machine' for connection id: 3024955432
  381. webhooks: registering remote method 'pause_job_queue' for connection id: 3024955432
  382. webhooks: registering remote method 'start_job_queue' for connection id: 3024955432
  383. 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
  384. Attempting MCU 'mcu' reset command
  385. webhooks client 3024955432: Disconnected
  386. Restarting printer
  387. Start printer at Sun Oct 16 00:07:45 2022 (1665875265.3 54746.6)
  388. ===== Config file =====
  389. [virtual_sdcard]
  390. path = ~/gcode_files
  391.  
  392. [display_status]
  393.  
  394. [pause_resume]
  395.  
  396. [stepper_x]
  397. step_pin = PB13
  398. dir_pin = !PB12
  399. enable_pin = !PB14
  400. microsteps = 16
  401. rotation_distance = 40
  402. endstop_pin = ^PC0
  403. position_endstop = 0
  404. position_max = 300
  405. homing_speed = 25
  406.  
  407. [tmc2209 stepper_x]
  408. uart_pin = PC11
  409. tx_pin = PC10
  410. uart_address = 0
  411. run_current = 0.580
  412. stealthchop_threshold = 999999
  413.  
  414. [stepper_y]
  415. step_pin = PB10
  416. dir_pin = !PB2
  417. enable_pin = !PB11
  418. microsteps = 16
  419. rotation_distance = 40
  420. endstop_pin = ^PC1
  421. position_endstop = 0
  422. position_max = 300
  423. homing_speed = 25
  424.  
  425. [tmc2209 stepper_y]
  426. uart_pin = PC11
  427. tx_pin = PC10
  428. uart_address = 2
  429. run_current = 0.580
  430. stealthchop_threshold = 999999
  431.  
  432. [stepper_z]
  433. step_pin = PB0
  434. dir_pin = PC5
  435. enable_pin = !PB1
  436. microsteps = 16
  437. rotation_distance = 8
  438. endstop_pin = ^PC2
  439. position_endstop = 0.0
  440. position_max = 350
  441.  
  442. [tmc2209 stepper_z]
  443. uart_pin = PC11
  444. tx_pin = PC10
  445. uart_address = 1
  446. run_current = 0.580
  447. stealthchop_threshold = 999999
  448.  
  449. [extruder]
  450. step_pin = PB3
  451. dir_pin = PB4
  452. enable_pin = !PD1
  453. microsteps = 16
  454. rotation_distance = 6.74
  455. nozzle_diameter = 0.400
  456. filament_diameter = 1.750
  457. heater_pin = PC8
  458. sensor_type = EPCOS 100K B57560G104F
  459. sensor_pin = PA0
  460. control = pid
  461. pid_kp = 21.527
  462. pid_ki = 1.063
  463. pid_kd = 108.982
  464. min_temp = 0
  465. max_temp = 250
  466. max_extrude_only_distance = 1000
  467.  
  468. [tmc2209 extruder]
  469. uart_pin = PC11
  470. tx_pin = PC10
  471. uart_address = 3
  472. run_current = 0.650
  473. stealthchop_threshold = 999999
  474.  
  475. [heater_bed]
  476. heater_pin = PC9
  477. sensor_type = ATC Semitec 104GT-2
  478. sensor_pin = PC4
  479. control = pid
  480. pid_kp = 54.027
  481. pid_ki = 0.770
  482. pid_kd = 948.182
  483. min_temp = 0
  484. max_temp = 130
  485.  
  486. [heater_fan nozzle_cooling_fan]
  487. pin = PC7
  488.  
  489. [heater_fan controller_fan]
  490. pin = PB15
  491.  
  492. [fan]
  493. pin = PC6
  494.  
  495. [mcu]
  496. serial = /dev/serial/by-id/usb-Klipper_stm32g0b1xx_34002B000750414235363020-if00
  497.  
  498. [printer]
  499. kinematics = cartesian
  500. max_velocity = 300
  501. max_accel = 3000
  502. max_z_velocity = 5
  503. max_z_accel = 100
  504.  
  505. [gcode_macro PAUSE]
  506. description = Pause the actual running print
  507. rename_existing = PAUSE_BASE
  508. variable_extrude = 1.0
  509. gcode =
  510. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  511. {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %}
  512. {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
  513. {% set max_z = printer.toolhead.axis_maximum.z|float %}
  514. {% set act_z = printer.toolhead.position.z|float %}
  515. {% if act_z < (max_z - 2.0) %}
  516. {% set z_safe = 2.0 %}
  517. {% else %}
  518. {% set z_safe = max_z - act_z %}
  519. {% endif %}
  520. PAUSE_BASE
  521. G91
  522. {% if printer.extruder.can_extrude|lower == 'true' %}
  523. G1 E-{E} F2100
  524. {% else %}
  525. {action_respond_info("Extruder not hot enough")}
  526. {% endif %}
  527. {% if "xyz" in printer.toolhead.homed_axes %}
  528. G1 Z{z_safe} F900
  529. G90
  530. G1 X{x_park} Y{y_park} F6000
  531. {% else %}
  532. {action_respond_info("Printer not homed")}
  533. {% endif %}
  534.  
  535. [gcode_macro RESUME]
  536. description = Resume the actual running print
  537. rename_existing = RESUME_BASE
  538. gcode =
  539. {% set E = printer["gcode_macro PAUSE"].extrude|float %}
  540. {% if 'VELOCITY' in params|upper %}
  541. {% set get_params = ('VELOCITY=' + params.VELOCITY) %}
  542. {%else %}
  543. {% set get_params = "" %}
  544. {% endif %}
  545. {% if printer.extruder.can_extrude|lower == 'true' %}
  546. G91
  547. G1 E{E} F2100
  548. {% else %}
  549. {action_respond_info("Extruder not hot enough")}
  550. {% endif %}
  551. RESUME_BASE {get_params}
  552.  
  553. [gcode_macro CANCEL_PRINT]
  554. description = Cancel the actual running print
  555. rename_existing = CANCEL_PRINT_BASE
  556. gcode =
  557. TURN_OFF_HEATERS
  558. CANCEL_PRINT_BASE
  559.  
  560. [board_pins]
  561. aliases =
  562. EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
  563. EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
  564. =======================
  565. Extruder max_extrude_ratio=0.266081
  566. mcu 'mcu': Starting serial connect
  567. webhooks client 3042202768: New connection
  568. webhooks client 3042202768: Client info {'program': 'Moonraker', 'version': 'v0.7.1-676-gedaeb17'}
  569. 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)
  570. 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
  571. Sending MCU 'mcu' printer configuration...
  572. Configured MCU 'mcu' (1024 moves)
  573. Starting heater checks for heater_bed
  574. Starting heater checks for extruder
  575. 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
  576. webhooks: registering remote method 'shutdown_machine' for connection id: 3042202768
  577. webhooks: registering remote method 'reboot_machine' for connection id: 3042202768
  578. webhooks: registering remote method 'pause_job_queue' for connection id: 3042202768
  579. webhooks: registering remote method 'start_job_queue' for connection id: 3042202768
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement