For "BLE Central" sample:
I get the same problem when I want to get the BLE devices' name
the "BLE Central" can only get 31-Bytes adv data in "device_found()" callback, but the device-name need more than 31-Bytes
in "nRF Connect" I get the BLE-device like this:
but in the "BLE Central" example, can only get 31-Bytes adv data like this:
in "device_found()" callback: I can only get the type: 0x01 0x06 0xFF, and the 0xFF 0x09 after this can't get,
and when i print the ad->len in
printk(" =>[%d][%d]\n",ad->len, net_buf_simple_max_len(ad) );
How can i get more than 31-Bytes adv data in "device_found()" callback for ad->data?