]> git.tnoah.ca Git - lora-radio.git/commitdiff
Increase BLE RX fifo buffer size on nRF52
authorjacob.eva <x00010@disroot.org>
Wed, 23 Oct 2024 16:27:23 +0000 (17:27 +0100)
committerjacob.eva <x00010@disroot.org>
Wed, 23 Oct 2024 16:27:23 +0000 (17:27 +0100)
Bluetooth.h

index a4913d0cb47f4acf2d043345b6440bb32360695b..72f4ab0e2319436cbb573f95b0a4a55346a022a8 100644 (file)
@@ -34,7 +34,8 @@
 #elif MCU_VARIANT == MCU_NRF52
   #include <bluefruit.h>
   #include <math.h>
-  BLEUart SerialBT;
+  #define BLE_RX_BUF 6144
+  BLEUart SerialBT(BLE_RX_BUF);
   BLEDis  bledis;
   BLEBas  blebas;
 #endif