Skip to content

Commit ccdf745

Browse files
committed
bluetooth: reduce BT HCI RX buffer size to fix overflow on snowy
Signed-off-by: Liam McLoughlin <[email protected]>
1 parent 6ad458a commit ccdf745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/nimble/transport/hci_uart_transport.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct uart_tx {
4040

4141
static TaskHandle_t s_rx_task_handle;
4242
static CircularBuffer s_rx_buffer;
43-
static uint8_t s_rx_storage[1024];
43+
static uint8_t s_rx_storage[256];
4444
static SemaphoreHandle_t s_rx_data_ready;
4545
static SemaphoreHandle_t s_cmd_done;
4646

0 commit comments

Comments
 (0)