I have problems with the size of name of device (ble_svc_gap_device_name_set). We can put until 19 characters on device name.
Code: Select all
name = ble_svc_gap_device_name();
fields.name = (uint8_t *)name;
fields.name_len = strlen(name);
fields.name_is_complete = 1;
I see in a Nordic forum the maximum lenth of advertisement table is 31. Is it true?
https://devzone.nordicsemi.com/f/nordic ... nt-package