1.. zephyr:code-sample:: bluetooth_broadcaster_multiple 2 :name: Multiple Broadcaster 3 :relevant-api: bluetooth 4 5 Advertise multiple advertising sets. 6 7Overview 8******** 9 10A simple application demonstrating the Bluetooth Low Energy Broadcaster that 11uses multiple advertising sets functionality. 12 13This sample advertises two non-connectable non-scannable advertising sets with 14two different SID. Number of advertising sets can be increased by updating the 15:kconfig:option:`CONFIG_BT_EXT_ADV_MAX_ADV_SET` value in the project configuration file. 16 17When building this sample combined with a Bluetooth LE Controller, the 18advertising data length can be increased from the default 31 bytes by updating 19the Controller's :kconfig:option:`CONFIG_BT_CTLR_ADV_DATA_LEN_MAX` value. The size of the 20manufacturer data is calculated to maximize the use of supported AD data length. 21 22Requirements 23************ 24 25* A board with Bluetooth Low Energy with Extended Advertising support. 26 27Building and Running 28******************** 29 30This sample can be found under 31:zephyr_file:`samples/bluetooth/broadcaster_multiple` in the Zephyr tree. 32 33To test this sample use the Observer sample with Extended Scanning enabled, 34found under 35:zephyr_file:`samples/bluetooth/observer` in the Zephyr tree. 36 37See :zephyr:code-sample-category:`Bluetooth samples section <bluetooth>` for details. 38