mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
292 B
Makefile
17 lines
292 B
Makefile
|
|
ROM_LEN ?= 0x100000
|
|
RAM_LEN ?= 0x40000
|
|
|
|
ROM_START_ADDR ?= 0x00000000
|
|
RAM_START_ADDR ?= 0x20000000
|
|
|
|
LINKER_SCRIPT ?= cortexm.ld
|
|
|
|
FLASHFILE ?= $(BINFILE)
|
|
|
|
PROGRAMMER ?= jlink
|
|
JLINK_DEVICE = NRF9160_XXAA
|
|
|
|
include $(RIOTCPU)/nrf5x_common/Makefile.include
|
|
include $(RIOTMAKE)/arch/cortexm.inc.mk
|