2017-07-31 13:26:29 +02:00
|
|
|
# Set this to the name of your sketch (without extension .pde)
|
|
|
|
SKETCH=sketch
|
|
|
|
EXE=ota
|
|
|
|
|
|
|
|
all: $(EXE)
|
|
|
|
|
|
|
|
CONTIKI=../../..
|
|
|
|
|
|
|
|
# Contiki IPv6 configuration
|
|
|
|
CONTIKI_WITH_IPV6 = 1
|
|
|
|
|
|
|
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
|
|
|
|
2017-08-19 19:25:38 +02:00
|
|
|
PROJECT_SOURCEFILES += res_upload_image.c res_bootloader.c ${SKETCH}.cpp
|
2017-07-31 13:26:29 +02:00
|
|
|
|
|
|
|
# variable for Makefile.include
|
|
|
|
ifneq ($(TARGET), minimal-net)
|
|
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=1
|
|
|
|
else
|
|
|
|
# minimal-net does not support RPL under Linux and is mostly used to test CoAP only
|
|
|
|
${info INFO: compiling without RPL}
|
|
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=0
|
|
|
|
CFLAGS += -DHARD_CODED_ADDRESS=\"fdfd::10\"
|
|
|
|
${info INFO: compiling with large buffers}
|
|
|
|
CFLAGS += -DUIP_CONF_BUFFER_SIZE=2048
|
|
|
|
CFLAGS += -DREST_MAX_CHUNK_SIZE=1024
|
|
|
|
CFLAGS += -DCOAP_MAX_HEADER_SIZE=640
|
|
|
|
endif
|
|
|
|
|
|
|
|
# linker optimizations
|
|
|
|
SMALL=1
|
|
|
|
|
|
|
|
# REST Engine shall use Erbium CoAP implementation
|
|
|
|
APPS += er-coap
|
|
|
|
APPS += rest-engine
|
2017-08-19 19:25:38 +02:00
|
|
|
APPS += arduino json-resource json #time
|
2017-07-31 13:26:29 +02:00
|
|
|
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
include $(CONTIKI)/apps/arduino/Makefile.include
|
|
|
|
|
2017-08-24 13:56:24 +02:00
|
|
|
AVRDUDE_PORT=/dev/ttyUSB0
|