|
|
|
|
153
|
*/
|
153
|
*/
|
154
|
#ifdef AUTO_BED_LEVELING_GRID
|
154
|
#ifdef AUTO_BED_LEVELING_GRID
|
155
|
#ifndef DELTA_PROBABLE_RADIUS
|
155
|
#ifndef DELTA_PROBABLE_RADIUS
|
|
|
156
|
+ // Be sure points are in the right order
|
|
|
157
|
+ #if LEFT_PROBE_BED_POSITION > RIGHT_PROBE_BED_POSITION
|
|
|
158
|
+ #error LEFT_PROBE_BED_POSITION must be less than RIGHT_PROBE_BED_POSITION.
|
|
|
159
|
+ #elif FRONT_PROBE_BED_POSITION > BACK_PROBE_BED_POSITION
|
|
|
160
|
+ #error BACK_PROBE_BED_POSITION must be less than FRONT_PROBE_BED_POSITION.
|
|
|
161
|
+ #endif
|
156
|
// Make sure probing points are reachable
|
162
|
// Make sure probing points are reachable
|
157
|
#if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
|
163
|
#if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
|
158
|
#error "The given LEFT_PROBE_BED_POSITION can't be reached by the probe."
|
164
|
#error "The given LEFT_PROBE_BED_POSITION can't be reached by the probe."
|