From e0e7fdf1aef151390c1e82d95e89e39038206bca Mon Sep 17 00:00:00 2001 From: Joe Kearney Date: Sat, 16 Aug 2025 15:54:04 -0500 Subject: [PATCH] Increased N_PACKET_BUFFERS from 10 to 20. --- BLE/BLE_Packets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BLE/BLE_Packets.c b/BLE/BLE_Packets.c index e2d4d11..c44fc62 100644 --- a/BLE/BLE_Packets.c +++ b/BLE/BLE_Packets.c @@ -24,7 +24,7 @@ #include "SystemK.h" -#define N_PACKET_BUFFERS 10 +#define N_PACKET_BUFFERS 20 static BLE_Packet_T Packet_Buffers[N_PACKET_BUFFERS]; static BLE_AdvertisingData_T Advertising_Data; static uint8_t my_BD_ADDR[6];