This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Resolvable Private Address

我在peripheral.c文件中加入如下代码,使能 Resolvable Private Address模式

stat = GAP_ConfigDeviceAddr(ADDRMODE_PRIVATE_RESOLVE, NULL);

if (stat != SUCCESS)
{
gapRole_state = GAPROLE_ERROR;
}
//Set timeout value to 5 minute
GAP_SetParamValue( TGAP_PRIVATE_ADDR_INT , 5);

我的问题是,本机如何获取这个Resolvable Private Address。

我用这个函数 GAPRole_GetParameter(GAPROLE_BD_ADDR, ownAddress) 获取到的都是public address, 固定的。

万分感谢!!