Using Collector Stack version 4.20.01.04
Once I start the collector Csf_networkUpdate function is never called and Collector stays at Starting...
I was checking to see what the problem may be and found out software keeps staying at cllc.c:
static void processState(Cllc_coord_states_t state) { switch(state) { case Cllc_coordStates_scanActive: if(!CONFIG_FH_ENABLE) { /* Active scan */ sendScanReq(ApiMac_scantype_active); // stays here } break; case Cllc_coordStates_scanActiveCnf: if(!CONFIG_FH_ENABLE) { /* Energy detect scan */ sendScanReq(ApiMac_scantype_energyDetect); // never enters here } break;
What might be the reason for it?