Hi,
with reference to the above link I tried to implement AES via simple peripheral example.
After I call for AESECB_oneStepEncrypt(handle, &Operation_test); it is getting struck at the below condition of AESECB_waitForResult(AESECB_Handle handle) function
if (object->returnBehavior == AESECB_RETURN_BEHAVIOR_BLOCKING) {
SemaphoreP_pend(&CryptoResourceCC26XX_operationSemaphore, SemaphoreP_WAIT_FOREVER);
return object->returnStatus;
}
Is there any way to overcome this WAIT_FOREVER condition?