-
Notifications
You must be signed in to change notification settings - Fork 908
Add Bazel build for Pico W examples #587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
armandomontanez
wants to merge
4
commits into
raspberrypi:develop
Choose a base branch
from
armandomontanez:add-pico-w-bazel-examples
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8.0.0rc2 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,8 @@ _deps | |
cmake-* | ||
build | ||
build-* | ||
bazel-* | ||
.DS_Store | ||
# Ignore for now to avoid churn. | ||
MODULE.bazel.lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
module( | ||
name = "pico-examples", | ||
version = "0.0.1-20241114", | ||
) | ||
|
||
bazel_dep(name = "pico-sdk", version = "2.1.0") | ||
bazel_dep(name = "rules_platform", version = "0.1.0") | ||
bazel_dep(name = "rules_cc", version = "0.1.0") | ||
bazel_dep(name = "bazel_skylib", version = "1.7.1") | ||
bazel_dep(name = "rules_python", version = "0.36.0") | ||
|
||
git_override( | ||
module_name = "pico-sdk", | ||
remote = "https://github.com/armandomontanez/pico-sdk.git", | ||
commit = "fd64ca39f58317213033b9e46f19846c0541fc22", | ||
) | ||
|
||
register_toolchains( | ||
"@pico-sdk//bazel/toolchain:linux-x86_64-rp2040", | ||
"@pico-sdk//bazel/toolchain:linux-x86_64-rp2350", | ||
"@pico-sdk//bazel/toolchain:win-x86_64-rp2040", | ||
"@pico-sdk//bazel/toolchain:win-x86_64-rp2350", | ||
"@pico-sdk//bazel/toolchain:mac-x86_64-rp2040", | ||
"@pico-sdk//bazel/toolchain:mac-x86_64-rp2350", | ||
"@pico-sdk//bazel/toolchain:mac-aarch64-rp2040", | ||
"@pico-sdk//bazel/toolchain:mac-aarch64-rp2350", | ||
) | ||
|
||
python = use_extension("@rules_python//python/extensions:python.bzl", "python") | ||
python.toolchain( | ||
configure_coverage_tool = True, | ||
python_version = "3.9", | ||
) | ||
|
||
use_repo(python, "pythons_hub") | ||
register_toolchains( | ||
"@pythons_hub//:all", | ||
dev_dependency = True, | ||
) | ||
register_toolchains( | ||
"@rules_python//python/runtime_env_toolchains:all", | ||
dev_dependency = True, | ||
) | ||
|
||
new_git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") | ||
|
||
# TODO: Provide btstack as a proper Bazel module. | ||
new_git_repository( | ||
name = "btstack", | ||
build_file = "//pico_w/bt:btstack_examples.BUILD", | ||
commit = "2b49e57bd1fae85ac32ac1f41cdb7c794de335f6", # keep-in-sync-with-submodule: lib/btstack | ||
remote = "https://github.com/bluekitchen/btstack.git", | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package(default_visibility = [":__subpackages__"]) | ||
|
||
platform( | ||
name = "test_pico_w", | ||
parents = ["@pico-sdk//bazel/platform:rp2040"], | ||
flags = [ | ||
"--@pico-sdk//bazel/config:PICO_BOARD=pico_w", | ||
"--@pico-sdk//bazel/config:PICO_MULTICORE_ENABLED=False", | ||
], | ||
) | ||
|
||
platform( | ||
name = "test_pico2_w", | ||
parents = ["@pico-sdk//bazel/platform:rp2350"], | ||
flags = [ | ||
"--@pico-sdk//bazel/config:PICO_BOARD=pico2_w", | ||
"--@pico-sdk//bazel/config:PICO_MULTICORE_ENABLED=False", | ||
], | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
package(default_visibility = ["//pico_w/bt:__subpackages__"]) | ||
|
||
cc_library( | ||
name = "lwip_config", | ||
strip_include_prefix = "config", | ||
hdrs = ["config/lwipopts.h"], | ||
) | ||
|
||
cc_library( | ||
name = "btstack_config", | ||
strip_include_prefix = "config", | ||
hdrs = ["config/btstack_config.h"], | ||
) | ||
|
||
cc_library( | ||
name = "freertos_config", | ||
strip_include_prefix = "config", | ||
hdrs = ["config/FreeRTOSConfig.h"], | ||
) | ||
|
||
cc_library( | ||
name = "picow_bt_example_common", | ||
srcs = ["picow_bt_example_common.c"], | ||
strip_include_prefix = ".", | ||
hdrs = ["picow_bt_example_common.h"], | ||
deps = [ | ||
"@pico-sdk//src/rp2_common/pico_btstack", | ||
"@pico-sdk//src/rp2_common/pico_btstack:pico_btstack_sbc_encoder", | ||
"@pico-sdk//src/rp2_common/pico_btstack:pico_btstack_sbc_decoder", | ||
"@pico-sdk//src/rp2_common/pico_btstack:pico_btstack_stdin", | ||
"@pico-sdk//src/rp2_common/pico_cyw43_driver:pico_btstack_cyw43", | ||
"@pico-sdk//src/rp2_common/pico_stdlib", | ||
"@pico-sdk//src/rp2_common/pico_cyw43_arch", | ||
], | ||
) | ||
|
||
cc_library( | ||
name = "picow_bt_example_poll", | ||
srcs = ["picow_bt_example_poll.c"], | ||
deps = [ | ||
":picow_bt_example_common", | ||
"@pico-sdk//src/rp2_common/pico_cyw43_driver:pico_btstack_cyw43", | ||
"@pico-sdk//src/rp2_common/pico_stdlib", | ||
] | ||
) | ||
|
||
cc_library( | ||
name = "picow_bt_example_background", | ||
srcs = ["picow_bt_example_background.c"], | ||
deps = [ | ||
":picow_bt_example_common", | ||
"@pico-sdk//src/rp2_common/pico_cyw43_driver:pico_btstack_cyw43", | ||
"@pico-sdk//src/rp2_common/pico_stdlib", | ||
] | ||
) | ||
|
||
platform( | ||
name = "test_pico_w", | ||
parents = ["//pico_w:test_pico_w"], | ||
flags = [ | ||
"--@pico-sdk//bazel/config:PICO_BTSTACK_CONFIG=//pico_w/bt:btstack_config", | ||
"--@pico-sdk//bazel/config:PICO_BT_ENABLE_BLE=True", | ||
"--@pico-sdk//bazel/config:PICO_BT_ENABLE_CLASSIC=True", | ||
], | ||
) | ||
|
||
platform( | ||
name = "test_pico2_w", | ||
parents = ["//pico_w:test_pico2_w"], | ||
flags = [ | ||
"--@pico-sdk//bazel/config:PICO_BTSTACK_CONFIG=//pico_w/bt:btstack_config", | ||
"--@pico-sdk//bazel/config:PICO_BT_ENABLE_BLE=True", | ||
"--@pico-sdk//bazel/config:PICO_BT_ENABLE_CLASSIC=True", | ||
], | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
extra_defines = [ | ||
"PICO_AUDIO_I2S_DATA_PIN=9", | ||
"PICO_AUDIO_I2S_CLOCK_PIN_BASE=10", | ||
], | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
exports_files( | ||
glob([ | ||
"**/example/*.c", | ||
"**/example/*.gatt", | ||
"**/example/*.h", | ||
]), | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# Needs battery_service.gatt. | ||
# picow_bt_example( | ||
# has_gatt_header = True, | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
# TODO: Needs sco_demo_util.gatt. | ||
# picow_bt_example( | ||
# extra_defines = [ | ||
# "PICO_AUDIO_I2S_DATA_PIN=9", | ||
# "PICO_AUDIO_I2S_CLOCK_PIN_BASE=10", | ||
# ], | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# Needs battery_service.gatt. | ||
# picow_bt_example( | ||
# has_gatt_header = True, | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# Needs battery_service.gatt. | ||
# picow_bt_example( | ||
# has_gatt_header = True, | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# TODO: Slightly more complicated. | ||
# picow_bt_example() |
3 changes: 3 additions & 0 deletions
3
pico_w/bt/le_credit_based_flow_control_mode_client/BUILD.bazel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
5 changes: 5 additions & 0 deletions
5
pico_w/bt/le_credit_based_flow_control_mode_server/BUILD.bazel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example( | ||
has_gatt_header = True, | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# TODO: Needs hxcmod.h? | ||
# picow_bt_example( | ||
# extra_defines = [ | ||
# "PICO_AUDIO_I2S_DATA_PIN=9", | ||
# "PICO_AUDIO_I2S_CLOCK_PIN_BASE=10", | ||
# ], | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# TODO: Needs nordic_spp_service.gatt | ||
# picow_bt_example( | ||
# has_gatt_header = True, | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
# TODO: Needs nordic_spp_service.gatt | ||
# picow_bt_example( | ||
# has_gatt_header = True, | ||
# ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
load("//pico_w/bt:picow_bt_example.bzl", "picow_bt_example") | ||
|
||
picow_bt_example() |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bazel 8.0.0 is out, need to switch to that.