DerAndere1 / Marlin

Optimized firmware for RepRap 3D printers based on the Arduino platform. The branch Marlin2ForPipetBot is optimized firmware for cartesian robots (lab robots, also known as liquid handling robots or pipetting robots)
https://derandere.gitlab.io/pipetbot-a8
GNU General Public License v3.0
53 stars 20 forks source link

Menu_motion.cpp bug Marlin-bf2_6axis_dev14 #18

Closed heppstar closed 4 years ago

heppstar commented 4 years ago

Hi,

Found a little BUG:

menu_motion.cpp Line 102-113

 case I_AXIS:
        TERN_(MIN_SOFTWARE_ENDSTOP_I, min = soft_endstop.min.i; <----- MISSING **)**
        TERN_(MIN_SOFTWARE_ENDSTOP_I, max = soft_endstop.max.i; <----- MISSING **)**
      #if NON_E_AXES > 4
        break;
        case J_AXIS:
        TERN_(MIN_SOFTWARE_ENDSTOP_J, min = soft_endstop.min.j; <----- MISSING **)**
        TERN_(MIN_SOFTWARE_ENDSTOP_J, max = soft_endstop.max.j; <----- MISSING **)**
        #if NON_E_AXES > 5
          break;
          case K_AXIS:
            TERN_(MIN_SOFTWARE_ENDSTOP_K, min = soft_endstop.min.k; <----- MISSING **)**
            TERN_(MIN_SOFTWARE_ENDSTOP_K, max = soft_endstop.max.k; <----- MISSING **)**
        #endif
      #endif
DerAndere1 commented 4 years ago

thanks for providing a fix. this will be a short lived issue.