This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

FDS init fail error 11

Hello 

I am using FDS to store some MAc addresses in my project. After successful 

fds_register()
  I try fds_init() which returns error 11.

I can't figure out what is causing this error.

   static ret_code_t fds_my_init (void)
   {

   		ret_code_t ret = fds_register(my_fds_evt_handler);
   		if (ret != FDS_SUCCESS)
   		{
   			NRF_LOG_INFO("FDS Register Fail %d",ret);
   					return ret;

   		}
   		ret = fds_init();
   		if (ret != FDS_SUCCESS)
   		{
   			NRF_LOG_INFO("FDS Init Fail %d",ret);
   				return ret;
   		}

   		return NRF_SUCCESS;

   }

Thak you for help 

Related