-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Wokwi support (VS Code and browser) (#26)
* feat: Add Wokwi VS Code initial support * ci: Add CI tests * feat: Update builder * ci: Add Wokwi.com CI * docs: Add documentation * feat: Fix and enable button-interrupt * feat: Add simulation section for button-interrupt * ci: Only run wokwi simualtions from esp-rs
- Loading branch information
1 parent
b043ca5
commit 1d5ac68
Showing
51 changed files
with
694 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: blinky test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "Hello world!" | ||
- delay: 100ms | ||
- expect-pin: | ||
part-id: esp | ||
pin: 7 | ||
value: 0 | ||
- delay: 550ms | ||
- expect-pin: | ||
part-id: esp | ||
pin: 7 | ||
value: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: button-interrupt test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "Hello world!" | ||
# Press once | ||
- set-control: | ||
part-id: btn1 | ||
control: pressed | ||
value: 0 | ||
- delay: 100ms | ||
- set-control: | ||
part-id: btn1 | ||
control: pressed | ||
value: 1 | ||
- wait-serial: "GPIO interrupt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: button test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "Hello world!" | ||
- delay: 100ms | ||
# Press once | ||
- set-control: | ||
part-id: btn1 | ||
control: pressed | ||
value: 1 | ||
- delay: 50ms | ||
- expect-pin: | ||
part-id: esp | ||
pin: 7 | ||
value: 0 | ||
- set-control: | ||
part-id: btn1 | ||
control: pressed | ||
value: 0 | ||
- delay: 50ms | ||
- expect-pin: | ||
part-id: esp | ||
pin: 7 | ||
value: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: hello-world test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "Hello world!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: http-client test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "Wait to get connected" | ||
- wait-serial: "Wait to get an ip address" | ||
- wait-serial: "Making HTTP request" | ||
- wait-serial: "< Hello fellow Rustaceans! >" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name: panic test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "!! A panic occured in " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: stack-overflow-detection test | ||
version: 1 | ||
author: Sergio Gasquez Arcos | ||
|
||
steps: | ||
- wait-serial: "Safe stack" | ||
- wait-serial: "Possible Stack Overflow Detected" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
--- | ||
name: Wokwi.com CI | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/wokwi_projects.yml' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/wokwi_projects.yml' | ||
schedule: | ||
- cron: "50 7 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
wokwi-check: | ||
name: ${{ matrix.project.name }} | ||
if: github.actor == 'esp-rs' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
project: | ||
# - name: "hello-world" | ||
# id: "382725628217620481" | ||
# path: "intro/hello-world" | ||
- name: blinky | ||
id: "382725482391094273" | ||
path: "intro/blinky" | ||
- name: button | ||
id: "382725583123606529" | ||
path: "intro/button" | ||
- name: button-interrupt | ||
id: "382723722184136705" | ||
path: "intro/button-interrupt" | ||
- name: panic | ||
id: "382726300037178369" | ||
path: "intro/panic" | ||
|
||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download project code | ||
run: | | ||
wget -q -O ${{ matrix.project.name }}.zip https://wokwi.com/api/projects/${{ matrix.project.id }}/zip | ||
unzip ${{ matrix.project.name }}.zip -d ${{ matrix.project.name }} | ||
mkdir -p ${{ matrix.project.name }}/src | ||
rm -rf ${{ matrix.project.path }}/src/*.rs | ||
cp ${{ matrix.project.name }}/*.rs ${{ matrix.project.path }}/src/ | ||
rm -rf ${{ matrix.project.path }}/Cargo.toml | ||
cp ${{ matrix.project.name }}/Cargo.toml ${{ matrix.project.path }}/Cargo.toml | ||
- name: Create wokwi.toml | ||
run: echo -e "[wokwi]\nversion = 1\nfirmware = '${{ matrix.project.name }}/${{ matrix.project.name }}'\nelf = '${{ matrix.project.name }}/${{ matrix.project.name }}'" > ${{ matrix.project.path }}/wokwi.toml | ||
|
||
- name: Update ownership | ||
run: | | ||
sudo chown 1000:1000 -R ${{ matrix.project.path }} | ||
- name: Pull Docker image | ||
run: docker image pull espressif/idf-rust:esp32c3_latest | ||
|
||
- name: Test code example in Docker image | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: espressif/idf-rust:esp32c3_latest | ||
options: -u esp -v ${{ github.workspace }}:/home/esp/workspace | ||
run: | | ||
cd /home/esp/workspace/${{ matrix.project.path }} | ||
export SSID="Wokwi-GUEST" && export PASSWORD="" | ||
/home/esp/.cargo/bin/cargo build --release --out-dir /home/esp/workspace/${{ matrix.project.path }}/${{ matrix.project.name }} -Z unstable-options | ||
rm -rf /home/esp/workspace/${{ matrix.project.path }}/target | ||
- run: cat ${{ matrix.project.path }}/wokwi.toml | ||
|
||
- name: Wokwi CI check | ||
uses: wokwi/wokwi-ci-action@v1 | ||
with: | ||
token: ${{ secrets.WOKWI_CLI_TOKEN }} | ||
path: ${{ matrix.project.path }} | ||
timeout: 30000 | ||
scenario: ${{ github.workspace }}/.github/${{ matrix.project.name }}.test.yaml | ||
fail_text: 'Error' | ||
|
||
- name: Upload source code | ||
if: success() || failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.project.name }}_${{ matrix.project.id }} | ||
path: ${{ matrix.project.path }} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
advanced/stack_overflow_detection/Cargo.lock → advanced/stack-overflow-detection/Cargo.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
advanced/stack_overflow_detection/Cargo.toml → advanced/stack-overflow-detection/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"version": 1, | ||
"author": "Sergio Gasquez Arcos", | ||
"editor": "wokwi", | ||
"parts": [ | ||
{ | ||
"type": "board-esp32-c3-rust-1", | ||
"id": "esp", | ||
"top": -126.57, | ||
"left": 46.35, | ||
"attrs": { | ||
"builder": "rust-nostd-esp" | ||
} | ||
} | ||
], | ||
"connections": [ | ||
[ | ||
"esp:21", | ||
"$serialMonitor:RX", | ||
"", | ||
[] | ||
], | ||
[ | ||
"esp:20", | ||
"$serialMonitor:TX", | ||
"", | ||
[] | ||
] | ||
], | ||
"serialMonitor": { | ||
"display": "auto" | ||
} | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ck_overflow_detection/rust-toolchain.toml → ...ck-overflow-detection/rust-toolchain.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[toolchain] | ||
channel = "nightly-2023-06-25" | ||
channel = "nightly-2023-11-14" | ||
components = ["rust-src"] | ||
targets = ["riscv32imc-unknown-none-elf"] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[wokwi] | ||
version = 1 | ||
# Exercise | ||
# firmware = "target/riscv32imc-unknown-none-elf/release/stack_overflow_detection" | ||
# elf = "target/riscv32imc-unknown-none-elf/release/stack_overflow_detection" | ||
|
||
# Solution | ||
firmware = 'target/riscv32imc-unknown-none-elf/release/examples/stack-overflow-detection' | ||
elf = 'target/riscv32imc-unknown-none-elf/release/examples/stack-overflow-detection' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.