Hi,
We use the ECB peripheral to encrypt and decrypt data with a proprietary driver implementation (which is not that different from the one in the SDK). It is working fine most of the time, but on rare occasions it appears to hang while waiting for the ENDECB event. The event appears not to be generated. The ERRORECB event is not being generated either. The STOP task is not used in our sources, and we have no concurrent use of the ECB peripheral that could throw things off. The AAR and CCM peripherals are not in use. I did not find any PAN on the ECB peripheral.
The SDK implementation in nrf_ecb.c applies a counter to prevent the "while (NRF_ECB->EVENTS_ENDECB == 0)" to hang indefinitely. I'm curious about the start value of 0x1000000 since the product specification lists a maximum value for T(startecb, endecb) of 17 microseconds and the countdown in the loop takes longer than that.
Is it possible that the ECB peripheral will not generate the ENDECB or ERRORECB events after a START task is issued? If so, what are the circumstances? And is there way (other than the counter) to either prevent, detect or correct this situation in software?
Thanks