Skip to content

Commit

Permalink
Improve format in the README file by removing excessive indentation (#…
Browse files Browse the repository at this point in the history
…27594)

* Improve format in the README file by removing excessive indentation

* Remove $ prefixes and add language to the markdown code block
  • Loading branch information
MonicaisHer authored and pull[bot] committed Aug 31, 2023
1 parent 03fca59 commit 3698127
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions examples/bridge-app/linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,26 +108,26 @@ is simulated with the value/label pair `"room"`/`[light name]`.

- Install tool chain

```
$ sudo apt-get install git gcc g++ python pkg-config libssl-dev libdbus-1-dev libglib2.0-dev ninja-build python3-venv python3-dev unzip
```
```sh
sudo apt-get install git gcc g++ python pkg-config libssl-dev libdbus-1-dev libglib2.0-dev ninja-build python3-venv python3-dev unzip
```

- Build the example application:

```
$ cd ~/connectedhomeip/examples/bridge-app/linux
$ git submodule update --init
$ source third_party/connectedhomeip/scripts/activate.sh
$ gn gen out/debug
$ ninja -C out/debug
```
```sh
cd ~/connectedhomeip/examples/bridge-app/linux
git submodule update --init
source third_party/connectedhomeip/scripts/activate.sh
gn gen out/debug
ninja -C out/debug
```

- To delete generated executable, libraries and object files use:

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

## Running the Complete Example on Raspberry Pi 4

Expand All @@ -151,29 +151,29 @@ is simulated with the value/label pair `"room"`/`[light name]`.
number after `hci` is the bluetooth device number, `1` in this
example.

```
$ hciconfig
hci1: Type: Primary Bus: USB
BD Address: 00:1A:7D:AA:BB:CC ACL MTU: 310:10 SCO MTU: 64:8
UP RUNNING PSCAN ISCAN
RX bytes:20942 acl:1023 sco:0 events:1140 errors:0
TX bytes:16559 acl:1011 sco:0 commands:121 errors:0

hci0: Type: Primary Bus: UART
BD Address: B8:27:EB:AA:BB:CC ACL MTU: 1021:8 SCO MTU: 64:1
UP RUNNING PSCAN ISCAN
RX bytes:8609495 acl:14 sco:0 events:217484 errors:0
TX bytes:92185 acl:20 sco:0 commands:5259 errors:0
```
```sh
$ hciconfig
hci1: Type: Primary Bus: USB
BD Address: 00:1A:7D:AA:BB:CC ACL MTU: 310:10 SCO MTU: 64:8
UP RUNNING PSCAN ISCAN
RX bytes:20942 acl:1023 sco:0 events:1140 errors:0
TX bytes:16559 acl:1011 sco:0 commands:121 errors:0

hci0: Type: Primary Bus: UART
BD Address: B8:27:EB:AA:BB:CC ACL MTU: 1021:8 SCO MTU: 64:1
UP RUNNING PSCAN ISCAN
RX bytes:8609495 acl:14 sco:0 events:217484 errors:0
TX bytes:92185 acl:20 sco:0 commands:5259 errors:0
```

- Run Linux Bridge Example App

```
$ cd ~/connectedhomeip/examples/bridge-app/linux
$ sudo out/debug/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
```
```sh
cd ~/connectedhomeip/examples/bridge-app/linux
sudo out/debug/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
```

- Test the device using ChipDeviceController on your laptop /
workstation etc.

0 comments on commit 3698127

Please sign in to comment.