mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 12:43:03 +00:00
Adding the Circuit Dojo nRF9160 Feather device tree definitions. Both secure and non secure targets. Signed-off-by: Jared Wolff <hello@jaredwolff.com>
21 lines
446 B
Plaintext
21 lines
446 B
Plaintext
/*
|
|
* Copyright (c) 2018-2020 Nordic Semiconductor ASA
|
|
* Copyright (c) 2020 Circuit Dojo LLC
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <nordic/nrf9160_sica.dtsi>
|
|
#include "circuitdojo_feather_nrf9160_common.dts"
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,sram = &sram0_s;
|
|
zephyr,flash = &flash0;
|
|
zephyr,code-partition = &slot0_partition;
|
|
zephyr,sram-secure-partition = &sram0_s;
|
|
zephyr,sram-non-secure-partition = &sram0_ns;
|
|
};
|
|
};
|