Hi,
my project is based on the example 'ble_app_proximity' from SDK ver 17.0.2. When I set a longer DEVICE_NAME, for example
#define DEVICE_NAME "123456789ABCDEF"
the string is cut up after the first 12 characters, so I am just seeing the name "123456789ABC" when advertising., even though in the advertising_init, I set the name type to full name:
init.advdata.name_type = BLE_ADVDATA_FULL_NAME;
I am aware of another question in this forum where it was suggested to put the list of UUID's in the scan response packet rather than the advertise packet due to missing space in the advertise packet. But this would mean my scanner would need to send a scan request in order to get the list of UUID's, and this is not an option in my case.
Is there any other workaround that does not include changing the scanner's behaviour?
Thank you kindly for your help.