From: tmk Date: Tue, 8 Oct 2013 01:49:13 +0000 (+0900) Subject: Fix build error and debug print PJRC stack #69 #68 X-Git-Url: https://git.gir.st/tmk_keyboard.git/commitdiff_plain/48662ace8b6d8aca5ab4a5de0a0a40781a95478a Fix build error and debug print PJRC stack #69 #68 --- diff --git a/protocol/pjrc/main.c b/protocol/pjrc/main.c index 5f15dbf8..1ef87f86 100644 --- a/protocol/pjrc/main.c +++ b/protocol/pjrc/main.c @@ -30,6 +30,7 @@ #include "matrix.h" #include "print.h" #include "debug.h" +#include "sendchar.h" #include "util.h" #include "suspend.h" #include "host.h" @@ -50,6 +51,8 @@ int main(void) usb_init(); while (!usb_configured()) /* wait */ ; + print_set_sendchar(sendchar); + keyboard_init(); host_set_driver(pjrc_driver()); #ifdef SLEEP_LED_ENABLE diff --git a/protocol/pjrc/usb.c b/protocol/pjrc/usb.c index 902f9f7f..84c99972 100644 --- a/protocol/pjrc/usb.c +++ b/protocol/pjrc/usb.c @@ -38,6 +38,7 @@ #include "sleep_led.h" #endif #include "suspend.h" +#include "action_util.h" /**************************************************************************