Good morning,
I implemented the configuration shown in the manual 'TI FEE Driver User Guide ver 1.8' at paragraph 4.14.3 'Two Virtual Sectors for each EEPROM on four physical sectors - Two EEPROM', I have a doubt, is it possible to write simultaneously on both EEPROM in the following way:
BLOCK_NUM0 -> EEP0
BLOCK_NUM1 -> EEP1
1- TI_Fee_WriteAsync( BLOCK_NUM0) -> Write on EEP0 block
2- TI_Fee_WriteAsync( BLOCK_NUM1) -> Write on EEP1 block
3- Perform the following loop:
do
{
TI_Fee_MainFunction();
Status_EEP0=TI_Fee_GetStatus(0);
Status_EEP1=TI_Fee_GetStatus(1);
} while( Status_EEP0!=IDLE && Status_EEP1!=IDLE);
Could it be correct in this way?
Best Regards,
Davide Battistoli