-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Save name to LittleFS when loaded from SD
- Loading branch information
1 parent
82411ae
commit a70f41c
Showing
2 changed files
with
15 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,28 +40,38 @@ jobs: | |
uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: "true" | ||
cache-all-crates: "true" | ||
workspaces: "xtensa-esp32-espidf" | ||
# - name: Install erdtree | ||
# run: cargo binstall erdtree --version 3.1.2 --target x86_64-unknown-linux-gnu --no-confirm --force | ||
# continue-on-error: true | ||
# - name: Run erdtree | ||
# run: erd && erd target | ||
# - name: Patch idf-svc | ||
# run: cargo run --manifest-path ./cargo-patch-crate-fork/Cargo.toml --target x86_64-unknown-linux-gnu | ||
- name: Run command | ||
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} | ||
# - name: Install Linux Dependencies | ||
# run: sudo apt-get update && sudo apt-get install -y libudev-dev | ||
# continue-on-error: true | ||
- name: Setup Linux Rust toolchain and cache | ||
uses: actions-rust-lang/[email protected] | ||
continue-on-error: true | ||
# - name: Convert ELF to .bin | ||
# run: | | ||
# cargo install espflash --version 3.2.0 --target x86_64-unknown-linux-gnu | ||
# ~/.cargo/bin/espflash save-image --chip esp32 target/xtensa-esp32-espidf/release/mff-hr-v1 target/xtensa-esp32-espidf/release/app.bin | ||
# ~/.cargo/bin/espflash partition-table partitions.csv --to-binary -o target/xtensa-esp32-espidf/release/partitions-0x8000.bin | ||
# continue-on-error: true | ||
- name: Setup Linux Rust toolchain and cache | ||
uses: actions-rust-lang/[email protected] | ||
continue-on-error: true | ||
- name: Install Cargo Binstall | ||
uses: cargo-bins/cargo-binstall@main | ||
continue-on-error: true | ||
- name: Install espflash | ||
run: cargo binstall espflash --version 3.2.0 --target x86_64-unknown-linux-gnu --no-confirm --force | ||
continue-on-error: true | ||
- name: Build Release Binary | ||
run: espflash save-image --chip esp32 --flash-size 4mb --partition-table partitions.csv --merge target/xtensa-esp32-espidf/release/mff-hr-v1 target/xtensa-esp32-espidf/release/out.bin | ||
run: espflash save-image --chip esp32 --flash-size 4mb --partition-table partitions.csv --merge --skip-padding target/xtensa-esp32-espidf/release/mff-hr-v1 target/xtensa-esp32-espidf/release/out.bin | ||
continue-on-error: true | ||
- name: Archive Release artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
|
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