From 5216899218bafb40240cb0a1fed2ad83da61dd6e Mon Sep 17 00:00:00 2001 From: Torben Petersen <petersen@ibr.cs.tu-bs.de> Date: Fri, 23 Jul 2021 16:34:05 +0200 Subject: [PATCH] avr-rss2 is now build with newer RIOT --- software/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/software/Makefile b/software/Makefile index 35b4149..0b1f790 100644 --- a/software/Makefile +++ b/software/Makefile @@ -7,8 +7,12 @@ ifeq ($(BOARD), ibr-node) RIOTBASE ?= ../../ibrRiot-Copy/ CFLAGS += -DGNRC_PKTBUF_SIZE=1024 -else +else ifeq ($(BOARD), avr-rss2) +RIOTBASE ?= ../../ibrRiot-Copy/ +CFLAGS += -DGNRC_PKTBUF_SIZE=512 + +else RIOTBASE ?= ../../RIOT/ CFLAGS += -DGNRC_PKTBUF_SIZE=512 -- GitLab