Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build firmware
working-directory: example-application
run: |
west build -b custom_plank -s app
west build -b custom_plank app

- name: Archive firmware
uses: actions/upload-artifact@v2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ west update
The application can be built by running:

```shell
west build -b $BOARD -s app
west build -b $BOARD app
```

where `$BOARD` is the target board. The `custom_plank` board found in this
Expand All @@ -57,7 +57,7 @@ appropriate overlay is provided (see `app/boards`).
A sample debug configuration is also provided. You can apply it by running:

```shell
west build -b $BOARD -s app -- -DOVERLAY_CONFIG=debug.conf
west build -b $BOARD app -- -DOVERLAY_CONFIG=debug.conf
```

Note that you may also use it together with `rtt.conf` if using Segger RTT. Once
Expand Down