This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Advertising 1650 bytes of Host advertising data in an Auxiliary segment using Advertising Extensions

The BLE core specification states that using advertising extensions, the total host advertising data that can be advertised is 1650 bytes. This is achieved through fragmentation of data in multiple PDUs and chaining them together as one Auxiliary segment. 

I implemented extended advertising on nRF52832, and advertised custom data using the Manufacturer Specific Data field. But the maximum buffer size that I could provide for my advertising data was equal to BLE_GAP_ADV_SET_DATA_SIZE_EXTENDED_MAX_SUPPORTED, which has the value 255 bytes. The advertisements were non-connectable and non-scannable undirected, and this 255 bytes of data used one AUX_ADV_IND PDU and one AUX_CHAIN_PDU. Thus I'm only able to send a maximum of 255 bytes of advertising data in one extended advertising event.

But I actually wanted my application to use more ADV_CHAIN_IND PDUs and fragment 1650 bytes of data as the specification says. Does your SoftDevice support sending 1650 bytes of data in a single extended advertising event? 

Related