2016-07-19 03:55:23 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-07-19 03:55:23 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-07-19 03:55:23 +02: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
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-07-19 03:55:23 +02:00
|
|
|
*
|
|
|
|
*/
|
2018-11-04 09:25:55 +01:00
|
|
|
#pragma once
|
2016-07-30 03:56:26 +02:00
|
|
|
|
2017-11-24 00:59:43 +01:00
|
|
|
#include "../inc/MarlinConfigPre.h"
|
2019-09-29 11:25:39 +02:00
|
|
|
#include "../core/types.h"
|
2020-03-01 16:50:53 +01:00
|
|
|
#include "../core/millis_t.h"
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2021-04-24 08:29:30 +02:00
|
|
|
void safe_delay(millis_t ms); // Delay ensuring that temperatures are updated and the watchdog is kept alive.
|
2016-07-30 03:56:26 +02:00
|
|
|
|
2020-02-21 03:09:37 +01:00
|
|
|
#if ENABLED(SERIAL_OVERRUN_PROTECTION)
|
|
|
|
void serial_delay(const millis_t ms);
|
|
|
|
#else
|
|
|
|
inline void serial_delay(const millis_t) {}
|
|
|
|
#endif
|
2018-11-24 04:05:59 +01:00
|
|
|
|
2021-04-02 02:12:00 +02:00
|
|
|
#if (GRID_MAX_POINTS_X) && (GRID_MAX_POINTS_Y)
|
2019-09-29 11:25:39 +02:00
|
|
|
|
|
|
|
// 16x16 bit arrays
|
|
|
|
template <int W, int H>
|
|
|
|
struct FlagBits {
|
|
|
|
typename IF<(W>8), uint16_t, uint8_t>::type bits[H];
|
|
|
|
void fill() { memset(bits, 0xFF, sizeof(bits)); }
|
|
|
|
void reset() { memset(bits, 0x00, sizeof(bits)); }
|
|
|
|
void unmark(const uint8_t x, const uint8_t y) { CBI(bits[y], x); }
|
|
|
|
void mark(const uint8_t x, const uint8_t y) { SBI(bits[y], x); }
|
|
|
|
bool marked(const uint8_t x, const uint8_t y) { return TEST(bits[y], x); }
|
2019-10-23 18:34:24 +02:00
|
|
|
inline void unmark(const xy_int8_t &xy) { unmark(xy.x, xy.y); }
|
|
|
|
inline void mark(const xy_int8_t &xy) { mark(xy.x, xy.y); }
|
|
|
|
inline bool marked(const xy_int8_t &xy) { return marked(xy.x, xy.y); }
|
2019-09-29 11:25:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef FlagBits<GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y> MeshFlags;
|
|
|
|
|
|
|
|
#endif
|
2017-11-24 00:59:43 +01:00
|
|
|
|
2017-09-06 13:28:32 +02:00
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
void log_machine_info();
|
2019-03-14 08:25:42 +01:00
|
|
|
#else
|
|
|
|
#define log_machine_info() NOOP
|
2017-09-06 13:28:32 +02:00
|
|
|
#endif
|
2019-01-24 02:06:54 +01:00
|
|
|
|
2019-02-04 09:15:20 +01:00
|
|
|
template<typename T>
|
|
|
|
class restorer {
|
|
|
|
T& ref_;
|
|
|
|
T val_;
|
|
|
|
public:
|
|
|
|
restorer(T& perm) : ref_(perm), val_(perm) {}
|
2019-02-07 00:20:17 +01:00
|
|
|
restorer(T& perm, T temp_val) : ref_(perm), val_(perm) { perm = temp_val; }
|
2019-02-04 09:15:20 +01:00
|
|
|
~restorer() { restore(); }
|
|
|
|
inline void restore() { ref_ = val_; }
|
|
|
|
};
|
|
|
|
|
2020-10-10 12:01:46 +02:00
|
|
|
#define REMEMBER(N,X,V...) restorer<__typeof__(X)> restorer_##N(X, ##V)
|
2019-02-24 05:53:01 +01:00
|
|
|
#define RESTORE(N) restorer_##N.restore()
|
2019-03-29 20:07:43 +01:00
|
|
|
|
|
|
|
// Converts from an uint8_t in the range of 0-255 to an uint8_t
|
|
|
|
// in the range 0-100 while avoiding rounding artifacts
|
|
|
|
constexpr uint8_t ui8_to_percent(const uint8_t i) { return (int(i) * 100 + 127) / 255; }
|
2021-05-24 23:38:57 +02:00
|
|
|
|
2021-06-05 09:18:47 +02:00
|
|
|
const xyze_char_t axis_codes LOGICAL_AXIS_ARRAY('E', 'X', 'Y', 'Z', AXIS4_NAME, AXIS5_NAME, AXIS6_NAME);
|
2021-05-24 23:38:57 +02:00
|
|
|
|
|
|
|
#if LINEAR_AXES <= XYZ
|
|
|
|
#define AXIS_CHAR(A) ((char)('X' + A))
|
|
|
|
#else
|
|
|
|
#define AXIS_CHAR(A) axis_codes[A]
|
|
|
|
#endif
|