Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
code_partition: partition@100 {
compatible = "zephyr,mapped-partition";
label = "code-partition";
reg = <0x100 (0x180000 - 0x100)>;
reg = <0x100 (0xfe000 - 0x100)>;
read-only;
};

nvm_partition: partition@180000 {
storage_partition: partition@fe000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
label = "storage";
reg = <0xfe000 0x1000>;
};

storage_partition: partition@180800 {
nvm_partition: partition@ff000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0x180800 0x800>;
label = "nvm";
reg = <0xff000 0x1000>;
};

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@100000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(8) - 0x181000)>;
reg = <0x100000 (DT_SIZE_M(8) - 0x100000)>;
};
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
code_partition: partition@0 {
compatible = "zephyr,mapped-partition";
label = "code-partition";
reg = <0x0 0x180000>;
reg = <0x0 0x17f000>;
read-only;
};

nvm_partition: partition@180000 {
storage_partition: partition@17f000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
label = "storage";
reg = <0x17f000 0x1000>;
};

storage_partition: partition@180800 {
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0x180800 0x800>;
label = "nvm";
reg = <0x180000 0x1000>;
};

circuitpy_partition: partition@181000 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@
code_partition: partition@0 {
compatible = "zephyr,mapped-partition";
label = "code-partition";
reg = <0x0 0x180000>;
reg = <0x0 0xfe000>;
read-only;
};

nvm_partition: partition@180000 {
storage_partition: partition@fe000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
label = "storage";
reg = <0xfe000 0x1000>;
};

storage_partition: partition@180800 {
nvm_partition: partition@ff000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0x180800 0x800>;
label = "nvm";
reg = <0xff000 0x1000>;
};

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@100000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(4) - 0x181000)>;
reg = <0x100000 (DT_SIZE_M(4) - 0x100000)>;
};
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@
code_partition: partition@100 {
compatible = "zephyr,mapped-partition";
label = "code-partition";
reg = <0x100 (0x180000 - 0x100)>;
reg = <0x100 (0x17f000 - 0x100)>;
read-only;
};

nvm_partition: partition@180000 {
storage_partition: partition@17f000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
label = "storage";
reg = <0x17f000 0x1000>;
};

storage_partition: partition@180800 {
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0x180800 0x800>;
label = "nvm";
reg = <0x180000 0x1000>;
};

circuitpy_partition: partition@181000 {
Expand Down
18 changes: 9 additions & 9 deletions ports/zephyr-cp/boards/raspberrypi/rpi_pico_zephyr/board.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
code_partition: partition@100 {
compatible = "zephyr,mapped-partition";
label = "code-partition";
reg = <0x100 (0x180000 - 0x100)>;
reg = <0x100 (0xfe000 - 0x100)>;
read-only;
};

nvm_partition: partition@180000 {
storage_partition: partition@fe000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
label = "storage";
reg = <0xfe000 0x1000>;
};

storage_partition: partition@180800 {
nvm_partition: partition@ff000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0x180800 0x800>;
label = "nvm";
reg = <0xff000 0x1000>;
};

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@100000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(2) - 0x181000)>;
reg = <0x100000 (DT_SIZE_M(2) - 0x100000)>;
};
};
};
Expand Down
Loading