Part Number:CC3200
Hi all,
I'm trying to transmit a limited number (<50) of consecutive packets with a delay of 16us between every packet. But, in practice, I get a variable delay between ~100 us and ~300us. Do it's possible to overcome this limitation? I'm using code from transceiver_mode example in SDK.
iSoc = sl_Socket(SL_AF_RF, SL_SOCK_RAW, iChannel); for(ulIndex = 0 ; ulIndex < iNumberOfPackets ; ulIndex++)
{ lRetVal = sl_Send(iSoc,RawData,sizeof(RawData),\ SL_RAW_RF_TX_PARAMS(iChannel, rate, iTxPowerLevel, PREAMBLE)); }
I read in another thread that continuously sending packets with this device overheats it.