1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/makefiles/tools/openocd-adapters/buspirate.inc.mk
Benjamin Valentin 1a04425d7b makefiles/buspirate: add Bus Pirate as Debug Adapter
Flash with PROGRAMMER=openocd DEBUG_ADAPTER=buspirate
2020-08-03 14:10:42 +02:00

15 lines
336 B
Makefile

# Bus Pirate debug adapter
#
# For SWD mode connect:
# MOSI - SWDIO
# CLK - SWCLK
ifeq ($(OS),Darwin)
PROG_DEV ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
else
PROG_DEV ?= /dev/ttyUSB0
endif
OPENOCD_ADAPTER_INIT ?= -c 'source [find interface/buspirate.cfg]' \
-c 'buspirate_port $(PROG_DEV)'