From 1962ba172647002782b8879e6e10772efb79857c Mon Sep 17 00:00:00 2001 From: dmainz Date: Sat, 14 Sep 2024 13:00:13 -0500 Subject: [PATCH] nimble/host/src/ble_gap.c - undefined SET_BIT before defining it. The STM32 port also has a SET_BIT. --- nimble/host/src/ble_gap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nimble/host/src/ble_gap.c b/nimble/host/src/ble_gap.c index b0ce6ff47b..5a161a2763 100644 --- a/nimble/host/src/ble_gap.c +++ b/nimble/host/src/ble_gap.c @@ -41,6 +41,7 @@ #define bssnz_t #endif +#undef SET_BIT #define SET_BIT(t, n) (t |= 1UL << (n)) /**