I found this
{% set bed_targer_temp = printer.heater_bed.target|int %}
While trying to sort out why my bed temp was dropping back to the global default after the initial bed heating.
I assume that the machine code is skipping “targeR” in [gcode_macro START_PRINT]
Some of you might want to check for this typo.
I pulled this into VS code, there are actually four iterations in macro.cfg
After I corrected the typo and tried to start a print, the machine errors with an extruder temp fault and cancels the print.
‘targer’ exists somewhere else in the firmware from what I can tell. I pulled in the entire machine configuration backup folder I created and searched via VScode but it didn’t hit for ‘targer’ anywhere. I’m guessing targer is defined in one of the python scripts, but I’m not up to the task of locating it.
Edit: It looks like a reboot after editing took care of the error it was creating.