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

examples/gnrc_networking_mac: whitelist ATmega256RFR2 based boards

The example now works successfully on these AVR based boards.
This commit is contained in:
Benjamin Valentin 2021-02-20 00:41:53 +01:00
parent 7c1cb66fe2
commit 68fa58fb45

View File

@ -4,12 +4,13 @@ APPLICATION = gnrc_networking_mac
# If no BOARD is found in the environment, use this default:
BOARD ?= samr21-xpro
# Currently, GoMacH has only been tested and evaluated through on samr21-xpro and iotlab-m3.
# Currently, GoMacH has only been tested and evaluated through on samr21-xpro, iotlab-m3 and
# derfmega256 (at86rf2xx based radios).
# Once GoMacH has also been tested through on other boards, the whitelist should be
# then accordingly extended.
# Notably, for LWMAC, we have only evaluated it on samr21-xpro nodes. To this end, if
# you are going to include LWMAC for testing, you should only run the example on samr21-xpro.
BOARD_WHITELIST := samr21-xpro iotlab-m3
BOARD_WHITELIST := samr21-xpro iotlab-m3 avr-rss2 atmega256rfr2-xpro derfmega256
# This has to be the absolute path to the RIOT base directory:
RIOTBASE ?= $(CURDIR)/../..