Part Number: CC2340R5
Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Hi teams,
I am running the basic_ble project in LP-EM-CC2340R5. I want to use NVS for some test.

In the syscfg, the CONFIG_NVSINTERNAL was added automatically when I imported the project. Without searching the NVS_open() called in the project, I just want to use this NVS region to test.
However, I can't open this region correctly. Please find the output below.

My NVS_init function snippet shows below.
void mine_nvs_init()
{
NVS_init();
NVS_Params nvsParams;
NVS_Attrs regionAttrs;
NVS_Params_init(&nvsParams);
nvsHandle = NVS_open(CONFIG_NVSINTERNAL, &nvsParams);
NVS_getAttrs(nvsHandle, ®ionAttrs);
/* Display the NVS region attributes */
MenuModule_printf(0, 0, "Region Base Address: 0x%x",
regionAttrs.regionBase);
MenuModule_printf(0, 0, "Sector Size: 0x%x",
regionAttrs.sectorSize);
MenuModule_printf(0, 0, "Region Size: 0x%x\n",
regionAttrs.regionSize);
}
I am wondering what this CONFIG_NVSINTERNAL uses for? And confirm whether the application is able to use the CONFIG_NVSINTERNAL.
SDK version: simplelink_lowpower_f3_sdk_8_10_01_02
Thanks!
