From: jacob.eva Date: Wed, 23 Oct 2024 16:27:23 +0000 (+0100) Subject: Increase BLE RX fifo buffer size on nRF52 X-Git-Url: https://git.tnoah.ca/?a=commitdiff_plain;h=5fbac585506cd6ca18df0789b4f10409225dae2e;p=lora-radio.git Increase BLE RX fifo buffer size on nRF52 --- diff --git a/Bluetooth.h b/Bluetooth.h index a4913d0..72f4ab0 100644 --- a/Bluetooth.h +++ b/Bluetooth.h @@ -34,7 +34,8 @@ #elif MCU_VARIANT == MCU_NRF52 #include #include - BLEUart SerialBT; + #define BLE_RX_BUF 6144 + BLEUart SerialBT(BLE_RX_BUF); BLEDis bledis; BLEBas blebas; #endif