2015-03-15 04:43:26 -05:00
|
|
|
#include "mesh_bed_leveling.h"
|
|
|
|
|
2015-07-31 00:21:18 -05:00
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
2015-03-15 04:43:26 -05:00
|
|
|
|
2015-03-25 22:36:24 -05:00
|
|
|
mesh_bed_leveling mbl;
|
2015-03-15 04:43:26 -05:00
|
|
|
|
2015-03-25 22:36:24 -05:00
|
|
|
mesh_bed_leveling::mesh_bed_leveling() { reset(); }
|
2015-10-03 01:08:58 -05:00
|
|
|
|
2015-03-25 22:36:24 -05:00
|
|
|
void mesh_bed_leveling::reset() {
|
2015-03-15 17:18:11 -05:00
|
|
|
active = 0;
|
2015-03-25 22:36:24 -05:00
|
|
|
for (int y = 0; y < MESH_NUM_Y_POINTS; y++)
|
|
|
|
for (int x = 0; x < MESH_NUM_X_POINTS; x++)
|
|
|
|
z_values[y][x] = 0;
|
|
|
|
}
|
2015-03-15 17:18:11 -05:00
|
|
|
|
2015-03-15 04:43:26 -05:00
|
|
|
#endif // MESH_BED_LEVELING
|