mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-27 15:31:17 +01:00
25 lines
436 B
Makefile
25 lines
436 B
Makefile
BOARD ?= native
|
|
|
|
include ../Makefile.sys_common
|
|
|
|
BOARD_WHITELIST = \
|
|
native \
|
|
nrf52840dk \
|
|
nrf52840dongle
|
|
|
|
# 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
|