From 3e8c63cc09403b8f59309cacbe40ed9d5c535329 Mon Sep 17 00:00:00 2001 From: joxe Date: Mon, 7 Sep 2009 12:05:12 +0000 Subject: [PATCH] added radio-makefile for avr + rf230 platforms --- cpu/avr/radio/Makefile.radio | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cpu/avr/radio/Makefile.radio diff --git a/cpu/avr/radio/Makefile.radio b/cpu/avr/radio/Makefile.radio new file mode 100644 index 000000000..cfffe1f22 --- /dev/null +++ b/cpu/avr/radio/Makefile.radio @@ -0,0 +1,16 @@ +### The RF230 "bare bones" driver uses the core MAC layer. +### It does NOT work with the Jackdaw USB stick. +### Define RF230BB in the base makefile, or use $make RF230BB=1 ... +ifeq ($(RF230BB),1) +#ifdef RF230BB + CFLAGS += -DRF230BB + #Source for AT86RF230 barebones driver using the contiki core MAC + include $(CONTIKI)/cpu/avr/radio/rf230bb/Makefile.rf230bb +else + # Source for AT86RF230 + include $(CONTIKI)/cpu/avr/radio/rf230/Makefile.rf230 + #Source for Atmel/Cisco 802.15.4'ish MAC + include $(CONTIKI)/cpu/avr/radio/mac/Makefile.mac + #Source for IEEE 802.15.4 manager interface + include $(CONTIKI)/cpu/avr/radio/ieee-manager/Makefile.ieee-manager +endif