Hi.
We are using nRF Connect SDK v3.2.1 and nRF52832 MCU.
Our current internal flash memory mapping is like below,
mcuboot + mcuboot_primary (application) + mcuboot_secondary + user_storage + nvs_storage + setting_storage
We are facing sort of memory for our application firmware. So, we like to expand the application memory area by removing setting_storage. And combined the nvs_storage and user_storage.
In above, nvs_storage and setting_storage are not utilized. We are using only user_storage to store our device configuration.
To exand the memory we would like to keep only nvs_storage and like to use that for our device configuration storage. So, new flash mapping will be like below,
mcuboot + mcuboot_primary (application) + mcuboot_secondary + nvs_storage (config data)
What will be the downside of removing setting_storage? Will it create any issue?
Please note, our device is working as BLE peripheral. It advertise and connects with central and remain connected. Device is not using pairing and bonding as of now. We may use pairing in future but no bonding (keys will not be stored).
Thanks,
Narendra