Basic Information:
Printer Model: Flsun Superracer
MCU / Printerboard: SKR 1.3
klippy.log
Fill out above information and in all cases attach your klippy.log
file. Pasting your printer.cfg
is not needed
Describe your issue: Since update when I try to start a print I’m getting the error G2/G3 requires IJ, IK or JK parameters, I know this is from my start gcode but I have no idea how to go about fixing this.
[gcode_macro START_PRINT]
description: Start G-Code
gcode:
{% set BED_TEMP = params.BED_TEMP|default(60)|float %}
{% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(210)|float %}
G21
G90
M82
M104 S100
M140 S{BED_TEMP}
{% if printer.toolhead.homed_axes != “xyz” %}
G28
{% endif %}
BED_MESH_PROFILE LOAD=default
G1 Z270 F2500
G1 X-130 F2500
M190 S{BED_TEMP}
M109 S{EXTRUDER_TEMP}
G1 Z1 F2500
G1 X-130 Y0 Z0.4
G92 E0
G3 X0 Y-130 Z0.4 E40 F1500 I130
G92 E0
G1 E-1.5 F1800