Commit 7f4eb00f authored by Michael Scott's avatar Michael Scott Committed by Anas Nashif
Browse files

boards: 96b_nitrogen: standardize scratch and storage partitions



Most of the other nRF52832 boards have the following settings for
scratch and storage partitions:

scratch_partition: partition@70000 {
        label = "image-scratch";
        reg = <0x00070000 0xa000>;
};

storage_partition: partition@7a000 {
        label = "storage";
        reg = <0x0007a000 0x00006000>;
};

Let's adjust the scratch size to align with the others and add the
storage partition so that settings and FS samples will work.

Signed-off-by: default avatarMichael Scott <mike@foundries.io>
parent ac7751d2
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -108,13 +108,18 @@
		};
		scratch_partition: partition@70000 {
			label = "image-scratch";
			reg = <0x00070000 0xD000>;
			reg = <0x00070000 0xa000>;
		};

		/*
		 * The flash starting at 0x0007d000 and ending at
		 * 0x0007ffff (sectors 125-127) is reserved for use
		 * by the application.
		 * The flash starting at 0x0007a000 and ending at
		 * 0x0007ffff (sectors 122-127) is reserved for use
		 * by the application. If enabled, partition for FCB/NFFS
		 * will be created in this area.
		 */
		storage_partition: partition@7a000 {
			label = "storage";
			reg = <0x0007a000 0x00006000>;
		};
	};
};