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: bob.schultz

The posts do have that code; however the problematic part is actually in the onSection() function. 

 

function onSection() {
...
// invert axes for secondary spindle   // default code
  if (getSpindle(true) == SPINDLE_SUB) {   // default code
    invertAxes(true, false); // default code
  }
  else if(getSpindle(true) == SPINDLE_MAIN){  // added code to correct
    invertAxes(false, false);   // added code to correct
  }