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.

numtostr.h 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #include <stdint.h>
  24. // Convert a full-range unsigned 8bit int to a percentage
  25. const char* ui8tostr4pctrj(const uint8_t i);
  26. // Convert uint8_t to string with 123 format
  27. const char* ui8tostr3rj(const uint8_t i);
  28. // Convert int8_t to string with 123 format
  29. const char* i8tostr3rj(const int8_t x);
  30. #if HAS_PRINT_PROGRESS_PERMYRIAD
  31. // Convert 16-bit unsigned permyriad value to percent: 100 / 23 / 23.4 / 3.45
  32. const char* permyriadtostr4(const uint16_t xx);
  33. #endif
  34. // Convert uint16_t to string with 12345 format
  35. const char* ui16tostr5rj(const uint16_t x);
  36. // Convert uint16_t to string with 1234 format
  37. const char* ui16tostr4rj(const uint16_t x);
  38. // Convert uint16_t to string with 123 format
  39. const char* ui16tostr3rj(const uint16_t x);
  40. // Convert int16_t to string with 123 format
  41. const char* i16tostr3rj(const int16_t x);
  42. // Convert unsigned int to lj string with 123 format
  43. const char* i16tostr3left(const int16_t xx);
  44. // Convert signed int to rj string with _123, -123, _-12, or __-1 format
  45. const char* i16tostr4signrj(const int16_t x);
  46. // Convert unsigned float to string with 1.23 format
  47. const char* ftostr12ns(const float &x);
  48. // Convert signed float to fixed-length string with 12.34 / -2.34 or 023.45 / -23.45 format
  49. const char* ftostr42_52(const float &x);
  50. // Convert signed float to fixed-length string with 023.45 / -23.45 format
  51. const char* ftostr52(const float &x);
  52. // Convert signed float to fixed-length string with 12.345 / -2.345 or 023.456 / -23.456 format
  53. const char* ftostr43_53(const float &x);
  54. // Convert signed float to fixed-length string with 023.456 / -23.456 format
  55. const char* ftostr53(const float &x);
  56. // Convert float to fixed-length string with +123.4 / -123.4 format
  57. const char* ftostr41sign(const float &x);
  58. // Convert signed float to string (6 digit) with -1.234 / _0.000 / +1.234 format
  59. const char* ftostr43sign(const float &x, char plus=' ');
  60. // Convert signed float to string (5 digit) with -1.2345 / _0.0000 / +1.2345 format
  61. const char* ftostr54sign(const float &x, char plus=' ');
  62. // Convert unsigned float to rj string with 12345 format
  63. const char* ftostr5rj(const float &x);
  64. // Convert signed float to string with +1234.5 format
  65. const char* ftostr51sign(const float &x);
  66. // Convert signed float to space-padded string with -_23.4_ format
  67. const char* ftostr52sp(const float &x);
  68. // Convert signed float to string with +123.45 format
  69. const char* ftostr52sign(const float &x);
  70. // Convert unsigned float to string with 1234.5 format omitting trailing zeros
  71. const char* ftostr51rj(const float &x);
  72. #include "../core/macros.h"
  73. // Convert float to rj string with 123 or -12 format
  74. FORCE_INLINE const char* ftostr3(const float &x) { return i16tostr3rj(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
  75. #include "../inc/MarlinConfigPre.h"
  76. #if ENABLED(LCD_DECIMAL_SMALL_XY)
  77. // Convert float to rj string with 1234, _123, 12.3, _1.2, -123, _-12, or -1.2 format
  78. const char* ftostr4sign(const float &fx);
  79. #else
  80. // Convert float to rj string with 1234, _123, -123, __12, _-12, ___1, or __-1 format
  81. FORCE_INLINE const char* ftostr4sign(const float &x) { return i16tostr4signrj(int16_t(x + (x < 0 ? -0.5f : 0.5f))); }
  82. #endif