Retrieving the BD ADDR from the BCM20732

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Is it possible to retrieve the BD ADDR from the BCM20732? If yes, can you tell me the API function to use? Thanks

0 Likes
1 Solution
ShawnA_01
Employee
Employee
10 questions asked 5 comments on KBA First comment on KBA

Does this function get you what you need?

/**

* \brief Get Local Bluetooth Device Address

* \ingroup emconinfo

*

* \details This function returns the pointer to the local device address.

* Note that address is reversed with least significant byte located in offset 0.

*

*/

UINT8 *emconinfo_getAddr(void);

View solution in original post

2 Replies
ShawnA_01
Employee
Employee
10 questions asked 5 comments on KBA First comment on KBA

Does this function get you what you need?

/**

* \brief Get Local Bluetooth Device Address

* \ingroup emconinfo

*

* \details This function returns the pointer to the local device address.

* Note that address is reversed with least significant byte located in offset 0.

*

*/

UINT8 *emconinfo_getAddr(void);

Anonymous
Not applicable

Oh thanks. That was the point.

0 Likes