You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
375 B
C++
21 lines
375 B
C++
#include "mesh_bed_leveling.h"
|
|
|
|
#if defined(MESH_BED_LEVELING)
|
|
|
|
mesh_bed_leveling mbl;
|
|
|
|
mesh_bed_leveling::mesh_bed_leveling() {
|
|
reset();
|
|
}
|
|
|
|
void mesh_bed_leveling::reset() {
|
|
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;
|
|
}
|
|
}
|
|
active = 0;
|
|
}
|
|
|
|
#endif // MESH_BED_LEVELING
|