This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi, during test FEE,I set two virtual sectors and only one block on virtural 1.And I can write data to the Flash,and verify by debug tool Memory View ,all the data is ok.
like below,the write API is :
TI_Fee_WriteAsync(1,*wrbuf)
I set block size as 24 bytes ,data select bits as 0,and number of 8 bytes write as 3
After I succeed write the data, I want to read the data back,so I use
TI_Fee_ReadSync (1,0,*rdbuf,24)
But I read data always is the data I write last,which mean I can not read the data I write at the first or the second,only the last one
So I want to know how to read all the other data back?