2022-02-25 17:17:44 +01:00
|
|
|
BOARD ?= nucleo-f767zi
|
|
|
|
|
2023-05-05 10:09:15 +02:00
|
|
|
include ../Makefile.pkg_common
|
2020-01-28 18:33:39 +01:00
|
|
|
|
2022-05-25 15:04:32 +02:00
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(3*THREAD_STACKSIZE_DEFAULT\)
|
2020-01-28 18:33:39 +01:00
|
|
|
# Test fails to build for these boards fails due to
|
|
|
|
# redefinition of define AES_COUNT in library, which
|
|
|
|
# is also defined in board header files
|
2020-10-02 20:43:00 +02:00
|
|
|
BOARD_BLACKLIST := stk3200 stk3600 stk3700
|
2020-01-28 18:33:39 +01:00
|
|
|
|
|
|
|
# due to memory constrains we ignore the cert test
|
|
|
|
CFLAGS += -DDO_NOT_TEST_CERT
|
|
|
|
USEPKG += cryptoauthlib
|
|
|
|
USEMODULE += cryptoauthlib_test
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|