mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
23 lines
523 B
Makefile
23 lines
523 B
Makefile
BOARD ?= nucleo-l476rg
|
|
include ../Makefile.tests_common
|
|
|
|
USEPKG += cmsis-nn
|
|
|
|
BLOBS += input
|
|
|
|
# Boards that were tested and are known to work
|
|
# This package only works with Cortex M3, M4 and M7 CPUs but there's no easy
|
|
# way provided by the build system to filter them at that level (arch_cortexm is
|
|
# the only feature available) for the moment.
|
|
BOARD_WHITELIST := \
|
|
b-l475e-iot01a \
|
|
iotlab-m3 \
|
|
nrf52832-mdk \
|
|
nrf52dk \
|
|
nucleo-l476rg \
|
|
same54-xpro \
|
|
stm32f723e-disco
|
|
#
|
|
|
|
include $(RIOTBASE)/Makefile.include
|