How to Add Manual G-Code to Fusion 360 CAM!

This requires a post processor edit. To allow code snippets to be posted manually using the Manual NC > Pass Through operation, please add the following function to the post processor using a text editing program.


        
1
2
3
4
5
6
7
8
function onPassThrough(text) {
var commands = String(text).split(",");
for (text in commands) {
writeBlock(commands[text]);
}
}

//Thanks to the Autodesk Knowledge Network for help with this at https://knowledge.autodesk.com/support/hsm/learn-explore/caas/sfdcarticles/sfdcarticles/How-to-use-Manual-NC-options-to-manually-add-code-with-Fusion-360-HSM-CAM.html!