Hello
I want to get the MAC address of my custom device, is it possible to get the mac address of the nrf52832? and if it s possible , in which register?
Thank you
Hello
I want to get the MAC address of my custom device, is it possible to get the mac address of the nrf52832? and if it s possible , in which register?
Thank you
There are some subtle differences in the API's between SDK's but basically you can get the public bluetooth address (ie, mac id) via below:
sd_ble_gap_address_get(&ble_addr);
ble_addr needs to be a struct of type ble_gap_addr_t
There is another way too if you are not using the SD. Above is for soft device.
There are some subtle differences in the API's between SDK's but basically you can get the public bluetooth address (ie, mac id) via below:
sd_ble_gap_address_get(&ble_addr);
ble_addr needs to be a struct of type ble_gap_addr_t
There is another way too if you are not using the SD. Above is for soft device.