2016-01-09 13:44:39 +00:00
|
|
|
ifndef CONTIKI
|
|
|
|
$(error CONTIKI not defined! You must specify where CONTIKI resides!)
|
|
|
|
endif
|
|
|
|
|
|
|
|
### Include the board-specific makefile
|
2017-06-28 13:57:13 +00:00
|
|
|
PLATFORM_ROOT_DIR = $(CONTIKI)/arch/platform/$(TARGET)
|
2016-01-09 13:44:39 +00:00
|
|
|
|
|
|
|
CONTIKI_TARGET_DIRS += . dev config
|
2017-10-15 14:58:58 +00:00
|
|
|
CONTIKI_SOURCEFILES += platform.c leds-arch.c nrf52dk-sensors.c button-sensor.c temperature-sensor.c
|
2016-01-09 13:44:39 +00:00
|
|
|
|
|
|
|
ifeq ($(NRF52_USE_RTT),1)
|
2017-06-28 13:57:13 +00:00
|
|
|
### Use the existing debug I/O in arch/cpu/arm/common
|
2016-01-09 13:44:39 +00:00
|
|
|
CONTIKI_TARGET_DIRS += rtt
|
|
|
|
CONTIKI_SOURCEFILES += rtt-printf.c segger-rtt.c segger-rtt-printf.c
|
|
|
|
else
|
|
|
|
CONTIKI_TARGET_DIRS += dbg-io
|
|
|
|
CONTIKI_SOURCEFILES += dbg.c
|
|
|
|
CONTIKI_CPU_DIRS += ../arm/common/dbg-io
|
|
|
|
CONTIKI_CPU_SOURCEFILES += dbg-printf.c dbg-putchar.c dbg-snprintf.c dbg-sprintf.c strformat.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
CLEAN += *.nrf52dk
|
|
|
|
|
2017-05-16 15:09:58 +00:00
|
|
|
### Unless the example dictates otherwise, build with code size optimisations switched off
|
|
|
|
SMALL ?= 0
|
2016-01-09 13:44:39 +00:00
|
|
|
|
|
|
|
### Define the CPU directory and pull in the correct CPU makefile.
|
2017-06-28 13:57:13 +00:00
|
|
|
CONTIKI_CPU=$(CONTIKI)/arch/cpu/nrf52832
|
2016-01-09 13:44:39 +00:00
|
|
|
include $(CONTIKI_CPU)/Makefile.nrf52832
|