Skip to content

Commit 13c0c90

Browse files
rghaddabrlubos
authored andcommitted
openthread: add warning when using NVS with nRF54H SoC family
Adds the warning in the CMakeLists.txt when NVS is selected for the nRF54H SoC family as well Signed-off-by: Riadh Ghaddab <[email protected]>
1 parent 83d744e commit 13c0c90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

subsys/net/openthread/settings_check/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
# This script checks if NVS settings backend is used with nRF54L SoC target and prints
88
# the warning that the recommended backend is ZMS due to the RRAM design.
99

10-
if (CONFIG_SOC_SERIES_NRF54LX AND CONFIG_SETTINGS_NVS)
10+
if((CONFIG_SOC_SERIES_NRF54LX OR CONFIG_SOC_SERIES_NRF54HX) AND CONFIG_SETTINGS_NVS)
1111
message(WARNING " ###################################################################################\n"
1212
" # #\n"
1313
" # Your application uses NVS backend for the settings storage that is not #\n"
14-
" # optimal solution for the nRF54L SoC family and it may negatively impact #\n"
15-
" # the non-volatile RRAM life-time. #\n"
14+
" # optimal solution for the nRF54L or the nRF54H SoC family and it may negatively #\n"
15+
" # impact the non-volatile RRAM or MRAM life-time. #\n"
1616
" # #\n"
17-
" # The recommended settings backend for nRF54L SoC family is ZMS. #\n"
17+
" # The recommended settings backend for nRF54L or nRF54H SoC family is ZMS. #\n"
1818
" # You can enable it by selecting CONFIG_SETTINGS_ZMS=y and CONFIG_ZMS=y. #\n"
1919
" # Please note that the other Kconfig options related to NVS like cache #\n"
2020
" # or block size will require alignment on the ZMS side as well. #\n"

0 commit comments

Comments
 (0)