hello,
when i test the erase sector command, and I make a break point in function FLASH_DRV_EraseResume. then run the code to the break point, i found suspend function does not take effect(all the two sector are erased to FF, but i expected it should erase stop when execute FLASH_DRV_EraseSuspend),
whether the use method is wrong? and when should i used this fucntion FLASH_DRV_EraseSuspend?
//-==============code========================
#define BASE_ADDRESS 0x80000
FLASH_DRV_EraseSector(&flashSSDConfig, BASE_ADDRESS, 4096*2);
FLASH_DRV_EraseSuspend();
FLASH_DRV_EraseResume();
wish your help! thansk in advance!