I have a question about Bluetooth MAC address.

Get the BLE address with sd_ble_gap_address_get() and send it to the smartphone app on the other device.
However, I noticed that the address that can be obtained with sd_ble_gap_address_get() is different every time,

and when I investigated, the address type was "BLE_GAP_ADDR_TYPE_RANDOM_STATIC".
I would like to get the address of "BLE_GAP_ADDR_TYPE_PUBLIC" which is always unique.

In another question, there was an answer to sd_ble_gap_address_set() "BLE_GAP_ADDR_TYPE_PUBLIC",

but instead I want to get the address registered by the IEEE Registration Authority.

Related