42557bf484
I just tried to compile this platform for my Zigbit mote (AT86RF230) here in a hello-world example, but it didn't work. I reviewed this makefile and found that the request to compile "frame.c" was not necessary and bring up a missing error: "make: *** No rule to make target `obj_avr-zigbit/frame.o', needed by `contiki-avr-zigbit.a'. Stop." Frame.c is already inserted in radio's makefile. Another problem was the undefined reference created by the missing module "core/net": "contiki-avr-zigbit.a(sicslowpan.o): In function `input':" "contiki/examples/hello-world/../../core/net/ipv6/sicslowpan.c:1521: undefined reference to `link_stats_input_callback'" Both solved now. Hope it helps anyone else.
22 lines
679 B
Makefile
22 lines
679 B
Makefile
CONTIKIDIRS += ${addprefix $(CONTIKI)/core/, net/mac net/mac/sicslowmac . }
|
|
|
|
CONTIKI_TARGET_DIRS = . apps /core/net/mac/ /core/net/mac/sicslowmac/
|
|
CONTIKI_CORE = contiki-avr-zigbit
|
|
CONTIKI_TARGET_MAIN = ${CONTIKI_CORE}.o
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += rs232.c cfs-eeprom.c eeprom.c random.c mmem.c \
|
|
contiki-avr-zigbit-main.c \
|
|
sicslowmac.c linkaddr.c queuebuf.c nullmac.c packetbuf.c \
|
|
frame802154.c framer-802154.c nullsec.c nbr-table.c
|
|
|
|
CONTIKIAVR = $(CONTIKI)/cpu/avr
|
|
CONTIKIBOARD = .
|
|
|
|
CONTIKI_PLAT_DEFS = -DF_CPU=8000000UL -DAUTO_CRC_PADDING=2
|
|
|
|
MCU = atmega1281
|
|
|
|
include $(CONTIKIAVR)/Makefile.avr
|
|
include $(CONTIKIAVR)/radio/Makefile.radio
|
|
MODULES += core/net
|