This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC1101通信问题

Other Parts Discussed in Thread: CC1101

我现在想用时分的方法实现三台设备发送,一台设备接收,用的51单片机。我想问问下面的代码中,我在一条信道发送了一个信号后,然后将CC1101切换成空闲状态,然后延迟200ms,那么在这200ms内,这条信道能空出来给别的设备进行通信吗?

while(1)
{

halRfSendPacketAdd(TxBuf, LEN,OBJ);
led_flashing();
halSpiStrobe(CCxxx0_SIDLE);
delay200ms();

}