Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
{
"label": "Build nRF5 Lock App",
"type": "shell",
"command": "cd examples/lock-app/nrf5 && make",
"command": "cd apps/lock/nrf5 && make",
"group": "none",
"dependsOn": "Clean Tree",
"problemMatcher": [
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The CHIP repository is structured as follows:
| File / Folder | Contents |
|----|----|
| `.default-version` | Default CHIP version if none is available via source code control tags, `.dist-version`, or `.local-version`.|
| `apps/` | Sample applications and examples |
| `bootstrap` | GNU autotools bootstrap script for the CHIP build system. |
| `bootstrap-configure` | Convenience script that will bootstrap the CHIP build system, via `bootstrap`, and invoke `configure`.|
| `build/` | Build system support content and build output directories |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions examples/lock-app/nrf5/README.md → apps/lock/nrf5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Alternatively, you can run `Build nRF5 Lock App` VSCode task.

* Run make to build the application

$ cd ~/connectedhomeip/examples/lock-app/nrf5
$ cd ~/connectedhomeip/apps/lock/nrf5
$ make clean
$ make

Expand All @@ -169,7 +169,7 @@ should be erased and the Nordic SoftDevice image installed.

* Use the Makefile to erase the flash and program the Nordic SoftDevice image.

$ cd ~/connectedhomeip/examples/lock-app/nrf5
$ cd ~/connectedhomeip/apps/lock/nrf5
$ make erase
$ make flash-softdevice

Expand All @@ -184,7 +184,7 @@ and application again.

To flash the example app, run the following commands:

$ cd ~/connectedhomeip/examples/lock-app/nrf5
$ cd ~/connectedhomeip/apps/lock/nrf5
$ make flash-app

> The [VSCode devcontainer](#using-chips-vscode-devcontainer) cannot communicate
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion integrations/docker/run_build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
# This script assumes it's being run from the ToT

./bootstrap && mkdir -p build/default && (cd build/default && ../../configure --enable-coverage) && make -C build/default "${@:-distcheck}" && git clean -Xdf && (cd examples/lock-app/nrf5 && make)
./bootstrap && mkdir -p build/default && (cd build/default && ../../configure --enable-coverage) && make -C build/default "${@:-distcheck}" && git clean -Xdf && (cd apps/lock/nrf5 && make)