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.

CC1310: Collector initiate a dissociation

Part Number: CC1310

I'm using the 15.4 Collector and Sensor example (simplelink_cc13x0_sdk_1_40_00_10).

How would i get the Collector to remove a Sensor that has joined it's network.  After the dissociation is complete,  the sensor should be go into the "beacon request" mode.

  • Please see the function removeTheFirstDevice() in csf.c which is an example on how to remove the first device that connected to the collector. You can use that as a frame to remove any desired device. Once sensor receives the disassociate req this message it will remove itself from the network. In the sensor application you wil get a notification in the funciton jdllcDisassocIndCb() (file sensor.c) where you can implement the desired logic, for example starting to perform active scan(sending beacon requests).