From 68fa58fb45b841aef66770e0c7f23b934ef24033 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Sat, 20 Feb 2021 00:41:53 +0100 Subject: [PATCH] examples/gnrc_networking_mac: whitelist ATmega256RFR2 based boards The example now works successfully on these AVR based boards. --- examples/gnrc_networking_mac/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/gnrc_networking_mac/Makefile b/examples/gnrc_networking_mac/Makefile index 0a380dc843..2e1bed4b04 100644 --- a/examples/gnrc_networking_mac/Makefile +++ b/examples/gnrc_networking_mac/Makefile @@ -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)/../..