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.

CC1312PSIP: sensor/collector project response when devices are paired

Part Number: CC1312PSIP

Tool/software:

I need to call into my code from the collector.c/csf.c file functions when devices are added to the network.  I tried hooking into ApiMac_assocStatus_t cllcDeviceJoiningCB(
ApiMac_deviceDescriptor_t *pDevInfo,
ApiMac_capabilityInfo_t *pCapInfo)

here: 

/* Make sure the device is in our PAN */
if(pDevInfo->panID == devicePanId)
{
/* Update the user that a device is joining */
status = Csf_deviceUpdate(pDevInfo, pCapInfo);
if(status==ApiMac_assocStatus_success)
{
#ifdef FEATURE_MAC_SECURITY
/* Add device to security device table */
Cllc_addSecDevice(pDevInfo->panID,
pDevInfo->shortAddress,
&pDevInfo->extAddress, 0);
#endif /* FEATURE_MAC_SECURITY */

// Indicate that the device has joined so that pairing can finish
deviceJoined(pDevInfo->shortAddress);

where deviceJoined is my function to indicate that devices are joined.  This did not seem to work.  Where can I get this indication?

Thank you,

Kevin