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

15 lines
336 B
Makefile
Raw Normal View History

# 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)'