Fusion 360 Post Processor fails

263 views
Skip to first unread message

Joe Roddis

unread,
Dec 5, 2018, 4:34:56 AM12/5/18
to cirqwizard
Information: Configuration: Cirqoid
Information: Vendor: Cirqoid
Information: Posting intermediate data to 'C:\Users\jroddis\Desktop\1001.txt'
Information: Total number of warnings: 1
Error: Failed to post process. See below for details.
...
Code page changed to '1252  (ANSI - Latin I)'
Start time: Wednesday, December 5, 2018 9:31:54 AM
Code page changed to '20127 (US-ASCII)'
Post processor engine: 4.2.1 42089
Configuration path: C:\Users\jroddis\OneDrive\Software\Program Files\Fusion360\Cirqoid Post Processor.cps
Include paths: C:\Users\jroddis\OneDrive\Software\Program Files\Fusion360
Configuration modification date: Monday, December 3, 2018 10:06:02 PM
Output path: C:\Users\jroddis\Desktop\1001.txt
Checksum of intermediate NC data: ec54a2593077476e2fde735c1fe7235e
Checksum of configuration: c5df5d91a2d9d3f8f7b74c160fb927a6
Legal: Copyright (C) 2012-2016 by Autodesk, Inc.
Warning: The post configuration has been not been certified for use with this version of the post processor. The post configuration has to be re-certified.
The post configuration has been certified for level 1 but requires level 2.
Generated by: Fusion 360 CAM 2.0.5044
...

###############################################################################
Error: ReferenceError: g53GoHome is not defined
Error at line: 354

Stack dump:
onClose()@C:\Users\jroddis\OneDrive\Software\Program Files\Fusion360\Cirqoid Post Processor.cps:353
Failed while processing onSectionEnd() for record 60144.
###############################################################################

Error: Failed to invoke function 'onClose'.
Error: Failed to invoke 'onClose' in the post configuration.
Error: Failed to execute configuration.
Stop time: Wednesday, December 5, 2018 9:31:54 AM
Post processing failed.

Looks like it's to do with this line:

Enter code here...Error: ReferenceError: g53GoHome is not defined

But I'm not sure what I've done wrong!

Michael John Ward

unread,
Jan 24, 2019, 2:37:44 AM1/24/19
to cirqwizard
Hi Joe.
I also had this problem, and I found the problem. 

There is a bug in the Fusion 360 post processor that causes an error when you run it
You can easily fix it by opening the post processor in notepad or some other text editor

Scroll down to the last function onClose()

function onClose() {
  onCommand
(COMMAND_STOP_SPINDLE);
 
if (g53GoHome) {
    writeBlock
("G53");
    writeBlock
("G0 Z0"); // retract
    writeBlock
("G0 X0 Y0");
 
} else {
    writeBlock
("G53");
    writeBlock
("G0 Z0"); // retract
 
}



line 3 of the below snippet should be: 
if (properties.g53GoHome) {

just type "properties." before the g53GoHome variable, save and close
That should take care of the problem

Wouter Horselenberg

unread,
Jun 13, 2020, 5:58:24 AM6/13/20
to cirqwizard
Thanks Michael, This also works for me!
Reply all
Reply to author
Forward
0 new messages