Keyboard firmwares for Atmel AVR and Cortex-M
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 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* Copyright 2012 Jun Wako <[email protected]> */
  2. /* Very basic print functions, intended to be used with usb_debug_only.c
  3. * http://www.pjrc.com/teensy/
  4. * Copyright (c) 2008 PJRC.COM, LLC
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. #ifndef PRINT_H__
  25. #define PRINT_H__ 1
  26. #include <stdint.h>
  27. #include <stdbool.h>
  28. #include <avr/pgmspace.h>
  29. // this macro allows you to write print("some text") and
  30. // the string is automatically placed into flash memory :)
  31. // TODO: avoid collision with arduino/Print.h
  32. #ifndef __cplusplus
  33. #define print(s) print_P(PSTR(s))
  34. #endif
  35. #define println(s) print_P(PSTR(s "\n"))
  36. /* for old name */
  37. #define pdec(data) print_dec(data)
  38. #define pdec16(data) print_dec(data)
  39. #define phex(data) print_hex8(data)
  40. #define phex16(data) print_hex16(data)
  41. #define pbin(data) print_bin8(data)
  42. #define pbin16(data) print_bin16(data)
  43. #define pbin_reverse(data) print_bin_reverse8(data)
  44. #define pbin_reverse16(data) print_bin_reverse16(data)
  45. /* print value utility */
  46. #define print_val_dec(v) do { print_P(PSTR(#v ": ")); print_dec(v); print_P(PSTR("\n")); } while (0)
  47. #define print_val_decs(v) do { print_P(PSTR(#v ": ")); print_decs(v); print_P(PSTR("\n")); } while (0)
  48. #define print_val_hex8(v) do { print_P(PSTR(#v ": ")); print_hex8(v); print_P(PSTR("\n")); } while (0)
  49. #define print_val_hex16(v) do { print_P(PSTR(#v ": ")); print_hex16(v); print_P(PSTR("\n")); } while (0)
  50. #define print_val_hex32(v) do { print_P(PSTR(#v ": ")); print_hex32(v); print_P(PSTR("\n")); } while (0)
  51. #define print_val_bin8(v) do { print_P(PSTR(#v ": ")); print_bin8(v); print_P(PSTR("\n")); } while (0)
  52. #define print_val_bin16(v) do { print_P(PSTR(#v ": ")); print_bin16(v); print_P(PSTR("\n")); } while (0)
  53. #define print_val_bin32(v) do { print_P(PSTR(#v ": ")); print_bin32(v); print_P(PSTR("\n")); } while (0)
  54. #define print_val_bin_reverse8(v) do { print_P(PSTR(#v ": ")); print_bin_reverse8(v); print_P(PSTR("\n")); } while (0)
  55. #define print_val_bin_reverse16(v) do { print_P(PSTR(#v ": ")); print_bin_reverse16(v); print_P(PSTR("\n")); } while (0)
  56. #define print_val_bin_reverse32(v) do { print_P(PSTR(#v ": ")); print_bin_reverse32(v); print_P(PSTR("\n")); } while (0)
  57. #ifndef NO_PRINT
  58. #ifdef __cplusplus
  59. extern "C" {
  60. #endif
  61. /* function pointer of sendchar to be used by print utility */
  62. void print_set_sendchar(int8_t (*print_sendchar_func)(uint8_t));
  63. /* print string stored in data memory(SRAM) */
  64. void print_S(const char *s);
  65. /* print string stored in program memory(FLASH) */
  66. void print_P(const char *s);
  67. void print_CRLF(void);
  68. /* decimal */
  69. void print_dec(uint16_t data);
  70. void print_decs(int16_t data);
  71. /* hex */
  72. void print_hex4(uint8_t data);
  73. void print_hex8(uint8_t data);
  74. void print_hex16(uint16_t data);
  75. void print_hex32(uint32_t data);
  76. /* binary */
  77. void print_bin4(uint8_t data);
  78. void print_bin8(uint8_t data);
  79. void print_bin16(uint16_t data);
  80. void print_bin32(uint32_t data);
  81. void print_bin_reverse8(uint8_t data);
  82. void print_bin_reverse16(uint16_t data);
  83. void print_bin_reverse32(uint32_t data);
  84. #ifdef __cplusplus
  85. }
  86. #endif
  87. #else
  88. #define print_set_sendchar(func)
  89. #define print_S(s)
  90. #define print_P(s)
  91. #define print_CRLF()
  92. #define print_dec(data)
  93. #define print_decs(data)
  94. #define print_hex4(data)
  95. #define print_hex8(data)
  96. #define print_hex16(data)
  97. #define print_hex32(data)
  98. #define print_bin4(data)
  99. #define print_bin8(data)
  100. #define print_bin16(data)
  101. #define print_bin32(data)
  102. #define print_bin_reverse8(data)
  103. #define print_bin_reverse16(data)
  104. #define print_bin_reverse32(data)
  105. #endif
  106. #endif