This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Using uuids_more_available

What are the mechanics of using 'uuids_more_available'? Is this list transmitted as a part of advertising data, scan response data, or both? How does the host know that this list has a non-zero elements?

  • @Andrey: uuids_more_available is a advertising data type. It tells the scanner that beside the list of UUID in the field there are more uuid available in the server attribute table on the peripheral.

    Depends on where you add the field in the advertising packet or scan response data structure (advdata) the list will be added in the latter or the former packet (check ble_advdata_set() )

    You should only use either uuids_complete or uuids_more_available, not two of them at the same time.

Related