Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pico-sdk
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Microcontroller
pico-sdk
Commits
a567349a
Unverified
Commit
a567349a
authored
1 year ago
by
Peter Harper
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Update btstack v1.6.1 (#1736)
* Update btstack to v1.6.1 * Add build changes for btstack v1.6.1
parent
f193ed6b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/btstack
+1
-1
1 addition, 1 deletion
lib/btstack
src/rp2_common/pico_btstack/CMakeLists.txt
+15
-4
15 additions, 4 deletions
src/rp2_common/pico_btstack/CMakeLists.txt
with
16 additions
and
5 deletions
btstack
@
2b49e57b
Compare
72ef1732
...
2b49e57b
Subproject commit
72ef1732c954d938091467961e41f4aa9b976b34
Subproject commit
2b49e57bd1fae85ac32ac1f41cdb7c794de335f6
This diff is collapsed.
Click to expand it.
src/rp2_common/pico_btstack/CMakeLists.txt
+
15
−
4
View file @
a567349a
...
@@ -37,6 +37,7 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
...
@@ -37,6 +37,7 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
${
PICO_BTSTACK_PATH
}
/src/btstack_audio.c
${
PICO_BTSTACK_PATH
}
/src/btstack_audio.c
${
PICO_BTSTACK_PATH
}
/src/btstack_base64_decoder.c
${
PICO_BTSTACK_PATH
}
/src/btstack_base64_decoder.c
${
PICO_BTSTACK_PATH
}
/src/btstack_crypto.c
${
PICO_BTSTACK_PATH
}
/src/btstack_crypto.c
${
PICO_BTSTACK_PATH
}
/src/btstack_hid.c
${
PICO_BTSTACK_PATH
}
/src/btstack_hid_parser.c
${
PICO_BTSTACK_PATH
}
/src/btstack_hid_parser.c
${
PICO_BTSTACK_PATH
}
/src/btstack_linked_list.c
${
PICO_BTSTACK_PATH
}
/src/btstack_linked_list.c
${
PICO_BTSTACK_PATH
}
/src/btstack_memory.c
${
PICO_BTSTACK_PATH
}
/src/btstack_memory.c
...
@@ -68,6 +69,8 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
...
@@ -68,6 +69,8 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
${
PICO_BTSTACK_PATH
}
/3rd-party/rijndael
${
PICO_BTSTACK_PATH
}
/3rd-party/rijndael
${
PICO_BTSTACK_PATH
}
/3rd-party/micro-ecc
${
PICO_BTSTACK_PATH
}
/3rd-party/micro-ecc
${
PICO_BTSTACK_PATH
}
/3rd-party/segger-rtt
${
PICO_BTSTACK_PATH
}
/3rd-party/segger-rtt
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/encoder/include
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/decoder/include
)
)
pico_add_library
(
pico_btstack_ble
)
pico_add_library
(
pico_btstack_ble
)
...
@@ -168,6 +171,14 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
...
@@ -168,6 +171,14 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
target_include_directories
(
pico_btstack_run_loop_async_context_headers INTERFACE
${
CMAKE_CURRENT_LIST_DIR
}
/include
)
target_include_directories
(
pico_btstack_run_loop_async_context_headers INTERFACE
${
CMAKE_CURRENT_LIST_DIR
}
/include
)
pico_mirrored_target_link_libraries
(
pico_btstack_run_loop_async_context INTERFACE pico_btstack_base pico_async_context_base
)
pico_mirrored_target_link_libraries
(
pico_btstack_run_loop_async_context INTERFACE pico_btstack_base pico_async_context_base
)
pico_add_library
(
pico_btstack_sbc_common NOFLAG
)
set
(
SBC_BLUEDROID
"src/classic/btstack_sbc_bluedroid.c"
)
if
(
EXISTS
${
PICO_BTSTACK_PATH
}
/
${
SBC_BLUEDROID
}
)
# Added in 1.6.x
target_sources
(
pico_btstack_sbc_common INTERFACE
${
PICO_BTSTACK_PATH
}
/
${
SBC_BLUEDROID
}
)
endif
()
pico_add_library
(
pico_btstack_sbc_encoder NOFLAG
)
pico_add_library
(
pico_btstack_sbc_encoder NOFLAG
)
target_sources
(
pico_btstack_sbc_encoder INTERFACE
target_sources
(
pico_btstack_sbc_encoder INTERFACE
# SBC codec for A2DP and HFP demos
# SBC codec for A2DP and HFP demos
...
@@ -181,8 +192,8 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
...
@@ -181,8 +192,8 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/encoder/srce/sbc_encoder.c
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/encoder/srce/sbc_encoder.c
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/encoder/srce/sbc_packing.c
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/encoder/srce/sbc_packing.c
)
)
target_in
clude_directo
ries
(
pico_btstack_sbc_encoder
_headers
INTERFACE
pico_mirrored_
target_
l
in
k_libra
ries
(
pico_btstack_sbc_encoder INTERFACE
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/encoder/include
pico_btstack_sbc_common
)
)
pico_add_library
(
pico_btstack_sbc_decoder NOFLAG
)
pico_add_library
(
pico_btstack_sbc_decoder NOFLAG
)
...
@@ -203,8 +214,8 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
...
@@ -203,8 +214,8 @@ if (EXISTS ${PICO_BTSTACK_PATH}/${BTSTACK_TEST_PATH})
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/decoder/srce/synthesis-dct8.c
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/decoder/srce/synthesis-dct8.c
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/decoder/srce/synthesis-8-generated.c
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/decoder/srce/synthesis-8-generated.c
)
)
target_in
clude_directo
ries
(
pico_btstack_sbc_decoder
_headers
INTERFACE
pico_mirrored_
target_
l
in
k_libra
ries
(
pico_btstack_sbc_decoder INTERFACE
${
PICO_BTSTACK_PATH
}
/3rd-party/bluedroid/decoder/include
pico_btstack_sbc_common
)
)
pico_add_library
(
pico_btstack_bnep_lwip NOFLAG
)
pico_add_library
(
pico_btstack_bnep_lwip NOFLAG
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment