Hi
I'm tring to use CC1310 to do a test, as below:
1.PAYLOAD_LENGTH is 4000
2.Using 433M@1Mbps with RF_cmdPropTxAdv & RF_cmdPropRxAdv
3.PacketInterval = (uint32_t)(4000000*0.5f); It's 500ms.
But the receiver cannot receive anything at all. I check transmitter end with spectrum analyzer, and I can see spectrum correctly, this indicate that data has been send out correctly.
So I changed settings like below:
1.PAYLOAD_LENGTH is 30
2.Using 433M@1Mbps with RF_cmdPropTx & RF_cmdPropRx
3.PacketInterval = (uint32_t)(4000000*0.5f); It's 500ms.
Now they can communicate with other correctly.
And further test as below:
1.PAYLOAD_LENGTH is 4000
2.Using 433M@50Kbps/500Kbps with RF_cmdPropTxAdv & RF_cmdPropRxAdv
3.PacketInterval = (uint32_t)(4000000*0.5f); It's 500ms.
They also communicate with other correctly.
So I guess if using 1Mbps@RF_cmdPropTxAdv & RF_cmdPropRxAdv has some problems or somewhere should be modified?
Thanks!