Hello I am doing a project and the part of it is to, scan the advertisements.. the application has to scan for the device advertising and get the device address, before connecting. I am not much interested in connection,just to get address of scan device. I am trying to use the parameter GAPROLE_SCAN_RSP_DATA, am I using the correct parameter? how can I get the address of the device,if I am correct if I am wrong can you tell how to get address. case GAPROLE_SCAN_RSP_DATA: if ( len <= B_MAX_ADV_LEN ) { VOID osal_memset( gapRole_ScanRspData, 0, B_MAX_ADV_LEN ); VOID osal_memcpy( gapRole_ScanRspData, pValue, len ); gapRole_ScanRspDataLen = len; // Update the Response Data ret = GAP_UpdateAdvertisingData( gapRole_TaskID, FALSE, gapRole_ScanRspDataLen, gapRole_ScanRspData ); } Regards, Lokesh