sanity check for MANUAL_BED_LEVELING

This commit is contained in:
esenapaj 2016-02-20 14:02:01 +09:00 committed by Scott Lahteine
parent 9f8e6dce20
commit 08b3147791

View File

@ -110,8 +110,14 @@
#endif
/**
* Mesh Bed Leveling
* Manual Bed Leveling
*/
#if ENABLED(MANUAL_BED_LEVELING)
#if DISABLED(MESH_BED_LEVELING)
#error MESH_BED_LEVELING is required for MANUAL_BED_LEVELING.
#endif
#endif
#if ENABLED(MESH_BED_LEVELING)
#if ENABLED(DELTA)
#error MESH_BED_LEVELING does not yet support DELTA printers.