Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
652246c
wip: v4 firmware [SKIP CI]
filipton Mar 9, 2026
6e811d1
wip: shared i2c struct with embedded_hal_async [SKIP CI]
filipton Mar 9, 2026
0f904bf
wip: async oled driver [SKIP CI]
filipton Mar 9, 2026
c10ffe7
wip: lcd in own task
filipton Mar 9, 2026
9aee3a6
wip: bq27441 gauage module
filipton Mar 9, 2026
71218d7
wip: ported everything (messy as fuck, everything is to change)
filipton Mar 9, 2026
a2a7060
wip: store oled framebuffer in heap memory
filipton Mar 9, 2026
e3e7b07
wip: v4 feature
filipton Mar 11, 2026
3b6de15
wip: working? v3 feature
filipton Mar 11, 2026
5ffa8e3
fix: ci features flags for clippy
filipton Mar 11, 2026
5165e03
fix: actually fix ci
filipton Mar 11, 2026
0ecda58
wip: test claude generated icons on top bar
filipton Mar 11, 2026
7b45da3
wip: test layout with pixelart generator
filipton Mar 12, 2026
a301323
feat: battery update oled state
filipton Mar 12, 2026
accf678
feat: show status icons on top bar
filipton Mar 12, 2026
102e1e0
wip: implement more oled stuff
filipton Mar 12, 2026
1f80a4f
feat: proper startup screen
filipton Mar 12, 2026
9865d8a
wip: timer scene
filipton Mar 12, 2026
7e2452d
feat: slightly cleanup layouts code
filipton Mar 13, 2026
46d3bdd
feat: implement config menus
filipton Mar 13, 2026
e7649db
feat: implement the rest of oled display code
filipton Mar 13, 2026
b24264a
explore: better deep sleep
filipton Mar 13, 2026
c0d4761
feat: enable rfid soft power down
filipton Mar 15, 2026
7f58dbc
chore: remove avg current battery consumption during sleep
filipton Mar 15, 2026
7811d2b
chore: log parsed saved state
filipton Mar 18, 2026
285a08a
feat: add debug power loss, sleep wakeup's prints
filipton Mar 19, 2026
b482b33
feat: text wrap
filipton Mar 19, 2026
b8e30cf
feat: better scollable config menus
filipton Mar 19, 2026
2a8d6f7
fix: delegate call translation
filipton Mar 19, 2026
6ed38f8
fix: sleep timer reset when battery percentage changes
filipton Mar 19, 2026
266906b
chore: update release script for v3 and v4
filipton Mar 20, 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
8 changes: 6 additions & 2 deletions .github/workflows/rust_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@ jobs:
matrix:
action:
- command: build
args: --no-default-features --target=riscv32imc-unknown-none-elf --release
args: --no-default-features --features v3 --target=riscv32imc-unknown-none-elf --release
- command: build
args: --no-default-features --features v4 --target=riscv32imc-unknown-none-elf --release
- command: fmt
args: --all -- --check --color always
- command: clippy
args: --no-default-features --target=riscv32imc-unknown-none-elf --workspace -- -D warnings
args: --no-default-features --features v3 --target=riscv32imc-unknown-none-elf --workspace -- -D warnings
- command: clippy
args: --no-default-features --features v4 --target=riscv32imc-unknown-none-elf --workspace -- -D warnings
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
Loading
Loading