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.
Hello Support team.
This question is about Flash erase using Flash API (FAPI_F28003x_COFF_v1.58.01.lib).
There are two methods to erase a single sector. Is there any difference in operation between these two methods?
Fapi_issueAsyncCommandWithAddress(Fapi_EraseSector, (uint32 *)0x000A0000);
Fapi_issueBankEraseCommand((uint32 *)0x000A0000, 0xFFFE);
Best Regards
KORO
Hi Koro,
Yes, there is a difference.
Fapi_issueAsyncCommandWithAddress(Fapi_EraseSector, xx): This command can be used to erase a single sector.
Fapi_issueBankEraseCommand(): This command is used to erase all the selected sectors at the same time.
Thanks and regards,
Vamsi
Samsi-san
Thanks a lot for your reply.
If customer wants to erase single sector, both functions has same behavior.
Best Regards
KORO