From 278d320f71adfd0ec4d9ab4a3f0394196a01e9bd Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 25 Jan 2016 19:09:12 -0500 Subject: [PATCH] drivers/nble: Increase TX & RX buffer count to 2 This lowers the chance of running out of buffers when sending or receiving a lot of data. Change-Id: Ifedc5652f993fa54f7aded87aef545ffb49e7581 Signed-off-by: Johan Hedberg --- drivers/nble/uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nble/uart.c b/drivers/nble/uart.c index 9f08202d5df..44d642f3931 100644 --- a/drivers/nble/uart.c +++ b/drivers/nble/uart.c @@ -31,7 +31,7 @@ #include "rpc.h" /* TODO: check size */ -#define NBLE_IPC_COUNT 1 +#define NBLE_IPC_COUNT 2 #define NBLE_BUF_SIZE 100 static struct nano_fifo rx;