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.

utility.h 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #include "../inc/MarlinConfigPre.h"
  24. constexpr char axis_codes[XYZE] = { 'X', 'Y', 'Z', 'E' };
  25. // Delay that ensures heaters and watchdog are kept alive
  26. void safe_delay(millis_t ms);
  27. // A delay to provide brittle hosts time to receive bytes
  28. inline void serial_delay(const millis_t ms) {
  29. #if ENABLED(SERIAL_OVERRUN_PROTECTION)
  30. safe_delay(ms);
  31. #else
  32. UNUSED(ms);
  33. #endif
  34. }
  35. #if ENABLED(EEPROM_SETTINGS) || ENABLED(SD_FIRMWARE_UPDATE)
  36. void crc16(uint16_t *crc, const void * const data, uint16_t cnt);
  37. #endif
  38. #if ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(G26_MESH_VALIDATION)
  39. /**
  40. * These support functions allow the use of large bit arrays of flags that take very
  41. * little RAM. Currently they are limited to being 16x16 in size. Changing the declaration
  42. * to unsigned long will allow us to go to 32x32 if higher resolution Mesh's are needed
  43. * in the future.
  44. */
  45. FORCE_INLINE void bitmap_clear(uint16_t bits[16], const uint8_t x, const uint8_t y) { CBI(bits[y], x); }
  46. FORCE_INLINE void bitmap_set(uint16_t bits[16], const uint8_t x, const uint8_t y) { SBI(bits[y], x); }
  47. FORCE_INLINE bool is_bitmap_set(uint16_t bits[16], const uint8_t x, const uint8_t y) { return TEST(bits[y], x); }
  48. #endif
  49. #if ENABLED(ULTRA_LCD) || ENABLED(DEBUG_LEVELING_FEATURE) || ENABLED(EXTENSIBLE_UI)
  50. // Convert uint8_t to string with 123 format
  51. char* ui8tostr3(const uint8_t x);
  52. // Convert int8_t to string with 123 format
  53. char* i8tostr3(const int8_t x);
  54. // Convert uint16_t to string with 123 format
  55. char* ui16tostr3(const uint16_t x);
  56. // Convert uint16_t to string with 1234 format
  57. char* ui16tostr4(const uint16_t x);
  58. // Convert int16_t to string with 123 format
  59. char* i16tostr3(const int16_t x);
  60. // Convert unsigned int to lj string with 123 format
  61. char* i16tostr3left(const int16_t xx);
  62. // Convert signed int to rj string with _123, -123, _-12, or __-1 format
  63. char* i16tostr4sign(const int16_t x);
  64. // Convert unsigned float to string with 1.23 format
  65. char* ftostr12ns(const float &x);
  66. // Convert signed float to fixed-length string with 023.45 / -23.45 format
  67. char* ftostr52(const float &x);
  68. // Convert float to fixed-length string with +123.4 / -123.4 format
  69. char* ftostr41sign(const float &x);
  70. // Convert signed float to string (6 digit) with -1.234 / _0.000 / +1.234 format
  71. char* ftostr43sign(const float &x, char plus=' ');
  72. // Convert unsigned float to rj string with 12345 format
  73. char* ftostr5rj(const float &x);
  74. // Convert signed float to string with +1234.5 format
  75. char* ftostr51sign(const float &x);
  76. // Convert signed float to space-padded string with -_23.4_ format
  77. char* ftostr52sp(const float &x);
  78. // Convert signed float to string with +123.45 format
  79. char* ftostr52sign(const float &x);
  80. // Convert unsigned float to string with 1234.56 format omitting trailing zeros
  81. char* ftostr62rj(const float &x);
  82. // Convert float to rj string with 123 or -12 format
  83. FORCE_INLINE char* ftostr3(const float &x) { return i16tostr3(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
  84. #if ENABLED(LCD_DECIMAL_SMALL_XY)
  85. // Convert float to rj string with 1234, _123, 12.3, _1.2, -123, _-12, or -1.2 format
  86. char* ftostr4sign(const float &fx);
  87. #else
  88. // Convert float to rj string with 1234, _123, -123, __12, _-12, ___1, or __-1 format
  89. FORCE_INLINE char* ftostr4sign(const float &x) { return i16tostr4sign(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
  90. #endif
  91. #endif // ULTRA_LCD
  92. #if ENABLED(DEBUG_LEVELING_FEATURE)
  93. void log_machine_info();
  94. #endif
  95. template<typename T>
  96. class restorer {
  97. T& ref_;
  98. T val_;
  99. public:
  100. restorer(T& perm) : ref_(perm), val_(perm) {}
  101. restorer(T& perm, T temp_val) : ref_(perm), val_(perm) { perm = temp_val; }
  102. ~restorer() { restore(); }
  103. inline void restore() { ref_ = val_; }
  104. };
  105. #define REMEMBER(N,X, ...) restorer<typeof(X)> restorer_##N(X, ##__VA_ARGS__)
  106. #define RESTORE(N) restorer_##N.restore()