X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=common%2Fhost.c;h=e9b791670670eed07b9956495c1fc38dde989bab;hb=22d99f26af757c0bedb31ba3f63d793e4b2d4ca3;hp=1eafef75cc3c2d6c5e13346fb250be1c9225a769;hpb=d7f663a1ea4487a6dc5be76085eff7b00bec9704;p=max%2Ftmk_keyboard.git diff --git a/common/host.c b/common/host.c index 1eafef75..e9b79167 100644 --- a/common/host.c +++ b/common/host.c @@ -16,7 +16,7 @@ along with this program. If not, see . */ #include -#include +//#include #include "keycode.h" #include "host.h" #include "util.h" @@ -24,7 +24,7 @@ along with this program. If not, see . #ifdef NKRO_ENABLE -bool keyboard_nkro = false; +bool keyboard_nkro = true; #endif static host_driver_t *driver; @@ -55,7 +55,7 @@ void host_keyboard_send(report_keyboard_t *report) if (debug_keyboard) { dprint("keyboard_report: "); - for (uint8_t i = 0; i < REPORT_SIZE; i++) { + for (uint8_t i = 0; i < KEYBOARD_REPORT_SIZE; i++) { dprintf("%02X ", report->raw[i]); } dprint("\n");