diff options
author | tmk <nobody@nowhere> | 2014-07-01 04:29:07 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-07-30 14:38:26 +0900 |
commit | be19b2bf324cbbca53cbd4a7588311041a7353a6 (patch) | |
tree | a67aba6216393f0323d2f7d0e711df3bf90f9e5c /protocol | |
parent | 47bc3016d36cbfd83904fff5947acb6436dd37c3 (diff) |
Change buffer size: 256 bytes
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/serial_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/serial_uart.c b/protocol/serial_uart.c index 6c0af88175..600340cd8e 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; |