From: tmk Date: Mon, 30 Jun 2014 19:29:07 +0000 (+0900) Subject: Change buffer size: 256 bytes X-Git-Url: https://git.donarmstrong.com/?p=tmk_firmware.git;a=commitdiff_plain;h=be19b2bf324cbbca53cbd4a7588311041a7353a6 Change buffer size: 256 bytes --- 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;