mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
4a9f0efb6d
Add ATmega328P Xplained Mini board. The board is an official development kit from MCHP based on the Arduino UNO, reduced hardware, with a xplainedmini debugger and CDC ACM serial converter. Signed-off-by: Gerson Fernando Budke <nandojve@gmail.com>
43 lines
1.5 KiB
Makefile
43 lines
1.5 KiB
Makefile
include ../Makefile.tests_common
|
|
|
|
# The following boards are known to fail or have not been tested.
|
|
BOARD_BLACKLIST := arduino-duemilanove \
|
|
arduino-leonardo \
|
|
arduino-mega2560 \
|
|
arduino-nano \
|
|
arduino-uno \
|
|
atmega256rfr2-xpro \
|
|
atmega328p \
|
|
atmega328p-xplained-mini \
|
|
derfmega128 \
|
|
derfmega256 \
|
|
f4vi1 \
|
|
hifive1 \
|
|
hifive1b \
|
|
mega-xplained \
|
|
microduino-corerf \
|
|
msb-430 \
|
|
msb-430h \
|
|
msbiot \
|
|
redbee-econotag \
|
|
stm32f0discovery \
|
|
stm32f3discovery \
|
|
telosb \
|
|
waspmote-pro \
|
|
z1 \
|
|
#
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(5*THREAD_STACKSIZE_DEFAULT\)
|
|
|
|
USEPKG += relic
|
|
USEMODULE += embunit
|
|
|
|
# -DWORD=32 : Specifies the word width of the target system. This is
|
|
# currently not automatically detected so adjusted to your target
|
|
# platform.
|
|
|
|
# The rest of the parameters are configuration parameters for RELIC described in its documentation.
|
|
export RELIC_CONFIG_FLAGS=-DARCH=NONE -DOPSYS=NONE -DQUIET=off -DWORD=32 -DFP_PRIME=255 -DWITH="BN;MD;DV;FP;EP;CP;BC;EC" -DSEED=RIOTRND
|
|
|
|
include $(RIOTBASE)/Makefile.include
|