chore: Initial commit (blinky)

This commit is contained in:
2026-03-04 19:04:30 +00:00
commit 4af6192b34
132 changed files with 146774 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/incp-tester-app \
-ex "target remote :3333"
;;
esac