Skip to content
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

fix paths for dynamic-bridge-app still pointing to bridge-app #23722

Merged
merged 2 commits into from
Nov 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/dynamic-bridge-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ if (chip_enable_pw_rpc) {
assert(chip_build_tools)

chip_codegen("chip-bridge-codegen") {
input = "${chip_root}/examples/bridge-app/bridge-common/bridge-app.matter"
input =
"${chip_root}/examples/dynamic-bridge-app/bridge-common/bridge-app.matter"
generator = "bridge"

outputs = [
Expand Down
8 changes: 4 additions & 4 deletions examples/dynamic-bridge-app/linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ value/label pair `"room"`/`[light name]`.
- Build the example application:

```
$ cd ~/connectedhomeip/examples/bridge-app/linux
$ cd ~/connectedhomeip/examples/dynamic-bridge-app/linux
$ git submodule update --init
$ source third_party/connectedhomeip/scripts/activate.sh
$ gn gen out/debug
Expand All @@ -129,7 +129,7 @@ value/label pair `"room"`/`[light name]`.
- To delete generated executable, libraries and object files use:

```
$ cd ~/connectedhomeip/examples/bridge-app/linux
$ cd ~/connectedhomeip/examples/dynamic-bridge-app/linux
$ rm -rf out/
```

Expand Down Expand Up @@ -175,8 +175,8 @@ value/label pair `"room"`/`[light name]`.
- Run Linux Bridge Example App

```
$ cd ~/connectedhomeip/examples/bridge-app/linux
$ sudo out/debug/chip-bridge-app --ble-device [bluetooth device number]
$ cd ~/connectedhomeip/examples/dynamic-bridge-app/linux
$ sudo out/debug/dynamic-chip-bridge-app --ble-device [bluetooth device number]
# In this example, the device we want to use is hci1
$ sudo out/debug/chip-bridge-app --ble-device 1
```
Expand Down