2018-10-18 09:19:43 +02:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
# The following boards are known to fail or have not been tested.
|
|
|
|
BOARD_BLACKLIST := arduino-duemilanove \
|
2019-05-24 17:33:15 +02:00
|
|
|
arduino-leonardo \
|
2018-10-18 09:19:43 +02:00
|
|
|
arduino-mega2560 \
|
2019-03-14 13:07:51 +01:00
|
|
|
arduino-nano \
|
2018-10-18 09:19:43 +02:00
|
|
|
arduino-uno \
|
2019-11-04 21:44:19 +01:00
|
|
|
atmega256rfr2-xpro \
|
2019-10-18 13:56:53 +02:00
|
|
|
atmega328p \
|
2021-01-02 02:55:39 +01:00
|
|
|
atmega328p-xplained-mini \
|
2019-11-24 19:44:44 +01:00
|
|
|
derfmega128 \
|
|
|
|
derfmega256 \
|
2018-10-18 09:19:43 +02:00
|
|
|
f4vi1 \
|
2019-02-21 14:24:55 +01:00
|
|
|
hifive1 \
|
2019-06-25 19:17:36 +02:00
|
|
|
hifive1b \
|
2018-10-18 09:19:43 +02:00
|
|
|
mega-xplained \
|
2019-10-17 19:20:24 +02:00
|
|
|
microduino-corerf \
|
2018-10-18 09:19:43 +02:00
|
|
|
msb-430 \
|
|
|
|
msb-430h \
|
|
|
|
msbiot \
|
|
|
|
redbee-econotag \
|
|
|
|
stm32f0discovery \
|
|
|
|
stm32f3discovery \
|
|
|
|
telosb \
|
|
|
|
waspmote-pro \
|
|
|
|
z1 \
|
|
|
|
#
|
|
|
|
|
2022-01-18 13:19:34 +01:00
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(6*THREAD_STACKSIZE_DEFAULT\)
|
2018-10-18 09:19:43 +02:00
|
|
|
|
|
|
|
USEPKG += relic
|
|
|
|
USEMODULE += embunit
|
|
|
|
|
2021-11-08 23:19:11 +01:00
|
|
|
# -DWSIZE=32 : Specifies the word width of the target system. This is
|
2018-10-18 09:19:43 +02:00
|
|
|
# currently not automatically detected so adjusted to your target
|
|
|
|
# platform.
|
|
|
|
|
|
|
|
# The rest of the parameters are configuration parameters for RELIC described in its documentation.
|
2021-11-08 23:19:11 +01:00
|
|
|
export RELIC_CONFIG_FLAGS=-DARCH=NONE -DOPSYS=NONE -DQUIET=off -DWSIZE=32 -DFP_PRIME=255 -DWITH="BN;MD;DV;FP;EP;CP;BC;EC" -DSEED=RIOTRND
|
2018-10-18 09:19:43 +02:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|