Skip to content

Commit

Permalink
[nrf toup] [nrfconnect] Enable ZMS for MRAM-based devices
Browse files Browse the repository at this point in the history
Enabled ZMS as a Zephyr Settings backend for devices that contain
MRAM memory type, such as nRF54H20.

Signed-off-by: Arkadiusz Balys <[email protected]>
  • Loading branch information
ArekBalysNordic committed Dec 3, 2024
1 parent e4a31b9 commit 9a6edcf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/nrfconnect/chip-module/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
rsource "../../zephyr/Kconfig"

config CHIP
imply NVS if !SOC_FLASH_NRF_RRAM
imply NVS_LOOKUP_CACHE if !SOC_FLASH_NRF_RRAM
imply NVS_LOOKUP_CACHE_FOR_SETTINGS if !SOC_FLASH_NRF_RRAM
imply ZMS if SOC_FLASH_NRF_RRAM
imply ZMS_LOOKUP_CACHE if SOC_FLASH_NRF_RRAM
imply ZMS_LOOKUP_CACHE_FOR_SETTINGS if SOC_FLASH_NRF_RRAM
imply NVS if !(SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM)
imply NVS_LOOKUP_CACHE if !(SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM)
imply NVS_LOOKUP_CACHE_FOR_SETTINGS if !(SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM)
imply ZMS if SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM
imply ZMS_LOOKUP_CACHE if SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM
imply ZMS_LOOKUP_CACHE_FOR_SETTINGS if SOC_FLASH_NRF_RRAM || SOC_FLASH_NRF_MRAM

if CHIP

Expand Down

0 comments on commit 9a6edcf

Please sign in to comment.