Consolidate 3-point leveling point options

This commit is contained in:
Scott Lahteine 2018-03-19 00:33:55 -05:00
parent af3500044a
commit cf4e2e507f
57 changed files with 1065 additions and 1203 deletions

View file

@ -4533,9 +4533,9 @@ void home_all_axes() { gcode_G28(true); }
// Probe at 3 arbitrary points
ABL_VAR vector_3 points[3] = {
vector_3(ABL_PROBE_PT_1_X, ABL_PROBE_PT_1_Y, 0),
vector_3(ABL_PROBE_PT_2_X, ABL_PROBE_PT_2_Y, 0),
vector_3(ABL_PROBE_PT_3_X, ABL_PROBE_PT_3_Y, 0)
vector_3(PROBE_PT_1_X, PROBE_PT_1_Y, 0),
vector_3(PROBE_PT_2_X, PROBE_PT_2_Y, 0),
vector_3(PROBE_PT_3_X, PROBE_PT_3_Y, 0)
};
#endif // AUTO_BED_LEVELING_3POINT