Import of the watch repository from Pebble

This commit is contained in:
Matthieu Jeanson 2024-12-12 16:43:03 -08:00 committed by Katharine Berry
commit 3b92768480
10334 changed files with 2564465 additions and 0 deletions

11
platform/snowy/boot/gdb Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
TARGET="target extended-remote | openocd -f openocd.cfg \
-c \"gdb_port pipe; log_output openocd.log; init; reset halt;\""
arm-none-eabi-gdb build/snowy_boot.elf \
-ex "${TARGET}" \
-ex "break boot_main" \
-ex "continue"
# vim:filetype=sh