04-27-2022
11:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-27-2022
11:38 AM
Nevermind, I found it. There is a fault in the logic in the standard mill/turn posts that carries over to all the posts built on it.
Standard code is:
if (getSpindle(true) == SPINDLE_SUB) {
invertAxes(true, false); // polar mode has not been enabled yet
}
which will invert the axes just fine for the sub, but the logic is missing to re-invert if the spindle switches back to the main. So I added:
else if(getSpindle(true) == SPINDLE_MAIN){
invertAxes(false, false);
}
Fusion