aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-02-14 01:44:22 +0000
committerGitHub <noreply@github.com>2021-02-14 01:44:22 +0000
commit1f2fe2eab99548f4bde2a79b03e3303cc9b73214 (patch)
tree22c7b61acf16ce3e25b5c35ce56cc2bb6ebec290 /tmk_core/protocol
parent72e515547aedbfd0b91296a51a81861236be8fe5 (diff)
downloadqmk_firmware-1f2fe2eab99548f4bde2a79b03e3303cc9b73214.tar.gz
qmk_firmware-1f2fe2eab99548f4bde2a79b03e3303cc9b73214.zip
Refactor platform logic within print.h (#11863)
* Remove GCC check from debug * Remove platform logic from common.mk * Refactor platform logic within print.h * restore debug.c format * headers * Rename function pointer type * review comments * Update tmk_core/common/printf.c Co-authored-by: Nick Brassel <nick@tzarc.org> * Format Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/chibios/usb_main.c7
-rw-r--r--tmk_core/protocol/lufa/lufa.c1
-rw-r--r--tmk_core/protocol/vusb/main.c7
3 files changed, 1 insertions, 14 deletions
diff --git a/tmk_core/protocol/chibios/usb_main.c b/tmk_core/protocol/chibios/usb_main.c
index 13b1e34d2..4c088e2b5 100644
--- a/tmk_core/protocol/chibios/usb_main.c
+++ b/tmk_core/protocol/chibios/usb_main.c
@@ -953,15 +953,8 @@ void console_task(void) {
953 } while (size > 0); 953 } while (size > 0);
954} 954}
955 955
956#else /* CONSOLE_ENABLE */
957int8_t sendchar(uint8_t c) {
958 (void)c;
959 return 0;
960}
961#endif /* CONSOLE_ENABLE */ 956#endif /* CONSOLE_ENABLE */
962 957
963void _putchar(char character) { sendchar(character); }
964
965#ifdef RAW_ENABLE 958#ifdef RAW_ENABLE
966void raw_hid_send(uint8_t *data, uint8_t length) { 959void raw_hid_send(uint8_t *data, uint8_t length) {
967 // TODO: implement variable size packet 960 // TODO: implement variable size packet
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 74e48222d..bd9daaac9 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -1025,7 +1025,6 @@ static void setup_usb(void) {
1025 1025
1026 // for Console_Task 1026 // for Console_Task
1027 USB_Device_EnableSOFEvents(); 1027 USB_Device_EnableSOFEvents();
1028 print_set_sendchar(sendchar);
1029} 1028}
1030 1029
1031/** \brief Main 1030/** \brief Main
diff --git a/tmk_core/protocol/vusb/main.c b/tmk_core/protocol/vusb/main.c
index 2e8bb2fbb..3f93ef6d2 100644
--- a/tmk_core/protocol/vusb/main.c
+++ b/tmk_core/protocol/vusb/main.c
@@ -74,12 +74,7 @@ static void usb_remote_wakeup(void) {
74 * 74 *
75 * FIXME: Needs doc 75 * FIXME: Needs doc
76 */ 76 */
77static void setup_usb(void) { 77static void setup_usb(void) { initForUsbConnectivity(); }
78 initForUsbConnectivity();
79
80 // for Console_Task
81 print_set_sendchar(sendchar);
82}
83 78
84/** \brief Main 79/** \brief Main
85 * 80 *