1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tools/openocd: add generic FTDI adapter

This commit is contained in:
Benjamin Valentin 2022-09-22 17:49:34 +02:00
parent 4737d8148a
commit f80b4557fd

View File

@ -0,0 +1,13 @@
# Select default FTDI debug adapter board
OPENOCD_FTDI_ADAPTER ?= tigard
# FTDI debug adapter interface
OPENOCD_ADAPTER_INIT ?= -c 'source [find interface/ftdi/$(OPENOCD_FTDI_ADAPTER).cfg]'
# default to SWD
OPENOCD_TRANSPORT ?= swd
# Add serial matching command, only if DEBUG_ADAPTER_ID was specified
ifneq (,$(DEBUG_ADAPTER_ID))
OPENOCD_ADAPTER_INIT += -c 'ftdi_serial $(DEBUG_ADAPTER_ID)'
endif