File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed
src/rp2_common/pico_btstack Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ new_git_repository(
98
98
new_git_repository (
99
99
name = "btstack" ,
100
100
build_file = "//src/rp2_common/pico_btstack:btstack.BUILD" ,
101
- commit = "2b49e57bd1fae85ac32ac1f41cdb7c794de335f6 " , # keep-in-sync-with-submodule: lib/btstack
101
+ commit = "501e6d2b86e6c92bfb9c390bcf55709938e25ac1 " , # keep-in-sync-with-submodule: lib/btstack
102
102
remote = "https://github.com/bluekitchen/btstack.git" ,
103
103
)
104
104
Original file line number Diff line number Diff line change @@ -107,6 +107,13 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
107
107
ENABLE_BLE=1
108
108
)
109
109
110
+ # Added in v1.6.2
111
+ if (EXISTS ${PICO_BTSTACK_PATH} /src/hci_event_builder.c )
112
+ target_sources (pico_btstack_ble INTERFACE
113
+ ${PICO_BTSTACK_PATH} /src/hci_event_builder.c
114
+ )
115
+ endif ()
116
+
110
117
pico_add_library (pico_btstack_classic )
111
118
target_sources (pico_btstack_classic INTERFACE
112
119
${PICO_BTSTACK_PATH} /src/classic/a2dp.c
@@ -161,6 +168,13 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
161
168
ENABLE_CLASSIC=1
162
169
)
163
170
171
+ # Added in v1.6.2
172
+ if (EXISTS ${PICO_BTSTACK_PATH} /src/classic/obex_srm_client.c )
173
+ target_sources (pico_btstack_classic INTERFACE
174
+ ${PICO_BTSTACK_PATH} /src/classic/obex_srm_client.c
175
+ )
176
+ endif ()
177
+
164
178
pico_add_library (pico_btstack_mesh )
165
179
target_sources (pico_btstack_mesh INTERFACE
166
180
${PICO_BTSTACK_PATH} /src/mesh/adv_bearer.c
You can’t perform that action at this time.
0 commit comments