My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mesh_bed_leveling.cpp 357B

12345678910111213141516
  1. #include "mesh_bed_leveling.h"
  2. #if ENABLED(MESH_BED_LEVELING)
  3. mesh_bed_leveling mbl;
  4. mesh_bed_leveling::mesh_bed_leveling() { reset(); }
  5. void mesh_bed_leveling::reset() {
  6. active = 0;
  7. for (int y = 0; y < MESH_NUM_Y_POINTS; y++)
  8. for (int x = 0; x < MESH_NUM_X_POINTS; x++)
  9. z_values[y][x] = 0;
  10. }
  11. #endif // MESH_BED_LEVELING