3d19b0036e
This commit updates the srf06-cc26xx platform by adding support for the CC1310EM. We generalise the way this platform selects CPU/board so that we can easily add more combinations in the future. These changes have implication on how to build for different devices, so make sure to have a look at the updated README
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# srf06-cc26xx platform makefile
|
|
|
|
ifndef CONTIKI
|
|
$(error CONTIKI not defined! You must specify where CONTIKI resides!)
|
|
endif
|
|
|
|
### Board and BSP selection
|
|
ifeq ($(BOARD),)
|
|
BOARD=srf06/cc26xx
|
|
endif
|
|
|
|
CONTIKI_TARGET_DIRS += .
|
|
|
|
### Include the board-specific makefile
|
|
PLATFORM_ROOT_DIR = $(CONTIKI)/platform/$(TARGET)
|
|
-include $(PLATFORM_ROOT_DIR)/$(BOARD)/Makefile.$(notdir $(BOARD))
|
|
|
|
CONTIKI_TARGET_SOURCEFILES += contiki-main.c
|
|
CONTIKI_TARGET_SOURCEFILES += sensors.c leds.c
|
|
CONTIKI_TARGET_SOURCEFILES += $(BOARD_SOURCEFILES)
|
|
|
|
CONTIKI_SOURCEFILES += $(CONTIKI_TARGET_SOURCEFILES)
|
|
|
|
CLEAN += *.srf06-cc26xx
|
|
|
|
### Unless the example dictates otherwise, build with code size optimisations
|
|
ifndef SMALL
|
|
SMALL = 0
|
|
endif
|
|
|
|
### Define the CPU directory and pull in the correct CPU makefile. This will
|
|
### be defined by one of the makefiles included above and it can be either
|
|
### Makefile.cc26xx or Makefile.cc13xx
|
|
CONTIKI_CPU=$(CONTIKI)/cpu/cc26xx-cc13xx
|
|
include $(CONTIKI_CPU)/Makefile.$(CPU_FAMILY)
|
|
|
|
MODULES += core/net core/net/mac core/net/mac/contikimac core/net/llsec
|