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) | |
| download | qmk_firmware-be19b2bf324cbbca53cbd4a7588311041a7353a6.tar.gz qmk_firmware-be19b2bf324cbbca53cbd4a7588311041a7353a6.zip | |
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 6c0af8817..600340cd8 100644 --- a/protocol/serial_uart.c +++ b/protocol/serial_uart.c | |||
| @@ -47,7 +47,7 @@ void serial_init(void) | |||
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | // RX ring buffer | 49 | // RX ring buffer |
| 50 | #define RBUF_SIZE 8 | 50 | #define RBUF_SIZE 256 |
| 51 | static uint8_t rbuf[RBUF_SIZE]; | 51 | static uint8_t rbuf[RBUF_SIZE]; |
| 52 | static uint8_t rbuf_head = 0; | 52 | static uint8_t rbuf_head = 0; |
| 53 | static uint8_t rbuf_tail = 0; | 53 | static uint8_t rbuf_tail = 0; |
