ソースを参照

Change buffer size: 256 bytes

tags/v1.9
tmk 10年前
コミット
be19b2bf32
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      protocol/serial_uart.c

+ 1
- 1
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;

読み込み中…
キャンセル
保存