From 9f925bc900d397461adafeff4a43dce6a74f68d0 Mon Sep 17 00:00:00 2001 From: Dima Barsky Date: Fri, 16 Apr 2021 14:23:27 +0100 Subject: Added support for Black Magic Probe (#787) * Added flash-bmp and debug-bmp targets; added .gdb_history to .gitignore * Added the BMP variable, defaults to /dev/ttyBmpGdb The name of the BMP device is different on different systems. On Linux (after installing the recommended udev rules) it'll be /dev/ttyBmpGdb, but the user should be able to override it. * Update rules.mk --- examples/make.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/make.mk') diff --git a/examples/make.mk b/examples/make.mk index e04a2592a..6366d6cef 100644 --- a/examples/make.mk +++ b/examples/make.mk @@ -57,6 +57,7 @@ CROSS_COMPILE ?= arm-none-eabi- CC = $(CROSS_COMPILE)gcc CXX = $(CROSS_COMPILE)g++ +GDB = $(CROSS_COMPILE)gdb OBJCOPY = $(CROSS_COMPILE)objcopy SIZE = $(CROSS_COMPILE)size MKDIR = mkdir -- cgit v1.3.1