Hey,
There are a ton of options (necessary, missing, unnecessary, etc) in the Fusion360 PostProcessor that we can configure, modify and otherwise make more useful for MaslowCNC, and inversely, with a program like Fusion360, designed for more advanced CNC machines, we can begin adding more complex functionality to MaslowCNC/Ground Control.
Here is the File: https://forums.maslowcnc.com/clicks/track?url=https%3A%2F%2Fcam.autodesk.com%2Fhsmposts%3Fp%3Dmaslowcnc&post_id=29894&topic_id=3565
its pretty āreadableā as far as Code goes, and there are numerous videos on youtube of people editing their Post Processors for various purposes. ( https://www.youtube.com/results?search_query=fusion+360+post+processor+editing )
Immediately, we should ensure that weāre taking full advantage of the available settingsā¦
I see right off the bat, we can loosen the tolerances up to MaslowCNC scale:
capabilities = CAPABILITY_MILLING;
tolerance = spatial(0.002, MM);minimumChordLength = spatial(0.01, MM);
minimumCircularRadius = spatial(0.01, MM);
maximumCircularRadius = spatial(1000, MM);
minimumCircularSweep = toRad(0.01);
maximumCircularSweep = toRad(90);
allowHelicalMoves = false;
allowedCircularPlanes = 1 << PLANE_XY;
Iād assume that moving the tolerances out a bit isnāt a terrible idea:
tolerance = spatial(0.01, MM);
minimumChordLength = spatial(0.1, MM);
minimumCircularRadius = spatial(0.1, MM);
also weāre a BIG machine (in the CNC world):
maximumCircularRadius = spatial(3000, MM)
(Iām guessing above, havenāt tested anything yet and YMMVā¦ _
Moving further along, we find a mess of machine settings, thats awesome!
Immediately I see that adding āsequence numbersā into GC would make it more capable to move/jog through machining stepsā¦ COOL!
Active Spindle, nice.
Work Offsets were discussed in another thread more generallyā¦
Thereās more to discuss, but we Fusion360 Malsovians should get together and share some ideas on the Post Processor. There is A LOT that can be done here to make workflow a lot smoother and accurate and bring MaslowCNC closer to a āproperā CNC machine.
cheers,