Added basic firmware and client support for the zigduino/atmel128rfa1. It can now...
[goodfet] / firmware / config.mk
index f001b48..8dc93fe 100644 (file)
@@ -150,10 +150,11 @@ endif
 ifneq (,$(findstring $(board),zigduino))
 GCC := avr-gcc
 CC := avr-gcc
-mcu ?= atmega1284p
-platform = donbfet
+mcu ?= atmega128rfa1
+platform = zigduino
 CFLAGS=$(DEBUG) -Iinclude -mmcu=$(mcu) -W -Os -mcall-prologues -Wall -Wextra -Wuninitialized -fpack-struct -fshort-enums -funsigned-bitfields
-config := monitor #avr spi
+config := monitor atmel_radio #avr spi
+AVR_PLATFORM := m128rfa1
 endif
 
 
@@ -180,7 +181,7 @@ $(error Please define board, as explained in the README)
 endif
 #platform := $(board)
 
-AVAILABLE_APPS = monitor spi jtag sbw jtag430 jtag430x2 i2c jtagarm7 ejtag jtagxscale openocd chipcon avr pic adc nrf ccspi glitch smartcard ps2 slc2  maxusb
+AVAILABLE_APPS = monitor spi jtag sbw jtag430 jtag430x2 i2c jtagarm7 ejtag jtagxscale openocd chipcon avr pic adc nrf ccspi glitch smartcard ps2 slc2  maxusb atmel_radio
 
 # defaults
 CONFIG_monitor    ?= y
@@ -205,6 +206,7 @@ CONFIG_glitch     ?= n
 CONFIG_smartcard  ?= n
 CONFIG_ps2        ?= n
 CONFIG_slc2       ?= n
+CONFIG_atmel_radio ?=n
 
 #The CONFIG_foo vars are only interpreted if $(config) is "unset".
 ifeq ($(config),undef)