Hi Champion
My customer evaluate T format, and have a question below:
They will write the T format Encoder EEPROM in 100us PWM ISR, and customer don't want to use the delay function as below, but want to check the busy flag of EEPROM, if no busy, then write EEPROM, which is much more efficiency. Please suggest how to get the busy flag of EEPROM.
DELAY_US(200L); //Delay 200us
address = 1;
address_tmp = (__flip32(address) >> 24) & 0xFE; // includes busy "0"
tformatData.rxPkts[0] = ((((uint32_t) DATAIDD) | 0x40) << 8) | (uint32_t) address_tmp;
crcResult = PM_tformat_getCRC(0, 16, 8, (uint16_t *)&tformatData.rxPkts, tformatCRCtable, 2);
crcResult = (crcResult) ^ (0xFF);
