Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions app/overlay-memfault.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
/ {
chosen {
nordic,memfault-coredump-partition = &memfault_coredump_partition;
zephyr,settings_partition = &settings_storage_partition;
};
};

/delete-node/ &slot0_partition;
/delete-node/ &slot1_partition;
/delete-node/ &storage_partition;

&flash0 {
partitions {
Expand Down Expand Up @@ -63,13 +65,25 @@
};
};

memfault_coredump_partition: partition@f9000 {
storage_partition: partition@f9000 {
compatible = "zephyr,mapped-partition";
label = "memfault_coredump_partition";
reg = <0xf9000 0x4000>;
ranges = <0x0 0xf9000 0x4000>;
label = "storage";
reg = <0xf9000 0x7000>;
ranges = <0x0 0xf9000 0x7000>;
#address-cells = <1>;
#size-cells = <1>;

memfault_coredump_partition: partition@0 {
compatible = "zephyr,mapped-partition";
label = "memfault_coredump_partition";
reg = <0x0 0x4000>;
};

settings_storage_partition: partition@4000 {
compatible = "zephyr,mapped-partition";
label = "settings-storage";
reg = <0x4000 0x3000>;
};
};
};
};
22 changes: 18 additions & 4 deletions app/overlay-pgps.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
/ {
chosen {
nordic,pgps_partition = &pgps_partition;
zephyr,settings_partition = &settings_storage_partition;
};
};

/delete-node/ &slot0_partition;
/delete-node/ &slot1_partition;
/delete-node/ &storage_partition;

&flash0 {
partitions {
Expand Down Expand Up @@ -63,13 +65,25 @@
};
};

pgps_partition: partition@e9000 {
storage_partition: partition@e9000 {
compatible = "zephyr,mapped-partition";
label = "pgps";
reg = <0xe9000 0x14000>;
ranges = <0x0 0xe9000 0x14000>;
label = "storage";
reg = <0x000e9000 0x17000>;
ranges = <0x0 0x000e9000 0x17000>;
#address-cells = <1>;
#size-cells = <1>;

pgps_partition: partition@0 {
compatible = "zephyr,mapped-partition";
label = "pgps";
reg = <0x00000000 0x14000>;
};

settings_storage_partition: partition@14000 {
compatible = "zephyr,mapped-partition";
label = "settings-storage";
reg = <0x000014000 0x3000>;
};
};
};
};
5 changes: 5 additions & 0 deletions app/overlay-trace-backend.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,15 @@
* 0x2000_c800 Application RAM ( 206 kB)
*/

/delete-node/ &sram0_s;
/delete-node/ &sram0_ns;

&sram0 {

sram0_s: sram@0 {
reg = <0x0 0x4000>;
};

sram0_ns: sram@4000 {
reg = <0x4000 0x3c000>;
#address-cells = <1>;
Expand Down
1 change: 0 additions & 1 deletion app/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ tests:
- EXTRA_DTC_OVERLAY_FILE="overlay-carrier.overlay"
platform_allow:
- nrf9151dk/nrf9151/ns
- thingy91x/nrf9151/ns
integration_platforms:
- nrf9151dk/nrf9151/ns
serial_modem.lwm2m_carrier.softbank:
Expand Down
17 changes: 17 additions & 0 deletions app/sysbuild/b0/boards/thingy91x_nrf9151.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* Copyright (c) 2026 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

/ {
chosen {
zephyr,code-partition = &b0_partition;
zephyr,console = &uart1;
};
};

&uart1 {
current-speed = <1000000>;
status = "okay";
};
17 changes: 15 additions & 2 deletions app/sysbuild/mcuboot/boards/thingy91x_nrf9151.overlay
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
&uart0 {
/*
* Copyright (c) 2026 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

/ {
chosen {
zephyr,code-partition = &s0_partition;
zephyr,console = &uart1;
};
};

&uart1 {
current-speed = <1000000>;
status = "okay";
current-speed = < 1000000 >;
};
Loading