Hi All
my platform is TM4C129X+CC1200, I porting the simpliciTI protocol on this platform,
if (MRFI_TX_RESULT_SUCCESS == MRFI_Transmit(&pFrameInfo->mrfiPkt, txOption))
{
rc = SMPL_SUCCESS;
}
else
{
/* Tx failed -- probably CCA. free up frame buffer. We do not have NWK
* level retries. Let application do it.
*/
rc = SMPL_TX_CCA_FAIL;
}
when I send the packet, the rc return SMPL_TX_CCA_FAIL.so I analysis some possibilies.
1. in this Area, I sure about that have no others expect me use this channel, certainly, no others use the sub-1G.
2.in IAR debug mode, the program run step by step , the rc return SMPL_SUCCESS, but when I just run full speed. the rc return SMPL_TX_CCA_FAIL.
3.my SPI rate is 1M, I'm not sure this rate has influence on the rc value.
4.change the MRFI_CCA_RETRIES has no change no rc value,