]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
Change buffer size: 256 bytes
authortmk <nobody@nowhere>
Mon, 30 Jun 2014 19:29:07 +0000 (04:29 +0900)
committertmk <nobody@nowhere>
Wed, 30 Jul 2014 05:38:26 +0000 (14:38 +0900)
protocol/serial_uart.c

index 6c0af88175d1716c9476f00f4e6a29887f513880..600340cd8e9d6a58599c46ae6bd1a60db070a880 100644 (file)
@@ -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;