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.

Broadcaster

Other Parts Discussed in Thread: CC2650

Hi ,


 I am using cc2650 as Ble slave using spi serial interface., I took SimpleBLEPeripheral as a reference , Now I want to change the gap role to broadcaster from

 peripheral from my host controller. 

 And also I want to broadcast the custom data peridically based on my application requirement. .

 Shall I use the same SimpleBLEPeripheralStack for broadcaster as well ? .

  • Hi,

    We do have SimpleBLEBroadcaster example you can use and if you want to advertise dynamic data, you can look HCI_EXT_AdvEventNoticeCmd up our SW developer's guide.
  • Hello,

    Are you trying to broadcast during a connection or while not connected. You can add "PLUS_BROADCASTER" to your App project to enable the capability to broadcast NON-CONN advertisements during a connection. If you are not connected, you can simply use NON-CONN advertising with simpleBLEPeripheral.

    Best wishes
  • Hi.,

     Thanks for your quick response.,

    How can I start and stop the broadcasting when ever I required.,

    Ex. I want to broadcast the custom data for 100 ms after that I want to stop the broadcasting,in order to save the power consumption.