Nordic DevZone
Nordic Q&A
Blog
Online Power Profiler
DevAcademy
Search
Support
+
User
Site
Search
User
Home
>
Nordic Q&A
State
Verified Answer
View Voters
Login to vote on this thread
0
Login to vote on this thread
Replies
3 replies
Subscribers
73 subscribers
Views
2566 views
Users
0 members are here
Attachments (
0
)
Nordic Case Info
Case ID: 101520
Options
Share
More
This post is older than 2 years and might not be relevant anymore
More Info:
Consider searching for newer posts
How can I get the mac adress of my chip from main code?
gootoomoon
over 11 years ago
Can not find the mac adress related information from the PS or RM doc. Need your help!
Top Replies
Ole Morten
over 11 years ago
+1
verified
If you want to read out the Bluetooth address used by the chip, you can use the function sd_ble_gap_address_get(), defined in ble_gap.h. Edit: Not tx_address, just address.
frogofmagic
over 8 years ago
in reply to
Wojtek
+1
Because sd_ble_gap_address_get() read from NRF_FICR->DEVICEADDR, if you change to uint64_t deviceId = ((uint64_t)NRF_FICR->DEVICEADDR[1] << 32) | 0xC00000000000 | ((uint64_t)NRF_FICR->DEVICEADDR[0]…
Related