nimble/ble_gap: adv_enable_tx preprocessor directives corrections

There wher compilation errors for blecent if NIMBLE_BLE_ADVERTISE was
not set. Appropriate preprocessor if conditions where added.
This commit is contained in:
Krzysztof Kopyściński
2021-04-09 21:28:17 +05:30
committed by Prasad Alatkar
parent 1b808fcb80
commit 7d956e2d3a
+3 -3
View File
@@ -948,7 +948,7 @@ ble_gap_master_ticks_until_exp(void)
return 0;
}
#if !MYNEWT_VAL(BLE_EXT_ADV)
#if NIMBLE_BLE_ADVERTISE && !MYNEWT_VAL(BLE_EXT_ADV)
static uint32_t
ble_gap_slave_ticks_until_exp(void)
{
@@ -1957,7 +1957,7 @@ ble_gap_master_timer(void)
return BLE_HS_FOREVER;
}
#if !MYNEWT_VAL(BLE_EXT_ADV)
#if NIMBLE_BLE_ADVERTISE && !MYNEWT_VAL(BLE_EXT_ADV)
static int32_t
ble_gap_slave_timer(void)
{
@@ -2056,7 +2056,7 @@ ble_gap_timer(void)
min_ticks = min(master_ticks, update_ticks);
#if !MYNEWT_VAL(BLE_EXT_ADV)
#if NIMBLE_BLE_ADVERTISE && !MYNEWT_VAL(BLE_EXT_ADV)
min_ticks = min(min_ticks, ble_gap_slave_timer());
#endif