summaryrefslogtreecommitdiffstats
path: root/protocol
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-06-30 21:29:07 +0200
committertmk <nobody@nowhere>2014-07-30 07:38:26 +0200
commitbe19b2bf324cbbca53cbd4a7588311041a7353a6 (patch)
treea67aba6216393f0323d2f7d0e711df3bf90f9e5c /protocol
parent47bc3016d36cbfd83904fff5947acb6436dd37c3 (diff)
downloadqmk_firmware-be19b2bf324cbbca53cbd4a7588311041a7353a6.tar.gz
qmk_firmware-be19b2bf324cbbca53cbd4a7588311041a7353a6.tar.xz
Change buffer size: 256 bytes
Diffstat (limited to 'protocol')
-rw-r--r--protocol/serial_uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/serial_uart.c b/protocol/serial_uart.c
index 6c0af8817..600340cd8 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;