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.

Print.h 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /**
  2. * Print.h - Base class that provides print() and println()
  3. * Copyright (c) 2008 David A. Mellis. All right reserved.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #ifndef _CMSIS_PRINT_H_
  20. #define _CMSIS_PRINT_H_
  21. #include <inttypes.h>
  22. #include <stdio.h> // for size_t
  23. #include <string.h>
  24. #include "Printable.h"
  25. #define DEC 10
  26. #define HEX 16
  27. #define OCT 8
  28. #define BIN 2
  29. class Print {
  30. private:
  31. int write_error;
  32. size_t printNumber(unsigned long, uint8_t);
  33. size_t printFloat(double, uint8_t);
  34. protected:
  35. void setWriteError(const int err = 1) { write_error = err; }
  36. public:
  37. Print() : write_error(0) {}
  38. int getWriteError() { return write_error; }
  39. void clearWriteError() { setWriteError(0); }
  40. virtual size_t write(uint8_t) = 0;
  41. size_t write(const char *str) {
  42. if (str == NULL) return 0;
  43. return write((const uint8_t *)str, strlen(str));
  44. }
  45. virtual size_t write(const uint8_t *buffer, size_t size);
  46. size_t write(const char *buffer, size_t size) {
  47. return write((const uint8_t *)buffer, size);
  48. }
  49. size_t print(const char[]);
  50. size_t print(char);
  51. size_t print(unsigned char, int = DEC);
  52. size_t print(int, int = DEC);
  53. size_t print(unsigned int, int = DEC);
  54. size_t print(long, int = DEC);
  55. size_t print(unsigned long, int = DEC);
  56. size_t print(double, int = 2);
  57. size_t print(const Printable&);
  58. size_t println(const char[]);
  59. size_t println(char);
  60. size_t println(unsigned char, int = DEC);
  61. size_t println(int, int = DEC);
  62. size_t println(unsigned int, int = DEC);
  63. size_t println(long, int = DEC);
  64. size_t println(unsigned long, int = DEC);
  65. size_t println(double, int = 2);
  66. size_t println(const Printable&);
  67. size_t println(void);
  68. size_t printf(const char *argList, ...);
  69. };
  70. #endif // _CMSIS_PRINT_H_