Close



Results 1 to 10 of 166

Hybrid View

  1. #1
    Engineer-in-Training
    Join Date
    Feb 2015
    Posts
    371
    Mine looks like this in the config.h file.


    // Disable max endstops for compatibility with endstop checking routine
    #if defined(COREXY) && !defined(DISABLE_MAX_ENDSTOPS)
    #define DISABLE_MAX_ENDSTOPS
    #endif

  2. #2
    Staff Engineer printbus's Avatar
    Join Date
    May 2014
    Location
    Highlands Ranch, Colorado USA
    Posts
    1,437
    Add printbus on Thingiverse
    Others can jump in at any time, but before I provide any additional help I want to know that the MAX endstops have been disabled. As I said before, leaving them enabled without actually having the MAX switches on the printer can and sometimes does create homing problems. The symptoms are different, but I simply want to know that any issues with the unconnected/floating max endstop inputs are out of the picture.

    Quote Originally Posted by tsteever View Post
    Mine looks like this in the config.h file.

    // Disable max endstops for compatibility with endstop checking routine
    #if defined(COREXY) && !defined(DISABLE_MAX_ENDSTOPS)
    #define DISABLE_MAX_ENDSTOPS
    #endif
    I believe I've quoted the last response regarding the max endstops. The code in the quote block has nothing to do with how the max endstop settings are configured, since that code only applies if we have a COREXY printer. Look just above those lines in the configuration.h file. Remove the comment slashes off the first DISABLE_MAX_ENDSTOP line so it looks like the following. I've included the same block of COREXY code for reference:

    Code:
    #define DISABLE_MAX_ENDSTOPS     
    //#define DISABLE_MIN_ENDSTOPS
    
    // Disable max endstops for compatibility with endstop checking routine
    #if defined(COREXY) && !defined(DISABLE_MAX_ENDSTOPS)
      #define DISABLE_MAX_ENDSTOPS
    #endif
    Last edited by printbus; 02-12-2015 at 11:01 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •