Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8edd479
Refactor logic from serve.rs connection_loop to handle.rs
brainstorm Mar 21, 2026
90c6498
Cargo.lock noise
brainstorm Mar 28, 2026
6b917d0
Ota traits, packer and storage renaming
brainstorm Mar 28, 2026
cedf1d6
HAL generic traits, those are the most generic traits for MCUs in gen…
brainstorm Mar 28, 2026
8133f55
Cleanup unused bits of code...
brainstorm Mar 28, 2026
f81b738
Espressif-specific HAL bits...
brainstorm Mar 28, 2026
3749715
SSH-Stamp application-specific bits
brainstorm Mar 28, 2026
e8ad599
General architecture document for this refactor, following Matklad's …
brainstorm Mar 28, 2026
07e4dc4
Add Rustdocs to public hal methods, use async traits...
brainstorm Mar 28, 2026
3d6c41c
Broken UART, need to fix and verify on-device.
brainstorm Mar 28, 2026
c48bbe9
Cargo lock
brainstorm Mar 28, 2026
2476e44
fmt
brainstorm Mar 28, 2026
9349c38
Try to keep clippy happy and fix the chip definitions issue...
brainstorm Mar 28, 2026
6a33a85
Try to appease clippy ...
brainstorm Mar 28, 2026
456748a
Fix several rebase/merge issues
brainstorm Apr 9, 2026
3cb8fd3
Addressing bad merge, removing ExecutorHal abstractions (since embass…
brainstorm Apr 18, 2026
a12af37
Big rename, following patterns and conventions from embedded-hal and/…
brainstorm Apr 18, 2026
1f1f952
Switch cargo edition to 2024 and fmt
brainstorm Apr 18, 2026
9517c14
Fix stray bad merge on OTA side
brainstorm Apr 18, 2026
f067659
[ci skip] Update ARCHITECTURE.md document with latest rename (based o…
brainstorm Apr 18, 2026
1df9a4f
Fix a bunch of ugly imports
brainstorm Apr 19, 2026
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
6 changes: 3 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ run-esp32s3 = "run --release --target xtensa-esp32s3-none-elf --no-default-featu
# Test alias
test-ota = "test --package ota --target x86_64-unknown-linux-gnu"

# ota-packer aliases
build-ota-packer = "build --package ota --bin ota-packer --target x86_64-unknown-linux-gnu"
ota-packer = "run --package ota --bin ota-packer --target x86_64-unknown-linux-gnu"
# ota packer aliases
build-packer = "build --package ota --bin packer --target x86_64-unknown-linux-gnu"
packer = "run --package ota --bin packer --target x86_64-unknown-linux-gnu"

[target.xtensa-esp32-none-elf] # ESP32
runner = "espflash flash --baud=921600 --monitor --chip esp32"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
#cargo +${{ matrix.device.toolchain }} clippy --release --features ${{ matrix.device.soc }} --target riscv32imac-unknown-none-elf -- -D warnings
cargo +${{ matrix.device.toolchain }} clippy --release --features ${{ matrix.device.soc }} --target riscv32imac-unknown-none-elf -- -W clippy::mem_forget -W clippy::await_holding_lock -W clippy::large_futures -W clippy::pedantic -D warnings
cargo +${{ matrix.device.toolchain }} fmt -- --check
ota-packer:
packer:
name: OTA Packer
runs-on: ubuntu-latest
strategy:
Expand All @@ -69,4 +69,4 @@ jobs:
target: riscv32imac-unknown-none-elf
toolchain: stable
- name: Build utility
run: cargo build-ota-packer
run: cargo build-packer
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

jobs:
ota-packer:
packer:
name: OTA tests
runs-on: ubuntu-latest
strategy:
Expand Down
101 changes: 61 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading