2016-04-22 17:51:59 +02:00
|
|
|
CONTIKI_TARGET_DIRS = . dev apps net loader dev/arduino
|
2013-02-19 10:22:48 +01:00
|
|
|
|
|
|
|
CONTIKI_CORE=contiki-main
|
|
|
|
CONTIKI_TARGET_MAIN = ${CONTIKI_CORE}.o
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += contiki-main.c params.c node-id.c
|
|
|
|
#Needed for slip
|
2016-04-22 17:51:59 +02:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += led.c sensors.c slip_uart0.c slip.c leds-arch.c
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += temperature-sensor.c adc.c
|
2013-02-19 10:22:48 +01:00
|
|
|
#Needed for Button
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += button-sensor.c
|
2014-06-21 21:30:48 +02:00
|
|
|
# i2c Master
|
2016-02-27 22:13:12 +01:00
|
|
|
#CONTIKI_TARGET_SOURCEFILES += i2c.c
|
2013-02-19 10:22:48 +01:00
|
|
|
#Needed for DHT11 humidity sensor
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += dht11.c
|
|
|
|
#Needed for DS18S20 temperature sensor
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += ds1820.c
|
|
|
|
#Needed for Battery test
|
2013-08-20 13:34:01 +02:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += battery-sensor.c batmon.c
|
2013-02-19 10:22:48 +01:00
|
|
|
#Needed for PIR
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += pir-sensor.c
|
2013-03-13 16:02:30 +01:00
|
|
|
#Needed for OPTRIAC
|
2014-07-14 20:31:04 +02:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += optriac-sensor.c
|
2013-03-13 16:02:30 +01:00
|
|
|
#Needed for SERVO
|
2013-02-22 17:04:19 +01:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += servo.c servo-sensor.c
|
2013-04-04 13:03:18 +02:00
|
|
|
#Needed for Timer4 Servo
|
2014-04-04 11:03:53 +02:00
|
|
|
#CONTIKI_TARGET_SOURCEFILES += t4-servo.c t4-servo-sensor.c
|
2013-11-22 16:34:13 +01:00
|
|
|
#Needed for Relay 1 to 4
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += relay.c relay-sensor.c
|
2014-05-22 16:25:15 +02:00
|
|
|
# Arduino
|
2014-06-29 17:26:15 +02:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += wiring_digital.c
|
2016-02-27 22:13:12 +01:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += new.cpp twi.c Wire.cpp WMath.cpp
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += Print.cpp Stream.cpp WString.cpp
|
2016-11-15 09:36:30 +01:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += SPI.cpp
|
2016-11-09 15:14:45 +01:00
|
|
|
CONTIKI_TARGET_SOURCEFILES += HardwareSerial.cpp HardwareSerial1.cpp
|
2016-04-22 17:51:59 +02:00
|
|
|
# guh Source Files
|
|
|
|
# Smart Grid Ready Interface
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += sg-ready.c
|
2015-01-25 18:31:17 +01:00
|
|
|
|
2016-04-22 17:51:59 +02:00
|
|
|
CONTIKIAVR=$(CONTIKI)/cpu/avr
|
2013-02-22 17:04:19 +01:00
|
|
|
|
2013-02-19 10:22:48 +01:00
|
|
|
CONTIKIBOARD=.
|
2016-04-22 17:51:59 +02:00
|
|
|
BOOTLOADER_START = 0x3E000
|
2014-05-31 16:17:07 +02:00
|
|
|
CONTIKI_PLAT_DEFS = -DF_CPU=16000000UL -DAUTO_CRC_PADDING=2 -DPLAT_TIMER=5
|
2013-02-19 10:22:48 +01:00
|
|
|
|
2016-04-22 17:51:59 +02:00
|
|
|
MCU=atmega256rfr2
|
2013-02-19 10:22:48 +01:00
|
|
|
|
2016-04-22 17:51:59 +02:00
|
|
|
#AVRDUDE_PROGRAMMER=jtag2
|
|
|
|
AVRDUDE_PROGRAMMER=stk500v2
|
2013-02-19 10:22:48 +01:00
|
|
|
|
2016-04-22 17:51:59 +02:00
|
|
|
# For usb devices, you may either use PORT=usb, or (e.g. if you have
|
|
|
|
# more than one programmer connected) you can use the following trick to
|
|
|
|
# find out the serial number:
|
2013-02-19 10:22:48 +01:00
|
|
|
#
|
2016-04-22 17:51:59 +02:00
|
|
|
# The example is for an JTAGICE mkII used to program an atmega256:
|
|
|
|
# avrdude -v -P usb:xxxx -c jtag2 -p atmega256
|
|
|
|
# AVRDUDE_PORT=usb:00B000000D79
|
|
|
|
# For serial devices with bootloader we also use the AVRDUDE_PORT setting:
|
|
|
|
AVRDUDE_PORT=/dev/ttyUSB0
|
|
|
|
# Only needed for serial devices, use empty setting for other
|
|
|
|
# programmers
|
|
|
|
AVRDUDE_BAUD_OPTION=-b 57600
|
2013-02-19 10:22:48 +01:00
|
|
|
|
|
|
|
# Additional avrdude options
|
2016-04-22 17:51:59 +02:00
|
|
|
# First some flash options:
|
|
|
|
# Verify off is -V
|
|
|
|
# Erase is -e
|
|
|
|
# No-Erase (needed by our stk500 variant) is -D
|
|
|
|
# Note that it really doesn't turn off erase: It doesn't issue an
|
|
|
|
# explicit erase command (which is not implemented) but the bootloader
|
|
|
|
# *always* does an implicit erase when programming.
|
|
|
|
AVRDUDE_FLASH_OPTIONS=-D
|
|
|
|
AVRDUDE_OPTIONS=$(AVRDUDE_BAUD_OPTION) $(AVRDUDE_FLASH_OPTIONS)
|
|
|
|
AVRDUDE_MCU=m256rfr2
|
2013-02-19 10:22:48 +01:00
|
|
|
|
2013-06-04 11:28:42 +02:00
|
|
|
#debug
|
|
|
|
# CFLAGS += -save-temps
|
|
|
|
# Bootloader bonsai
|
|
|
|
# LDFLAGS += -save-temps
|
2016-04-22 17:51:59 +02:00
|
|
|
# For newer bootloaders we have a jump table at the end of the bootloader
|
|
|
|
# section: guhRF Bootloader MAC Address
|
|
|
|
BOOTLOADER_GET_MAC=0x0003ff80
|
2014-05-13 16:56:59 +02:00
|
|
|
|
|
|
|
LDFLAGS += -Wl,--defsym,bootloader_get_mac=$(BOOTLOADER_GET_MAC)
|
2013-06-04 11:28:42 +02:00
|
|
|
|
2013-02-19 10:22:48 +01:00
|
|
|
|
|
|
|
include $(CONTIKIAVR)/Makefile.avr
|
|
|
|
include $(CONTIKIAVR)/radio/Makefile.radio
|
2014-04-14 13:27:01 +02:00
|
|
|
|
2015-01-25 18:31:17 +01:00
|
|
|
MODULES += core/net/mac core/net core/net/mac/sicslowmac \
|
2016-08-20 14:32:26 +02:00
|
|
|
core/net/mac/contikimac core/net/llsec core/net/llsec/noncoresec \
|
2014-12-29 11:02:51 +01:00
|
|
|
# core/net/ipv6 core/net/ipv4 core/net/ip \
|
|
|
|
# core/net/rime \
|
|
|
|
# core/net/rpl \
|