Hello @EduardoZamora,
I didn't find the answer I was looking for in the User Guide [JN-UG-3134].
(Also, I'm well aware that autoack is not supported in PHY mode.)
The problem is that after sending a packet I cannot receive another packet for 3.5ms.
Any ideas on how to receive an incoming ACK packet immediately after sending a packet?
Or is there no way due to the limitations of the MMAC library?
The example I referenced is JN-AN-1261, and I tested it like this:
APP_RADIO_vTx(FALSE);
if (APP_RADIO_bRx(TRUE, 40))
{
/* Process Received frame */
}
else
{
PRINT("No Packet\n");
}
Thank you.