- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using the shopbot post processor (https://cam.autodesk.com/hsmposts ver 43779). I followed the instructions in this article (www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/post-processor-manual-NC-n...) and added the following code to the post processor:
// Manual NC PassThrough - added by SRG 4/30/22
function onPassThrough(text) {
writeComment("Manual NC Passthrough");
var commands = String(text).split(",");
for (text in commands) {
writeBlock(commands[text]);
}
}
In Fusion, I'm using Manual NC > Pass Through and adding this (I'm only testing):
The post processor is outputting this:
' Manual NC Passthrough
JX
-10
' Manual NC Passthrough
JY
5
I want it to output this:
' Manual NC Passthrough
JX, -10
JY, 5
Can anyone tell me how to edit my post processor to do this?
Solved! Go to Solution.