Hi Team
Can I change the program_unit in below code? If Yes, what is the rule for this variable? Can I set it to 1? Thank you.
/* Flash device information. */
static nrf_fstorage_info_t m_flash_info =
{
#if defined(NRF51)
.erase_unit = 1024,
#elif defined(NRF52_SERIES)
.erase_unit = 4096,
#endif
.program_unit = 4,
.rmap = true,
.wmap = false,
};
Regards
Victor