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.
106 lines
2.8 KiB
Makefile
106 lines
2.8 KiB
Makefile
EXE=er-example-server er-example-client
|
|
|
|
all: $(EXE)
|
|
|
|
# variable for Makefile.include
|
|
WITH_UIP6=1
|
|
# for some platforms
|
|
UIP_CONF_IPV6=1
|
|
# IPv6 make config disappeared completely
|
|
CFLAGS += -DUIP_CONF_IPV6=1
|
|
|
|
CONTIKI=../../..
|
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
|
|
|
# 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 framework, requires WITH_COAP
|
|
ifeq ($(WITH_COAP), 13)
|
|
${info INFO: compiling with CoAP-13}
|
|
CFLAGS += -DWITH_COAP=13
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-13
|
|
else ifeq ($(WITH_COAP), 12)
|
|
${info INFO: compiling with CoAP-12}
|
|
CFLAGS += -DWITH_COAP=12
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-12
|
|
else ifeq ($(WITH_COAP), 7)
|
|
${info INFO: compiling with CoAP-08}
|
|
CFLAGS += -DWITH_COAP=7
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-07
|
|
else ifeq ($(WITH_COAP), 3)
|
|
${info INFO: compiling with CoAP-03}
|
|
CFLAGS += -DWITH_COAP=3
|
|
CFLAGS += -DREST=coap_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=0
|
|
APPS += er-coap-03
|
|
else
|
|
${info INFO: compiling with HTTP}
|
|
CFLAGS += -DWITH_HTTP
|
|
CFLAGS += -DREST=http_rest_implementation
|
|
CFLAGS += -DUIP_CONF_TCP=1
|
|
APPS += er-http-engine
|
|
endif
|
|
|
|
APPS += erbium
|
|
|
|
# optional rules to get assembly
|
|
#CUSTOM_RULE_C_TO_OBJECTDIR_O = 1
|
|
#CUSTOM_RULE_S_TO_OBJECTDIR_O = 1
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
# 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 aaaa::1/64
|
|
|
|
connect-minimal:
|
|
sudo ip address add fdfd::1/64 dev tap0
|
|
|
|
avr-size-server: er-example-server.$(TARGET).sz
|
|
|
|
avr-size-client: er-example-server.$(TARGET).sz
|
|
|
|
flash-server: er-example-server.$(TARGET).u er-example-server.$(TARGET).eu
|
|
|
|
flash-client: er-example-client.$(TARGET).u er-example-client.$(TARGET).eu
|
|
|
|
.PHONY: flash-client avr-size-client flash-server avr-size-server
|
|
.PRECIOUS: er-example-server.$(TARGET).hex er-example-server.$(TARGET).eep \
|
|
er-example-client.$(TARGET).hex er-example-client.$(TARGET).eep
|
|
|