Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
jswickJ9PWC
in reply to: jswickJ9PWC

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);
  }