1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #17226 from dylad/pr/boards/nrf9160dk/add_riotboot_support

boards/nrf9160dk: add riotboot support
This commit is contained in:
benpicco 2021-11-19 15:45:05 +01:00 committed by GitHub
commit e0b3cba571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -15,3 +15,6 @@ config BOARD_NRF9160DK
select HAS_PERIPH_SPI
select HAS_PERIPH_TIMER
select HAS_PERIPH_UART
# Put other features for this board (in alphabetical order)
select HAS_RIOTBOOT

View File

@ -6,3 +6,5 @@ FEATURES_PROVIDED += periph_i2c
FEATURES_PROVIDED += periph_spi
FEATURES_PROVIDED += periph_timer
FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += riotboot

View File

@ -7,11 +7,10 @@ RAM_START_ADDR ?= 0x20000000
LINKER_SCRIPT ?= cortexm.ld
FLASHFILE = $(BINFILE)
FLASHFILE ?= $(BINFILE)
PROGRAMMER ?= jlink
JLINK_DEVICE = NRF9160_XXAA
include $(RIOTCPU)/nrf5x_common/Makefile.include
include $(RIOTMAKE)/arch/cortexm.inc.mk