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.

collector和sensor信道使用,433频段,如何让8个collector,使用0-7信道,每个collector使用一个?如何设置?

sensor需要修改配置吗?

  • it can first check for a channel with lowest RF energy by performing a energy detect scan to select the channel with lowest energy or least interference
    collector在建立网络前,会扫描所有设定的可用信道,选择一个最“干净”的信道。
  • #define CONFIG_CHANNEL_MASK { 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, \
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
    0x00, 0x00, 0x00, 0x00, 0x00 }
    这里FF是打开0-7的信道所有信道?
    collector扫描选择最“干净”信道,其他collector,还会复用次信道吗?如果collector固定信道,sensor扫描会受影响吗?

    STATIC coordInformation_t coordInfoBlock =
    {
    CLLC_CHAN_LOWEST,
    0x0001,
    CONFIG_COORD_SHORT_ADDR,
    Cllc_states_initWaiting,
    Cllc_coordStates_initialized
    };