infocenter.nordicsemi.com/index.jsp
static uint32_t data = 0xAAAAAAAA; fs_ret_t ret = fs_store(&fs_config, fs_config.p_start_addr, &data, 1); if (ret != FS_SUCCESS) { // An error occurred. }
this function of fs_store is define as below:
fs_ret_t fs_store(fs_config_t const * const p_config, uint32_t const * const p_dest, uint32_t const * const p_src, uint16_t const length_words, void * p_context)
I want to know that is all the code is test ok?