Browse Source

Added sanity check for MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS

pull/1/head
Edward Patel 9 years ago
parent
commit
7dc64efe67
  1. 2
      Marlin/Configuration.h
  2. 3
      Marlin/SanityCheck.h

2
Marlin/Configuration.h

@ -420,7 +420,7 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
//#define ENDSTOPPULLUP_FIL_RUNOUT // Uncomment to use internal pullup for filament runout pins if the sensor is defined. //#define ENDSTOPPULLUP_FIL_RUNOUT // Uncomment to use internal pullup for filament runout pins if the sensor is defined.
//=========================================================================== //===========================================================================
//============================ Manual Bed Leveling ========================== //============================ Mesh Bed Leveling ============================
//=========================================================================== //===========================================================================
// #define MANUAL_BED_LEVELING // Add display menu option for bed leveling // #define MANUAL_BED_LEVELING // Add display menu option for bed leveling

3
Marlin/SanityCheck.h

@ -101,6 +101,9 @@
#ifdef ENABLE_AUTO_BED_LEVELING #ifdef ENABLE_AUTO_BED_LEVELING
#error Select ENABLE_AUTO_BED_LEVELING or MESH_BED_LEVELING, not both #error Select ENABLE_AUTO_BED_LEVELING or MESH_BED_LEVELING, not both
#endif #endif
#if MESH_NUM_X_POINTS > 7 || MESH_NUM_Y_POINTS > 7
#error MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS need to be less than 8
#endif
#endif #endif
/** /**

Loading…
Cancel
Save