Hello,
I have been trying to build and run an aif2 example project using the example source codes that are provided with the MCSDK. The source code is Aif2_Cpri_Generic_Packet_Test.c and the loopback path is enabled in the source code. However, the packets are not transferred and the code stays in the while loop below.
while (hostRxCount < 8)
{
// Get current descriptor count for host RX queue
hostRxCount = get_descriptor_count(HOST_RX_Q);
if (hostRxCount != 0)
printf(" Number of monolithic packets received in RX queue: %d\n", hostRxCount);
}
Thanks in advance.
ilke