mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-30 08:51:19 +01:00
When running
make RIOT_USE_PYCORTEXMDEBUG=1 debug
RIOT will now fetch PyCortexMDebug and instruct GDB to load that
extension on start. If additionally RIOT provides `SVD_VENDOR` and
`SVD_MODEL` to identify the SVD file to load, an
`svd_load $(SVD_VENDOR) $(SVD_CLIENT)` is also passed to GDB.
Co-authored-by: crasbe <crasbe@gmail.com>
Co-authored-by: Ann🐸 <git@annsann.eu>
17 lines
431 B
Makefile
17 lines
431 B
Makefile
PKG_NAME = PyCortexMDebug
|
|
PKG_URL = https://github.com/bnahill/PyCortexMDebug
|
|
PKG_VERSION = ce371500500a9168729f04b9dcad5f84440deadd
|
|
PKG_LICENSE = GPL-3.0-only
|
|
|
|
# manually set some RIOT env vars, so this Makefile can be called stand-alone
|
|
RIOTBASE ?= $(CURDIR)/../../..
|
|
RIOTTOOLS ?= $(CURDIR)/..
|
|
|
|
PKG_SOURCE_DIR = $(CURDIR)/checkout
|
|
PKG_BUILD_OUT_OF_SOURCE := 0
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
.PHONY: all
|
|
all: prepare
|