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.

cc260 如何切换设备的当前信道?

Other Parts Discussed in Thread: CC2630

TI工程师:

我现在厂测模式中需要测试设备4个信道的通信质量,故需要知道如何切换设备的当前信道。

static void PirSensor_setChanList(uint32_t newChanList)
{
zstack_sysConfigWriteReq_t writeReq = {0};

// Set ChanList
writeReq.has_chanList = true;
writeReq.chanList = newChanList;

(void)Zstackapi_sysConfigWriteReq(ztsEntity, &writeReq);
}

Zstackapi_sysConfigWriteReq只能设置网络信道集,不能设置设备的当前信道,然后再发送数据。

所以,请TI工程师告知如何更改设备的当前信道?