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 375B

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