Added sanity check for MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS
This commit is contained in:
parent
98f3130a5c
commit
7dc64efe67
2 changed files with 4 additions and 1 deletions
|
|
@ -101,6 +101,9 @@
|
|||
#ifdef ENABLE_AUTO_BED_LEVELING
|
||||
#error Select ENABLE_AUTO_BED_LEVELING or MESH_BED_LEVELING, not both
|
||||
#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
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue