04bbba6c12
Rename guhRF platform to osd-merkur-256, previous osd-merkur platform is now osd-merkur-128. Also check that everything is consistent. Add both platforms to the regression tests. Move redundant files in platform dev directory of both platforms to cpu/avr/dev. Note that this probably needs some rework. Already discovered some inconsistency in io definitions of both devices in the avr/io.h includes. Added a workaround in the obvious cases. The platform makefiles now set correct parameters for bootloader and for reading mac-address from flash memory. Factor the flash programming into cpu/avr and platform/osd-merkur* and rework *all* osd example makefiles to use the new settings. Also update all the flash.sh and run.sh to use the new settings. The suli ledstrip modules (and osd example) have also been removed.
79 lines
2 KiB
Makefile
79 lines
2 KiB
Makefile
EXE=poti
|
|
|
|
all: $(EXE)
|
|
|
|
CONTIKI=../../..
|
|
|
|
# Contiki IPv6 configuration
|
|
WITH_UIP6=1
|
|
UIP_CONF_IPV6=1
|
|
CFLAGS += -DUIP_CONF_IPV6=1
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=1
|
|
|
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
|
|
|
# automatically build RESTful resources
|
|
REST_RESOURCES_DIR = ./resources
|
|
REST_RESOURCES_DIR_COMMON = ../resources-common
|
|
REST_RESOURCES_FILES= $(notdir \
|
|
$(shell find $(REST_RESOURCES_DIR_COMMON) -name '*.c') \
|
|
)
|
|
|
|
PROJECTDIRS += $(REST_RESOURCES_DIR_COMMON)
|
|
PROJECT_SOURCEFILES += $(REST_RESOURCES_FILES)
|
|
|
|
# linker optimizations
|
|
SMALL=1
|
|
|
|
# REST Engine shall use Erbium CoAP implementation
|
|
APPS += er-coap
|
|
APPS += rest-engine
|
|
APPS += json json-resource
|
|
|
|
# optional rules to get assembly
|
|
#CUSTOM_RULE_C_TO_OBJECTDIR_O = 1
|
|
#CUSTOM_RULE_S_TO_OBJECTDIR_O = 1
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
# minimal-net target is currently broken in Contiki
|
|
ifeq ($(TARGET), minimal-net)
|
|
CFLAGS += -DHARD_CODED_ADDRESS=\"fdfd::10\"
|
|
${info INFO: compiling with large buffers}
|
|
CFLAGS += -DUIP_CONF_BUFFER_SIZE=1300
|
|
CFLAGS += -DREST_MAX_CHUNK_SIZE=1024
|
|
CFLAGS += -DCOAP_MAX_HEADER_SIZE=176
|
|
CFLAGS += -DUIP_CONF_IPV6_RPL=0
|
|
endif
|
|
|
|
# optional rules to get assembly
|
|
#$(OBJECTDIR)/%.o: asmdir/%.S
|
|
# $(CC) $(CFLAGS) -MMD -c $< -o $@
|
|
# @$(FINALIZE_DEPENDENCY)
|
|
#
|
|
#asmdir/%.S: %.c
|
|
# $(CC) $(CFLAGS) -MMD -S $< -o $@
|
|
|
|
# border router rules
|
|
$(CONTIKI)/tools/tunslip6: $(CONTIKI)/tools/tunslip6.c
|
|
(cd $(CONTIKI)/tools && $(MAKE) tunslip6)
|
|
|
|
connect-router: $(CONTIKI)/tools/tunslip6
|
|
sudo $(CONTIKI)/tools/tunslip6 aaaa::1/64
|
|
|
|
connect-router-cooja: $(CONTIKI)/tools/tunslip6
|
|
sudo $(CONTIKI)/tools/tunslip6 -a 127.0.0.1 -p 60001 aaaa::1/64
|
|
|
|
connect-router-native: $(CONTIKI)/examples/ipv6/native-border-router/border-router.native
|
|
sudo $(CONTIKI)/exmples/ipv6/native-border-router/border-router.native -a 127.0.0.1 -p 60001 aaaa::1/64
|
|
|
|
connect-minimal:
|
|
sudo ip address add fdfd::1/64 dev tap0
|
|
|
|
avr-size: $(EXE).$(TARGET).sz
|
|
|
|
flash: $(EXE).$(TARGET).u $(EXE).$(TARGET).eu
|
|
|
|
.PHONY: flash avr-size
|
|
.PRECIOUS: $(EXE).$(TARGET).hex $(EXE).$(TARGET).eep
|