From 7343366d3d962ae1fa8cd3b280f7702396337dbf Mon Sep 17 00:00:00 2001 From: tmk Date: Sat, 4 May 2013 14:51:46 +0900 Subject: Increase buffer size of PS2 protocol --- protocol/ps2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'protocol/ps2.c') diff --git a/protocol/ps2.c b/protocol/ps2.c index cf7b1f43ce..ed45609104 100644 --- a/protocol/ps2.c +++ b/protocol/ps2.c @@ -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; -- cgit v1.2.3