Skip to content

Commit 3b0c485

Browse files
committed
bluetooth: add host-based peer RPA resolution support
Signed-off-by: Liam McLoughlin <[email protected]>
1 parent 7f6f91f commit 3b0c485

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
url = https://github.com/pebble-dev/stm32-sdk.git
77
[submodule "src/bluetooth-fw/nimble/vendor/mynewt-nimble"]
88
path = third_party/nimble/mynewt-nimble
9-
url = https://github.com/apache/mynewt-nimble.git
9+
url = https://github.com/pebble-dev/mynewt-nimble.git
1010
[submodule "src/bluetooth-fw/nimble/vendor/ti-service-packs"]
1111
path = third_party/ti_bt_sp/ti-service-packs
1212
url = https://git.ti.com/git/ti-bt/service-packs.git

third_party/nimble/port/include/cc2564x/syscfg/syscfg.h

+4
Original file line numberDiff line numberDiff line change
@@ -871,6 +871,10 @@
871871
#define MYNEWT_VAL_BLE_RPA_TIMEOUT (300)
872872
#endif
873873

874+
#ifndef MYNEWT_VAL_BLE_HOST_RPA_RESOLVER
875+
#define MYNEWT_VAL_BLE_HOST_RPA_RESOLVER (1)
876+
#endif
877+
874878
/* Overridden by app (defined by @apache-mynewt-nimble/nimble/host) */
875879
#ifndef MYNEWT_VAL_BLE_SM_BONDING
876880
#define MYNEWT_VAL_BLE_SM_BONDING (1)

third_party/nimble/port/include/nrf52/syscfg/syscfg.h

+4
Original file line numberDiff line numberDiff line change
@@ -2168,6 +2168,10 @@
21682168
#define MYNEWT_VAL_BLE_RPA_TIMEOUT (300)
21692169
#endif
21702170

2171+
#ifndef MYNEWT_VAL_BLE_HOST_RPA_RESOLVER
2172+
#define MYNEWT_VAL_BLE_HOST_RPA_RESOLVER (0)
2173+
#endif
2174+
21712175
/* Overridden by app (defined by @apache-mynewt-nimble/nimble/host) */
21722176
#ifndef MYNEWT_VAL_BLE_SM_BONDING
21732177
#define MYNEWT_VAL_BLE_SM_BONDING (1)

third_party/nimble/syscfg/targets/cc2564x/syscfg.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414

1515
syscfg.vals:
1616
BLE_TRANSPORT_LL: socket
17+
BLE_HOST_RPA_RESOLVER: 1

0 commit comments

Comments
 (0)