It directs me to search the site, not a specific post...Hi Macarms
I suggest you read through this post. It's not quite what you are hoping for, but I have found it useful:
https://www.masso.com.au/forums/topic/solidworks-post-processor/#postid-17332-bp
It directs me to search the site, not a specific post...
Just needs a M05 & M30 to finish off. Spindle OFF & Program endN108 M06 T1 () <===== Tool change order incorrect -- Should be Txx M06
N110 (F-contour3)
N112 G00 G54 G90 X16.9296 Y-7.6937 S3500 M03
N114 G43 H1 Z100. <===== Unsupported code MASSO will ignore entire line.
N116 S3500
N117 M03 <===== Missing M03 to start spindle
N118 Z100.
Although the tool change just before the end of program is strange. If the current tool is the tool requested G3 will ignore the command.That was just a snippet of the code there is that at the end
Issuing tool number after tool change command will preload the tool change function with the tool number for the next tool change command and you may not get the expected tool loaded.I haven’t had a look at the tool changer side of things yet
Although the tool change just before the end of program is strange. If the current tool is the tool requested G3 will ignore the command.
Issuing tool number after tool change command will preload the tool change function with the tool number for the next tool change command and you may not get the expected tool loaded.
eg.
MASSO remembers last tool number loaded between power cycles.
Current tool T1 following code will not load T2 until third M06.
M06 T1 <== No tool number to load, skips command and preload T1
...
M06 T2 <== T1 already loaded, skips command and preload T2
...
M06 T3 <== Loads T2 and preload T3
Current tool T1 following code will load T2 as expected.
T1 M06 <== T1 already loaded, skips command
...
T2 M06 <== Loads T2
...
T3 M06 <== Loads T3
Seeing those screenshots reminded me of an attempt I tried several years ago to create a SolidCam PP to post on the forum, I couldn't make sense of the PP compiler, there wasn't any documentation on what did what.Attached is some of the options for the Post processsor I’m working through
You need to check G & M commands against the list in the MASSO documentation. Add what is missing and remove anything that is not supported.if you see something that looks wrong can you please notify me, there’s a lot here I don’t understand, and obviously there is some functions Masso will not support