2016-07-19 01:55:23 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-11-04 08:25:55 +00:00
|
|
|
#pragma once
|
2016-07-30 01:56:26 +00:00
|
|
|
|
2017-11-23 23:59:43 +00:00
|
|
|
#include "../inc/MarlinConfigPre.h"
|
2017-09-06 11:28:32 +00:00
|
|
|
|
2017-09-08 03:33:16 +00:00
|
|
|
constexpr char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };
|
|
|
|
|
2018-11-24 03:05:59 +00:00
|
|
|
// Delay that ensures heaters and watchdog are kept alive
|
2016-07-30 01:56:26 +00:00
|
|
|
void safe_delay(millis_t ms);
|
|
|
|
|
2018-11-24 03:05:59 +00:00
|
|
|
// A delay to provide brittle hosts time to receive bytes
|
|
|
|
inline void serial_delay(const millis_t ms) {
|
|
|
|
#if ENABLED(SERIAL_OVERRUN_PROTECTION)
|
|
|
|
safe_delay(ms);
|
|
|
|
#else
|
|
|
|
UNUSED(ms);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-11-18 03:13:36 +00:00
|
|
|
#if ENABLED(EEPROM_SETTINGS) || ENABLED(SD_FIRMWARE_UPDATE)
|
2017-05-07 01:00:56 +00:00
|
|
|
void crc16(uint16_t *crc, const void * const data, uint16_t cnt);
|
|
|
|
#endif
|
|
|
|
|
2017-11-23 23:59:43 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(G26_MESH_VALIDATION)
|
|
|
|
/**
|
|
|
|
* These support functions allow the use of large bit arrays of flags that take very
|
|
|
|
* little RAM. Currently they are limited to being 16x16 in size. Changing the declaration
|
|
|
|
* to unsigned long will allow us to go to 32x32 if higher resolution Mesh's are needed
|
|
|
|
* in the future.
|
|
|
|
*/
|
2017-11-26 01:35:27 +00:00
|
|
|
FORCE_INLINE void bitmap_clear(uint16_t bits[16], const uint8_t x, const uint8_t y) { CBI(bits[y], x); }
|
|
|
|
FORCE_INLINE void bitmap_set(uint16_t bits[16], const uint8_t x, const uint8_t y) { SBI(bits[y], x); }
|
|
|
|
FORCE_INLINE bool is_bitmap_set(uint16_t bits[16], const uint8_t x, const uint8_t y) { return TEST(bits[y], x); }
|
2017-11-23 23:59:43 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-16 21:58:29 +00:00
|
|
|
#if ENABLED(ULTRA_LCD) || ENABLED(DEBUG_LEVELING_FEATURE) || ENABLED(EXTENSIBLE_UI)
|
2016-08-20 23:05:54 +00:00
|
|
|
|
2017-06-14 02:42:40 +00:00
|
|
|
// Convert uint8_t to string with 123 format
|
2019-01-12 22:01:04 +00:00
|
|
|
char* ui8tostr3(const uint8_t x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
2019-01-12 22:01:04 +00:00
|
|
|
// Convert int8_t to string with 123 format
|
|
|
|
char* i8tostr3(const int8_t x);
|
|
|
|
|
|
|
|
// Convert uint16_t to string with 123 format
|
|
|
|
char* ui16tostr3(const uint16_t x);
|
|
|
|
|
|
|
|
// Convert uint16_t to string with 1234 format
|
|
|
|
char* ui16tostr4(const uint16_t x);
|
|
|
|
|
|
|
|
// Convert int16_t to string with 123 format
|
|
|
|
char* i16tostr3(const int16_t x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert unsigned int to lj string with 123 format
|
2019-01-12 22:01:04 +00:00
|
|
|
char* i16tostr3left(const int16_t xx);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert signed int to rj string with _123, -123, _-12, or __-1 format
|
2019-01-12 22:01:04 +00:00
|
|
|
char* i16tostr4sign(const int16_t x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert unsigned float to string with 1.23 format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr12ns(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert signed float to fixed-length string with 023.45 / -23.45 format
|
2018-05-01 12:08:47 +00:00
|
|
|
char* ftostr52(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert float to fixed-length string with +123.4 / -123.4 format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr41sign(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert signed float to string (6 digit) with -1.234 / _0.000 / +1.234 format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr43sign(const float &x, char plus=' ');
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert unsigned float to rj string with 12345 format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr5rj(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert signed float to string with +1234.5 format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr51sign(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert signed float to space-padded string with -_23.4_ format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr52sp(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
// Convert signed float to string with +123.45 format
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr52sign(const float &x);
|
2016-08-20 23:05:54 +00:00
|
|
|
|
2016-12-12 13:35:02 +00:00
|
|
|
// Convert unsigned float to string with 1234.56 format omitting trailing zeros
|
2017-05-28 16:33:22 +00:00
|
|
|
char* ftostr62rj(const float &x);
|
2016-11-15 22:01:30 +00:00
|
|
|
|
2016-08-20 23:05:54 +00:00
|
|
|
// Convert float to rj string with 123 or -12 format
|
2019-01-12 22:01:04 +00:00
|
|
|
FORCE_INLINE char* ftostr3(const float &x) { return i16tostr3(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
|
2016-08-20 23:05:54 +00:00
|
|
|
|
2016-12-05 14:58:26 +00:00
|
|
|
#if ENABLED(LCD_DECIMAL_SMALL_XY)
|
|
|
|
// Convert float to rj string with 1234, _123, 12.3, _1.2, -123, _-12, or -1.2 format
|
2018-04-29 05:51:36 +00:00
|
|
|
char* ftostr4sign(const float &fx);
|
2016-12-05 14:58:26 +00:00
|
|
|
#else
|
|
|
|
// Convert float to rj string with 1234, _123, -123, __12, _-12, ___1, or __-1 format
|
2019-01-12 22:01:04 +00:00
|
|
|
FORCE_INLINE char* ftostr4sign(const float &x) { return i16tostr4sign(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
|
2016-12-05 14:58:26 +00:00
|
|
|
#endif
|
2016-08-20 23:05:54 +00:00
|
|
|
|
|
|
|
#endif // ULTRA_LCD
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
void log_machine_info();
|
|
|
|
#endif
|
2019-01-24 01:06:54 +00:00
|
|
|
|
|
|
|
void print_bin(const uint16_t val);
|
2019-02-04 08:15:20 +00:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class restorer {
|
|
|
|
T& ref_;
|
|
|
|
T val_;
|
|
|
|
public:
|
|
|
|
restorer(T& perm) : ref_(perm), val_(perm) {}
|
|
|
|
~restorer() { restore(); }
|
|
|
|
inline void restore() { ref_ = val_; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#define REMEMBER(X) restorer<typeof(X)> X##_restorer(X)
|
|
|
|
#define RESTORE(X) X##_restorer.restore()
|