1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00
2025-03-25 18:42:48 +01:00

26 lines
463 B
Makefile

BOARD ?= native
include ../Makefile.sys_common
BOARD_WHITELIST = \
native \
nrf52840dk \
nrf52840dongle \
feather-nrf52840-sense
# same as CTAP_STACKSIZE
CFLAGS += -DTHREAD_STACKSIZE_MAIN=15000
# Add unittest framework
USEMODULE += embunit
USEMODULE += fido2_ctap
# Disable user presence tests
CFLAGS += -DCONFIG_FIDO2_CTAP_DISABLE_UP=1
# Disable user LED animation
CFLAGS += -DCONFIG_FIDO2_CTAP_DISABLE_LED=1
include $(RIOTBASE)/Makefile.include