]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - protocol/ps2.c
Fix LUFA blocking during startup
[tmk_firmware.git] / protocol / ps2.c
index cf7b1f43ce42076e9b6eb876b844180afb427cc3..ed45609104f5be60fc7ae61f91b3cc57ef1df4f3 100644 (file)
@@ -181,7 +181,7 @@ uint8_t ps2_host_recv(void)
 }
 #else
 /* ring buffer to store ps/2 key data */
-#define PBUF_SIZE 8
+#define PBUF_SIZE 32
 static uint8_t pbuf[PBUF_SIZE];
 static uint8_t pbuf_head = 0;
 static uint8_t pbuf_tail = 0;