X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=protocol%2Fserial_uart.c;h=600340cd8e9d6a58599c46ae6bd1a60db070a880;hb=fa545c87f74833856761572ef631d20accc1d026;hp=6c0af88175d1716c9476f00f4e6a29887f513880;hpb=38bbe976e00a9a7bf6f8157016717e80503bf6a9;p=tmk_firmware.git diff --git a/protocol/serial_uart.c b/protocol/serial_uart.c index 6c0af88..600340c 100644 --- a/protocol/serial_uart.c +++ b/protocol/serial_uart.c @@ -47,7 +47,7 @@ void serial_init(void) } // RX ring buffer -#define RBUF_SIZE 8 +#define RBUF_SIZE 256 static uint8_t rbuf[RBUF_SIZE]; static uint8_t rbuf_head = 0; static uint8_t rbuf_tail = 0;