Skip to content

Commit 761d710

Browse files
kkasperczyk-norlubos
authored andcommitted
applications: Aligned retained RAM partitions for diagnostic logs
The retained RAM partitions for diagnostic logs were changed in all other samples, but Matter weather station was accidentally missed. Signed-off-by: Kamil Kasperczyk <[email protected]>
1 parent 1ac3327 commit 761d710

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

applications/matter_weather_station/app.overlay

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
buzzer-pwm = &buzzer;
2626
};
2727

28-
sram@2007EB40 {
28+
sram@2007E340 {
2929
compatible = "zephyr,memory-region", "mmio-sram";
30-
reg = <0x2007EB40 0x14C0>;
30+
reg = <0x2007E340 0x1CC0>;
3131
zephyr,memory-region = "DiagnosticLogMem";
3232
status = "okay";
3333
retainedmem {
@@ -44,20 +44,20 @@
4444
checksum = <2>;
4545
};
4646

47-
/* Reserve 4 kB for the end user logs. */
48-
end_user_logs_retention: retention@c0 {
47+
/* Reserve 6 kB for the network logs. */
48+
network_logs_retention: retention@c0 {
4949
compatible = "zephyr,retention";
5050
status = "okay";
51-
reg = <0xC0 0x1000>;
51+
reg = <0xC0 0x1800>;
5252
prefix = [06 03];
5353
checksum = <2>;
5454
};
5555

56-
/* Reserve 1 kB for the network logs. */
57-
network_logs_retention: retention@10c0 {
56+
/* Reserve 1 kB for the end user logs. */
57+
end_user_logs_retention: retention@18c0 {
5858
compatible = "zephyr,retention";
5959
status = "okay";
60-
reg = <0x10C0 0x400>;
60+
reg = <0x18C0 0x400>;
6161
prefix = [05 02];
6262
checksum = <2>;
6363
};
@@ -100,7 +100,7 @@
100100
status = "disabled";
101101
};
102102

103-
/* Reduce SRAM0 usage by 5312B to account for non-init area */
103+
/* Reduce SRAM0 usage by 7360 B to account for non-init area */
104104
&sram0 {
105-
reg = <0x20000000 0x7EB40>;
105+
reg = <0x20000000 0x7E340>;
106106
};

0 commit comments

Comments
 (0)