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.

CC2530: Association Request is not sent using MSA_AssociateReq()

Part Number: CC2530
Other Parts Discussed in Thread: TIMAC

I am working with application based on TIMAC stack. Trying to send Association Request explicitly from FFD device in order to join it to another one FFD device configured as a coordinator using following code:

msa_AssociateReq.sec.securityLevel = MAC_SEC_LEVEL_NONE;
msa_AssociateReq.logicalChannel = MAC_CHAN_11;
msa_AssociateReq.channelPage = MAC_CHANNEL_PAGE_0;
msa_AssociateReq.coordAddress.addrMode = SADDR_MODE_SHORT;
msa_AssociateReq.coordAddress.addr.shortAddr = 0x0000;
msa_AssociateReq.coordPanId = 0x4762;
if (msa_IsDirectMsg)
  msa_AssociateReq.capabilityInformation = MAC_CAPABLE_ALLOC_ADDR | MAC_CAPABLE_RX_ON_IDLE;
else
  msa_AssociateReq.capabilityInformation = MAC_CAPABLE_ALLOC_ADDR;
msa_BeaconOrder = MSA_MAC_BEACON_ORDER;
msa_SuperFrameOrder = MSA_MAC_SUPERFRAME_ORDER;
MSA_AssociateReq();

However, using RF sniffer I don't see that this device is actually trying to send Association Request. However, I am able to trigger sending of the Beacon Request.

What can be the problem?