My user application needs to use 64KB of NV and I would like to know a safe way to implement it.
Is it best to increase HAL_NV_PAGE_CNT and use that space or should I just create a static stucture and use it that way.
I do need to have XLink CRC the code at link time so it can be verified at boot time (so the static structure may be an issue).
(this is a write once data structure so I don't have to be concerned about the flash erase timing issue impacting my BLE communication)
tks.