Skip to content
Open
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
2cd9cdb
Rename AimFlashTable to AimFlashStorage: littlefs-backed FS, config s…
tristanalderson Jun 10, 2026
9ec84f5
AimFlashStorage 0.2.0: recorder closeLog/isLogging, tri-state config …
tristanalderson Jun 10, 2026
1a9b293
AimFlashStorage: fix flash-dump protocol wedges (device + extract_tool)
tristanalderson Jun 10, 2026
1d5ee1b
AimFlashStorage: own the logger mute during dumps; name protocol bytes
tristanalderson Jun 10, 2026
170ab3a
removed legacy varaibles
tristanalderson Jun 10, 2026
c22e945
Merge pull request #8 from Queens-Rocket-Engineering-Team/clean/aim_n…
tristanalderson Jun 10, 2026
6888fbb
AimFileSystem: drop dead streamFile() and getConfig() API
tristanalderson Jun 10, 2026
20522fa
AimNetwork: add AimTxPolicy transmit scheduling layer
tristanalderson Jun 11, 2026
f4b05a7
AimFlashStorage: tighten flight recorder behavior
tristanalderson Jun 11, 2026
e3edde5
AimFlashStorage: add shared node config service
tristanalderson Jun 11, 2026
2f47094
AimNetwork: clean up CAN driver and network internals
tristanalderson Jun 11, 2026
c8d36fc
AimNetwork: remove unused transmit policy scheduler
tristanalderson Jun 11, 2026
bc71c4e
Merge pull request #9 from Queens-Rocket-Engineering-Team/clean/aim_n…
tristanalderson Jun 11, 2026
c12d709
updates to extract tool from simplifying console app (Upper_Control c…
tristanalderson Jun 11, 2026
b0acca6
av-libraries simplification pass: fix aim_safety, repair examples, co…
tristanalderson Jun 11, 2026
26f522d
av-libraries: naming convention cleanup (crystalline-exploring-pebble…
tristanalderson Jun 11, 2026
c6d7aab
Merge pull request #10 from Queens-Rocket-Engineering-Team/clean/simp…
tristanalderson Jun 11, 2026
acb4d27
AimNetwork: add v0.6.x message catalog and protocol draft
tristanalderson Jun 12, 2026
ba0bb88
refactor(aim_logger): snake_case layout + esp32/stm32 examples
tristanalderson Jun 13, 2026
4aa4b0e
feat(aim_network): migrate to AIM Network v0.6.x 29-bit protocol
tristanalderson Jun 13, 2026
0e717cf
feat(aim_flash_storage): shared console, SpiNorFlashDriver, examples
tristanalderson Jun 13, 2026
bb0cd6c
docs: snake_case lib names + content-based addressing note
tristanalderson Jun 13, 2026
f677d84
refactor(aim_flash_storage): rename console API + extract geometry/RD…
tristanalderson Jun 14, 2026
ecde9d1
refactor(catalog): remove LowPower from NodeState, map Fault to 3
tristanalderson Jun 14, 2026
85cd70a
aim_network: bump wire schema to v2 (subject catalog remap + power FETs)
tristanalderson Jun 15, 2026
d7eabc2
aim_network: refresh README and example platformio configs
tristanalderson Jun 15, 2026
d0d1dc1
aim_network: pass nowMs into service() for heartbeat timing
tristanalderson Jun 18, 2026
d95c32b
aim_logger: serialize output with a thread-safe mutex
tristanalderson Jun 18, 2026
72e5940
aim_network: CAN core hardening — ISR-driven STM32 TX/RX, ESP32 bus-o…
tristanalderson Jun 21, 2026
bc70457
Consolidate control/sensor libraries under aim_network and simplify p…
tristanalderson Jul 4, 2026
2653c11
Simplify protocol valve and sensor catalog naming to be generic
tristanalderson Jul 4, 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: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*.pio
*.tmp

# extract_tool output (timestamped telemetry dumps)
aim_flash_storage/extract_tool/*.csv

#vscode config
*.vscode
*.vscode__pycache__/
*.pyc
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "aim_flash_storage/src/littlefs"]
path = aim_flash_storage/src/littlefs
url = git@github.com:tristanalderson/littlefs.git
branch = v2.11
34 changes: 0 additions & 34 deletions AimFlashTable/extract_tool/byteTools.py

This file was deleted.

Loading