<?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>How to disable Scan response</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/56616/how-to-disable-scan-response</link><description>Hello we want to save power and there we had the idea to not send the scan response to the central. Because we don&amp;#39;t need this exta 31 Byte for advertising data. 
 We use SDK 16 with Softdevice &amp;quot;s132_nrf52_7.0.1_softdevice&amp;quot;. 
 I was able to don&amp;#39;t set</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 17 Jan 2020 08:39:58 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/56616/how-to-disable-scan-response" /><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229536?ContentTypeID=1</link><pubDate>Fri, 17 Jan 2020 08:39:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d2d8491-71e0-4de6-a4ad-ff0ba17acfca</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi Markus&lt;/p&gt;
&lt;p&gt;In that case, I don&amp;#39;t think we&amp;#39;ll be able to help you, as there is no way to &amp;quot;forbid&amp;quot; the SoftDevice from sending a scan response when a request is received.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229456?ContentTypeID=1</link><pubDate>Thu, 16 Jan 2020 15:30:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8f72fb26-eb93-44e8-bde0-1d7024063212</guid><dc:creator>bama</dc:creator><description>&lt;p&gt;Hi Simonr,&lt;/p&gt;
&lt;p&gt;I never has use the whitelist but im correct that only Centrals can connect which are within that whitelist? At the end we will have some special central&amp;#39;s which will connect to our Tag but we will never know the address on our Tags&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229409?ContentTypeID=1</link><pubDate>Thu, 16 Jan 2020 12:57:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5885289d-c7a8-46d3-8852-09a52c7359f7</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi Markus&lt;/p&gt;
&lt;p&gt;In order to disable the scan responses completely, you will have to use the whitelist advertisement feature, as per the core spec &amp;quot;The Host shall set the advertising filter policy to &amp;#39;process scan and connection requests from all devices&amp;#39;.&amp;quot; It is common that the scanner will ignore advertisers that don&amp;#39;t respond to scan requests, which is why the scan response replies with an empty data packet.&lt;/p&gt;
&lt;p&gt;You can check out &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/20796/disable-scan-response"&gt;this thread&lt;/a&gt; which has a great discussion on the matter.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229372?ContentTypeID=1</link><pubDate>Thu, 16 Jan 2020 09:39:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9e28e2dc-17b2-44b0-9cbb-ea8ad6e9e11e</guid><dc:creator>bama</dc:creator><description>&lt;p&gt;this will not help&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229356?ContentTypeID=1</link><pubDate>Thu, 16 Jan 2020 09:08:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5a08ee8-6622-4cd4-b6f2-68c1469d1185</guid><dc:creator>Dmitriy L1</dc:creator><description>&lt;p&gt;Not sure would it help or not but I&amp;#39;d try to set scan response data pointer to NULL manually after calling &lt;strong&gt;ble_advertising_init() &lt;/strong&gt;function.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;
err_code = ble_advertising_init(&amp;amp;m_advertising, &amp;amp;init);
APP_ERROR_CHECK(err_code);

m_advertising.adv_data.scan_rsp_data.len = 0;
m_advertising.adv_data.scan_rsp_data.p_data = NULL;
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229344?ContentTypeID=1</link><pubDate>Thu, 16 Jan 2020 08:35:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:813f73fb-7ef7-4276-a292-312408400b8d</guid><dc:creator>bama</dc:creator><description>&lt;p&gt;this is still set to false&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to disable Scan response</title><link>https://devzone.nordicsemi.com/thread/229342?ContentTypeID=1</link><pubDate>Thu, 16 Jan 2020 08:30:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8132d561-1e1c-435d-b496-e96ee9e9aa23</guid><dc:creator>Dmitriy L1</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Have you tried to set &lt;strong&gt;ble_adv_extended_enabled &lt;/strong&gt;flag to &lt;strong&gt;false &lt;/strong&gt;?&lt;/p&gt;
&lt;p&gt;Like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;  ble_advertising_init_t init;
  
  init.config.ble_adv_extended_enabled = false;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>