I have used pstorage before but when I add scheduler to my project I face an error in update function of pstorage that in debug I found error_code : NRF_ERROR_NO_MEM . any idea of what happened??
I have used pstorage before but when I add scheduler to my project I face an error in update function of pstorage that in debug I found error_code : NRF_ERROR_NO_MEM . any idea of what happened??
In first call that I call pstorage_update() error occurs but for example pstorage_load() not causes an error !! How do I find where code returned?
If it happens every time you call pstorage_update() then you just need to put a breakpoint there and then step into the code. If you don't know when it happens, you can try adding UART log inside the codefor example.
Most likely the error was thrown from cmd_queue_enqueue(). We need to findout why the queue was full.