aboutsummaryrefslogtreecommitdiffstats
path: root/ChibiOS_16.1.5/community/os/various/gdb.mk
diff options
context:
space:
mode:
Diffstat (limited to 'ChibiOS_16.1.5/community/os/various/gdb.mk')
-rw-r--r--ChibiOS_16.1.5/community/os/various/gdb.mk13
1 files changed, 0 insertions, 13 deletions
diff --git a/ChibiOS_16.1.5/community/os/various/gdb.mk b/ChibiOS_16.1.5/community/os/various/gdb.mk
deleted file mode 100644
index aa636a8..0000000
--- a/ChibiOS_16.1.5/community/os/various/gdb.mk
+++ /dev/null
@@ -1,13 +0,0 @@
-GDB ?= arm-none-eabi-gdb
-GDB_PROGRAM ?= $(BUILDDIR)/$(PROJECT).elf
-GDB_PORT ?= 2331
-GDB_START_ADDRESS ?= 0
-GDB_BREAK ?= main
-
-gdb-debug:
- printf "target remote localhost:$(GDB_PORT)\nmem $(GDB_START_ADDRESS) 0\nbreak $(GDB_BREAK)\nload\nmon reset\ncontinue" > .gdbinit
- $(GDB) --command=.gdbinit $(GDB_PROGRAM)
-
-
-
-.PHONY: gdb-debug