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 5.3KB

Squashed 'tmk_core/' changes from 57d27a8..08ce4c3 08ce4c3 Add update for chibios in README 30cac1d Merge remote-tracking branch 'flabbergast-tmk_keyboard/chibios' f218a38 core: Remove unused warning. Fix tmk_keyboard/#293 3e68807 Chibios: add more guards for transmitting (fix a deadlock bug). cecc807 core: Speed up compilation d01d959 Merge remote-tracking branch 'upstream/master' into chibios 8ff12ae Merge pull request #230 from jerryen/master 3afb83d core: Add note about sudo and git 2525d5d Chibios: Update to new USB API. 2fc5cd6 Merge branch 'master' into chibios 6f5511a core: Fix variable initialize 02a15fa core: Fix variable init and header include 1833ca1 Merge pull request #292 from obones/command_warning bc9dc6f Merge pull request #294 from shayneholmes/fix-debug-message c1b891b Merge pull request #295 from doopai/master 1da837c core: Add macro commands SM(), RM() and CM() d9d5a93 Add support for storing, restoring and clearing modifiers in macros 4f371c0 core: Add dfu-programmer example to doc/build.md ba3792e core: Fix doc/build.md 4b99fed remove SERIAL_SOFT_DEBUG macro 984accb Fix typo in bootmagic debug message 67a7ea1 usb_usb: Fix for keymap editor 2fc9ae4 host_driver is only used if KEYBOARD_LOCK_ENABLE is defined a35cdea Chibios: add 'core/protocol' to the makefiles' search path. 5ed2fd6 Merge remote-tracking branch 'upstream/master' into chibios bbc4851 Do timeout when writing to CONSOLE EP queue. 2450559 Remove an errant comma trailing the KC_ERAS macro alias 8465747 Merge pull request #270 from jeffgran/single-tap-toggle a37339a Merge pull request #271 from jeffgran/default-layer-toggle 8e732f7 core: Update doc/build.md and remove other_projects.md e47dc15 Workaround for compiler warnings when console disabled. 4184c52 Add maple mini code. b555238 core: Fix rules.mk for dfu target 26dacf4 add ACTION_DEFAULT_LAYER_TOGGLE to toggle a default layer on/off 83607d9 enable TAPPING_TOGGLE=1 to work correctly bef3089 Merge branch 'master' into chibios f7a55fd core: Fix debug print of usb_hid 1402f7d core: Add keycode KC_JPY for JIS 8e3a460 Chibios: Remove the wait in the main loop. 7d41746 ChibiOS: prettify/document sleep_led code. 235cdee ChibiOS: Update infinity bootloader code to match updated ChibiOS. 807bf1e Chibios: Add breathing sleep LED on Kinetis MCUs. ba3bf7c ChibiOS: make reset request more CMSISy. bf2ffd4 Add correct chibios/bootloader_jump for infinity KB. f5e03fd Chibios/usb_main: rename a variable for clarity. 63a330c Fix drop key stroke d8f5b06 Fix report size of boot protocol. 38abb50 ChibiOS/STM32: send remote wakeup. 6725650 ChibiOS/kinetis: sending remote wakeup. 69f6e54 Chibios: use WFI in idle. WIP suspend stuff. 02f044b Move chibios/cortex selection to local Makefiles. fa59dfa Rename chibios example keyboard. 5c060de Add eeprom support for chibios/kinetis. efd0044 Move declaration of keymap_config. 7196b24 Make bootmagic.c code portable (_delay_ms -> wait_ms). 37b15b2 Add missing #include to keymap.c. 31316e3 Merge branch 'master' into chibios 166f312 Fix chibios/usb_main GET_REPORT handing. 57ac6c2 Add ARM Teensies bootloader code. 1758086 Move STM32 bootloader address config to separate .h file. 03bb026 Rename some Makefile defines. 76ba6ac NKRO fixes. 06498f8 Update chibios README. db0a4f5 Add basic sleep_led for chibios. c3f930e Move AVR specific sleep_led.c into avr. 4069494 Fix bootloader-jump compiling. 9117f7b Small updates. 269cb85 Implement jump-to-bootloader. 7e81b34 Move chibios to tool. 923a892 Make usb_main more USB_DRIVER #define independent. aa054f0 Add ChibiOS support (USB stack + support files). 1e3e282 Modularity and gcc warnings fixes. 2f60ce0 Add KEYBOARD_LOCK_ENABLE to makefile git-subtree-dir: tmk_core git-subtree-split: 08ce4c3021d2ecd446c5b9a137aded65423d241e
8 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 "util.h"
  29. #ifndef NO_PRINT
  30. #if defined(__AVR__)
  31. #include "avr/xprintf.h"
  32. #define print(s) xputs(PSTR(s))
  33. #define println(s) xputs(PSTR(s "\r\n"))
  34. #ifdef __cplusplus
  35. extern "C"
  36. #endif
  37. /* function pointer of sendchar to be used by print utility */
  38. void print_set_sendchar(int8_t (*print_sendchar_func)(uint8_t));
  39. #elif defined(PROTOCOL_CHIBIOS) /* __AVR__ */
  40. #include "chibios/printf.h"
  41. #define print(s) printf(s)
  42. #define println(s) printf(s "\r\n")
  43. #define xprintf printf
  44. #elif defined(__arm__) /* __AVR__ */
  45. #include "mbed/xprintf.h"
  46. #define print(s) xprintf(s)
  47. #define println(s) xprintf(s "\r\n")
  48. /* TODO: to select output destinations: UART/USBSerial */
  49. #define print_set_sendchar(func)
  50. #endif /* __AVR__ */
  51. /* decimal */
  52. #define print_dec(i) xprintf("%u", i)
  53. #define print_decs(i) xprintf("%d", i)
  54. /* hex */
  55. #define print_hex4(i) xprintf("%X", i)
  56. #define print_hex8(i) xprintf("%02X", i)
  57. #define print_hex16(i) xprintf("%04X", i)
  58. #define print_hex32(i) xprintf("%08lX", i)
  59. /* binary */
  60. #define print_bin4(i) xprintf("%04b", i)
  61. #define print_bin8(i) xprintf("%08b", i)
  62. #define print_bin16(i) xprintf("%016b", i)
  63. #define print_bin32(i) xprintf("%032lb", i)
  64. #define print_bin_reverse8(i) xprintf("%08b", bitrev(i))
  65. #define print_bin_reverse16(i) xprintf("%016b", bitrev16(i))
  66. #define print_bin_reverse32(i) xprintf("%032lb", bitrev32(i))
  67. /* print value utility */
  68. #define print_val_dec(v) xprintf(#v ": %u\n", v)
  69. #define print_val_decs(v) xprintf(#v ": %d\n", v)
  70. #define print_val_hex8(v) xprintf(#v ": %X\n", v)
  71. #define print_val_hex16(v) xprintf(#v ": %02X\n", v)
  72. #define print_val_hex32(v) xprintf(#v ": %04lX\n", v)
  73. #define print_val_bin8(v) xprintf(#v ": %08b\n", v)
  74. #define print_val_bin16(v) xprintf(#v ": %016b\n", v)
  75. #define print_val_bin32(v) xprintf(#v ": %032lb\n", v)
  76. #define print_val_bin_reverse8(v) xprintf(#v ": %08b\n", bitrev(v))
  77. #define print_val_bin_reverse16(v) xprintf(#v ": %016b\n", bitrev16(v))
  78. #define print_val_bin_reverse32(v) xprintf(#v ": %032lb\n", bitrev32(v))
  79. #else /* NO_PRINT */
  80. #define xprintf(s,...) ((void)0)
  81. #define print(s) ((void)0)
  82. #define println(s) ((void)0)
  83. #define print_set_sendchar(func) ((void)0)
  84. #define print_dec(data) ((void)0)
  85. #define print_decs(data) ((void)0)
  86. #define print_hex4(data) ((void)0)
  87. #define print_hex8(data) ((void)0)
  88. #define print_hex16(data) ((void)0)
  89. #define print_hex32(data) ((void)0)
  90. #define print_bin4(data) ((void)0)
  91. #define print_bin8(data) ((void)0)
  92. #define print_bin16(data) ((void)0)
  93. #define print_bin32(data) ((void)0)
  94. #define print_bin_reverse8(data) ((void)0)
  95. #define print_bin_reverse16(data) ((void)0)
  96. #define print_bin_reverse32(data) ((void)0)
  97. #define print_val_dec(v) ((void)0)
  98. #define print_val_decs(v) ((void)0)
  99. #define print_val_hex8(v) ((void)0)
  100. #define print_val_hex16(v) ((void)0)
  101. #define print_val_hex32(v) ((void)0)
  102. #define print_val_bin8(v) ((void)0)
  103. #define print_val_bin16(v) ((void)0)
  104. #define print_val_bin32(v) ((void)0)
  105. #define print_val_bin_reverse8(v) ((void)0)
  106. #define print_val_bin_reverse16(v) ((void)0)
  107. #define print_val_bin_reverse32(v) ((void)0)
  108. #define init_printf(s,ss) ((void)0)
  109. #endif /* NO_PRINT */
  110. /* Backward compatiblitly for old name */
  111. #define pdec(data) print_dec(data)
  112. #define pdec16(data) print_dec(data)
  113. #define phex(data) print_hex8(data)
  114. #define phex16(data) print_hex16(data)
  115. #define pbin(data) print_bin8(data)
  116. #define pbin16(data) print_bin16(data)
  117. #define pbin_reverse(data) print_bin_reverse8(data)
  118. #define pbin_reverse16(data) print_bin_reverse16(data)
  119. #endif