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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #include "../inc/MarlinConfigPre.h"
  24. #include "../core/types.h"
  25. // Format uint8_t (0-100) as rj string with 123% / _12% / __1% format
  26. const char* pcttostrpctrj(const uint8_t i);
  27. // Convert uint8_t (0-255) to a percentage, format as above
  28. const char* ui8tostr4pctrj(const uint8_t i);
  29. // Convert uint8_t to string with 12 format
  30. const char* ui8tostr2(const uint8_t x);
  31. // Convert uint8_t to string with 123 format
  32. const char* ui8tostr3rj(const uint8_t i);
  33. // Convert int8_t to string with 123 format
  34. const char* i8tostr3rj(const int8_t x);
  35. #if HAS_PRINT_PROGRESS_PERMYRIAD
  36. // Convert 16-bit unsigned permyriad value to percent: 100 / 23 / 23.4 / 3.45
  37. const char* permyriadtostr4(const uint16_t xx);
  38. #endif
  39. // Convert uint16_t to string with 12345 format
  40. const char* ui16tostr5rj(const uint16_t x);
  41. // Convert uint16_t to string with 1234 format
  42. const char* ui16tostr4rj(const uint16_t x);
  43. // Convert uint16_t to string with 123 format
  44. const char* ui16tostr3rj(const uint16_t x);
  45. // Convert int16_t to string with 123 format
  46. const char* i16tostr3rj(const int16_t x);
  47. // Convert unsigned int to lj string with 123 format
  48. const char* i16tostr3left(const int16_t xx);
  49. // Convert signed int to rj string with _123, -123, _-12, or __-1 format
  50. const char* i16tostr4signrj(const int16_t x);
  51. // Convert unsigned float to string with 1.2 format
  52. const char* ftostr11ns(const_float_t x);
  53. // Convert unsigned float to string with 1.23 format
  54. const char* ftostr12ns(const_float_t x);
  55. // Convert unsigned float to string with 12.3 format
  56. const char* ftostr31ns(const_float_t x);
  57. // Convert unsigned float to string with 123.4 format
  58. const char* ftostr41ns(const_float_t x);
  59. // Convert signed float to fixed-length string with 12.34 / _2.34 / -2.34 or -23.45 / 123.45 format
  60. const char* ftostr42_52(const_float_t x);
  61. // Convert signed float to fixed-length string with 023.45 / -23.45 format
  62. const char* ftostr52(const_float_t x);
  63. // Convert signed float to fixed-length string with 12.345 / -2.345 or 023.456 / -23.456 format
  64. const char* ftostr53_63(const_float_t x);
  65. // Convert signed float to fixed-length string with 023.456 / -23.456 format
  66. const char* ftostr63(const_float_t x);
  67. // Convert float to fixed-length string with +12.3 / -12.3 format
  68. const char* ftostr31sign(const_float_t x);
  69. // Convert float to fixed-length string with +123.4 / -123.4 format
  70. const char* ftostr41sign(const_float_t x);
  71. // Convert signed float to string (6 digit) with -1.234 / _0.000 / +1.234 format
  72. const char* ftostr43sign(const_float_t x, char plus=' ');
  73. // Convert signed float to string (5 digit) with -1.2345 / _0.0000 / +1.2345 format
  74. const char* ftostr54sign(const_float_t x, char plus=' ');
  75. // Convert unsigned float to rj string with 12345 format
  76. const char* ftostr5rj(const_float_t x);
  77. // Convert signed float to string with +1234.5 format
  78. const char* ftostr51sign(const_float_t x);
  79. // Convert signed float to space-padded string with -_23.4_ format
  80. const char* ftostr52sp(const_float_t x);
  81. // Convert signed float to string with +123.45 format
  82. const char* ftostr52sign(const_float_t x);
  83. // Convert signed float to string with +12.345 format
  84. const char* ftostr53sign(const_float_t f);
  85. // Convert unsigned float to string with 12345.6 format omitting trailing zeros
  86. const char* ftostr61rj(const_float_t x);
  87. // Convert float to rj string with 123 or -12 format
  88. FORCE_INLINE const char* ftostr3(const_float_t x) { return i16tostr3rj(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
  89. #if ENABLED(LCD_DECIMAL_SMALL_XY)
  90. // Convert float to rj string with 1234, _123, 12.3, _1.2, -123, _-12, or -1.2 format
  91. const char* ftostr4sign(const_float_t fx);
  92. #else
  93. // Convert float to rj string with 1234, _123, -123, __12, _-12, ___1, or __-1 format
  94. FORCE_INLINE const char* ftostr4sign(const_float_t x) { return i16tostr4signrj(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
  95. #endif