Marlin_Firmware/Marlin/src/feature/bedlevel/bedlevel.h

99 lines
2.9 KiB
C
Raw Normal View History

2017-09-08 15:35:25 -05:00
/**
* Marlin 3D Printer Firmware
2020-02-03 08:00:57 -06:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2017-09-08 15:35:25 -05:00
*
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2017-09-08 15:35:25 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#pragma once
2017-09-08 15:35:25 -05:00
2017-11-23 17:59:43 -06:00
#include "../../inc/MarlinConfigPre.h"
2017-09-08 15:35:25 -05:00
#if ENABLED(PROBE_MANUALLY)
extern bool g29_in_progress;
#else
constexpr bool g29_in_progress = false;
#endif
bool leveling_is_valid();
void set_bed_leveling_enabled(const bool enable=true);
void reset_bed_level();
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
2017-12-10 21:17:07 -06:00
void set_z_fade_height(const float zfh, const bool do_report=true);
2017-09-08 15:35:25 -05:00
#endif
2019-03-18 16:31:11 -05:00
#if EITHER(MESH_BED_LEVELING, PROBE_MANUALLY)
2019-09-29 04:25:39 -05:00
void _manual_goto_xy(const xy_pos_t &pos);
2019-03-18 16:31:11 -05:00
#endif
2017-09-08 15:35:25 -05:00
/**
* A class to save and change the bed leveling state,
* then restore it when it goes out of scope.
*/
class TemporaryBedLevelingState {
bool saved;
public:
TemporaryBedLevelingState(const bool enable);
~TemporaryBedLevelingState() { set_bed_leveling_enabled(saved); }
};
#define TEMPORARY_BED_LEVELING_STATE(enable) const TemporaryBedLevelingState tbls(enable)
2019-03-18 16:31:11 -05:00
#if HAS_MESH
2017-09-08 15:35:25 -05:00
typedef float bed_mesh_t[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
2019-03-18 16:31:11 -05:00
#if ENABLED(AUTO_BED_LEVELING_BILINEAR)
#include "abl/abl.h"
#elif ENABLED(AUTO_BED_LEVELING_UBL)
#include "ubl/ubl.h"
#elif ENABLED(MESH_BED_LEVELING)
#include "mbl/mesh_bed_leveling.h"
#endif
2017-09-08 15:35:25 -05:00
2019-03-18 16:31:11 -05:00
#define Z_VALUES(X,Y) Z_VALUES_ARR[X][Y]
2019-09-29 04:25:39 -05:00
#define _GET_MESH_POS(M) { _GET_MESH_X(M.a), _GET_MESH_Y(M.b) }
2017-09-08 15:35:25 -05:00
2019-03-18 16:31:11 -05:00
#if EITHER(AUTO_BED_LEVELING_BILINEAR, MESH_BED_LEVELING)
2017-09-08 15:35:25 -05:00
2019-03-18 16:31:11 -05:00
#include <stdint.h>
typedef float (*element_2d_fn)(const uint8_t, const uint8_t);
/**
* Print calibration results for plotting or manual frame adjustment.
*/
void print_2d_array(const uint8_t sx, const uint8_t sy, const uint8_t precision, element_2d_fn fn);
#endif
2017-11-23 17:59:43 -06:00
2019-09-29 04:25:39 -05:00
struct mesh_index_pair {
xy_int8_t pos;
float distance; // When populated, the distance from the search location
void invalidate() { pos = -1; }
bool valid() const { return pos.x >= 0 && pos.y >= 0; }
#if ENABLED(AUTO_BED_LEVELING_UBL)
xy_pos_t meshpos() {
return { ubl.mesh_index_to_xpos(pos.x), ubl.mesh_index_to_ypos(pos.y) };
}
#endif
operator xy_int8_t&() { return pos; }
operator const xy_int8_t&() const { return pos; }
};
2017-11-23 17:59:43 -06:00
#endif