diff options
| author | tmk <nobody@nowhere> | 2013-05-04 14:51:46 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-05-04 14:51:46 +0900 |
| commit | 7343366d3d962ae1fa8cd3b280f7702396337dbf (patch) | |
| tree | f305e40541cbb4bdeb3cb582e2f2cb24efedb24b /protocol/ps2_usart.c | |
| parent | 95001dd6e43645ba7b6d586c6af8d5c421a569fb (diff) | |
| download | qmk_firmware-7343366d3d962ae1fa8cd3b280f7702396337dbf.tar.gz qmk_firmware-7343366d3d962ae1fa8cd3b280f7702396337dbf.zip | |
Increase buffer size of PS2 protocol
Diffstat (limited to 'protocol/ps2_usart.c')
| -rw-r--r-- | protocol/ps2_usart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/ps2_usart.c b/protocol/ps2_usart.c index 7d591c650..9ea6b7786 100644 --- a/protocol/ps2_usart.c +++ b/protocol/ps2_usart.c | |||
| @@ -287,7 +287,7 @@ static inline void inhibit(void) | |||
| 287 | /*-------------------------------------------------------------------- | 287 | /*-------------------------------------------------------------------- |
| 288 | * Ring buffer to store scan codes from keyboard | 288 | * Ring buffer to store scan codes from keyboard |
| 289 | *------------------------------------------------------------------*/ | 289 | *------------------------------------------------------------------*/ |
| 290 | #define PBUF_SIZE 8 | 290 | #define PBUF_SIZE 32 |
| 291 | static uint8_t pbuf[PBUF_SIZE]; | 291 | static uint8_t pbuf[PBUF_SIZE]; |
| 292 | static uint8_t pbuf_head = 0; | 292 | static uint8_t pbuf_head = 0; |
| 293 | static uint8_t pbuf_tail = 0; | 293 | static uint8_t pbuf_tail = 0; |
