Change buffer size: 256 bytes

This commit is contained in:
tmk 2014-07-01 04:29:07 +09:00
parent 47bc3016d3
commit be19b2bf32

View 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;