1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/sys_fido2_ctap: enable usbus in Makefile

There are boards that select the STDIO backend used depending on whether `usbus` is enabled. Usually the `fido2_ctap_transport_hid` module pulls in `usbus_hid` and thus `usbus`, but since this dependency resolution is done after reading the `Makefile.dep` of the board, it may happen that the wrong STDIO backend is selected. Therefore `usbus` is selected directly in the `Makefile`.
This commit is contained in:
Gunar Schorcht 2023-02-08 11:55:43 +01:00
parent f341ad6c9c
commit 8512db60a6

View File

@ -4,6 +4,7 @@ BOARD ?= nrf52840dk
include ../Makefile.tests_common
USEMODULE += fido2_ctap_transport_hid
USEMODULE += usbus
USEPKG += fido2_tests
USB_VID ?= $(USB_VID_TESTING)