~ruther/qmk_firmware

be19b2bf324cbbca53cbd4a7588311041a7353a6 — tmk 11 years ago 47bc301
Change buffer size: 256 bytes
1 files changed, 1 insertions(+), 1 deletions(-)

M protocol/serial_uart.c
M protocol/serial_uart.c => protocol/serial_uart.c +1 -1
@@ 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;