Skip to content

Commit

Permalink
fix paths for dynamic-bridge-app still pointing to bridge-app (#23722)
Browse files Browse the repository at this point in the history
* fix paths for dynamic-bridge-app still pointing to bridge-app

* Restyled by gn

Co-authored-by: Restyled.io <[email protected]>
  • Loading branch information
bndkk and restyled-commits authored Nov 23, 2022
1 parent 33b9046 commit 38e6697
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
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

0 comments on commit 38e6697

Please sign in to comment.