1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/dbgpin/Makefile
2022-02-28 21:59:57 +01:00

25 lines
492 B
Makefile

BOARD ?= nucleo-f767zi
include ../Makefile.tests_common
USEMODULE += dbgpin
USEMODULE += xtimer
# Default port used is PORT 1
# - frdm-64f port A0-4 are connected to the JTAG, setting GPIO(0,0) will
# cause flashing to fail
BOARDS_DEBUG_PORT_1 = \
frdm-k64f \
#
ifneq (,$(filter $(BOARD),$(BOARDS_DEBUG_PORT_1)))
TEST_PORT ?= 1
else
TEST_PORT ?= 0
endif
DBGPIN_PINS ?= GPIO_PIN($(TEST_PORT),0)
CFLAGS += -DDBGPIN_PINS="$(DBGPIN_PINS)"
include $(RIOTBASE)/Makefile.include