<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Failed to receive scan_response</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/34225/failed-to-receive-scan_response</link><description>Hello everyone, I&amp;#39;ve been trying to get scan_response data from a specific advertiser. Advertiser being nrf52810 running the s112 SoftDevices and Scanner being nrf52832 running the s132 SoftDevices. When I scan for devices Scanner detects the advertiser</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 15 May 2018 13:39:24 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/34225/failed-to-receive-scan_response" /><item><title>RE: Failed to receive scan_response</title><link>https://devzone.nordicsemi.com/thread/132064?ContentTypeID=1</link><pubDate>Tue, 15 May 2018 13:39:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b8024972-2441-4bca-9765-07ebd49a5e58</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Does the device keep scanning after getting an address match on the main advertisement packet?&amp;nbsp; Looks like you have configured everything correctly, but not sure what happens after you get a match. Could you try to add this code to your&amp;nbsp;&lt;code&gt;BLE_GAP_EVT_ADV_REPORT&lt;/code&gt;&amp;nbsp;event and comment out the rest just to check if it ever receives a scan response from this device:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    uint8_t req_mac_addr[] = {0x85, 0x8d, 0x5e, 0x32, 0xBC, 0xAC}; // Insert address here
    
    if(!memcmp(req_mac_addr, p_adv_report-&amp;gt;peer_addr.addr, sizeof(req_mac_addr)))
    {
        if (p_adv_report-&amp;gt;type.scan_response)
        {
            __BKPT(0); // Break here if we received scan response from known device
        }&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>