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 @@ -23,19 +23,19 @@
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
reg = <0x180000 0x1000>;
};

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

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@182000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(8) - 0x181000)>;
reg = <0x182000 (DT_SIZE_M(8) - 0x182000)>;
};
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
reg = <0x180000 0x1000>;
};

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

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@182000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(4) - 0x181000)>;
reg = <0x182000 (DT_SIZE_M(4) - 0x182000)>;
};
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
reg = <0x180000 0x1000>;
};

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

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@182000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(4) - 0x181000)>;
reg = <0x182000 (DT_SIZE_M(4) - 0x182000)>;
};
};
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
reg = <0x180000 0x1000>;
};

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

circuitpy_partition: partition@181000 {
circuitpy_partition: partition@182000 {
compatible = "zephyr,mapped-partition";
label = "circuitpy";
reg = <0x181000 (DT_SIZE_M(2) - 0x181000)>;
reg = <0x182000 (DT_SIZE_M(2) - 0x182000)>;
};
};
};
Expand Down
10 changes: 5 additions & 5 deletions ports/zephyr-cp/boards/raspberrypi/rpi_pico_zephyr/board.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
nvm_partition: partition@180000 {
compatible = "zephyr,mapped-partition";
label = "nvm";
reg = <0x180000 0x800>;
reg = <0x180000 0x1000>;
};

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

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