feat: Draft architecture for incp hub

This commit is contained in:
2026-06-26 19:18:52 +01:00
commit 63ea1551ad
150 changed files with 137695 additions and 0 deletions

12
scripts/debug.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env sh
set -e
case "$1" in
server)
openocd -f interface/stlink.cfg -f target/stm32f4x.cfg
;;
gdb)
arm-none-eabi-gdb build/app/freertos-incp-handler-app \
-ex "target remote :3333"
;;
esac