<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://test-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>nrf52832 + scanner + single channel + ncs 1.8.0</title><link>https://test-devzone.nordicsemi.com/f/nordic-q-a/88518/nrf52832-scanner-single-channel-ncs-1-8-0</link><description>Hello Team, 
 
 We have an application where we send 3 adv packets every 5 minutes. We listen to these adv packets on the scanner side with scan interval and scan window set to equal to ensure that, we are always scanning. 
 On both side we use nrf52832</description><dc:language>en-US</dc:language><generator>Telligent Community 13 Non-Production</generator><lastBuildDate>Tue, 07 Jun 2022 14:02:21 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://test-devzone.nordicsemi.com/f/nordic-q-a/88518/nrf52832-scanner-single-channel-ncs-1-8-0" /><item><title>RE: nrf52832 + scanner + single channel + ncs 1.8.0</title><link>https://test-devzone.nordicsemi.com/thread/371194?ContentTypeID=1</link><pubDate>Tue, 07 Jun 2022 14:02:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e3ff2fd5-a234-4744-94e7-aab3742da274</guid><dc:creator>user107732</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Yes, it is possible to advertise only on one channel in NCS.. You can&amp;nbsp;disable advertising on a specific channel using the following options&amp;nbsp;when you set the advertising parameters..&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;  /** Disable advertising on channel index 37. */
    BT_LE_ADV_OPT_DISABLE_CHAN_37 = BIT(15),
 
    /** Disable advertising on channel index 38. */
    BT_LE_ADV_OPT_DISABLE_CHAN_38 = BIT(16),
 
    /** Disable advertising on channel index 39. */
    BT_LE_ADV_OPT_DISABLE_CHAN_39 = BIT(17),&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For example, if you want to advertise only on channel 37, you can do the following:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;struct bt_le_adv_param *my_adv_param =
    BT_LE_ADV_PARAM(

            BT_LE_ADV_OPT_CONNECTABLE,

            BT_GAP_ADV_FAST_INT_MIN_2,
            BT_GAP_ADV_FAST_INT_MAX_2,
            NULL);
 
    my_adv_param-&amp;gt;options |= BT_LE_ADV_OPT_DISABLE_CHAN_38;
    my_adv_param-&amp;gt;options |= BT_LE_ADV_OPT_DISABLE_CHAN_39;
 
    err = bt_le_adv_start(my_adv_param, ad, ARRAY_SIZE(ad), sd, ARRAY_SIZE(sd));&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Swathy&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 + scanner + single channel + ncs 1.8.0</title><link>https://test-devzone.nordicsemi.com/thread/370753?ContentTypeID=1</link><pubDate>Thu, 02 Jun 2022 18:06:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8d145d5b-e1a3-48ce-a481-7cbf46db2641</guid><dc:creator>user112081</dc:creator><description>&lt;p&gt;Thanks Swathy for the confirmation.&lt;/p&gt;
&lt;p&gt;I assume, scanning on one channel is not possible but sending advertisements packets on only one channel is possible, right?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 + scanner + single channel + ncs 1.8.0</title><link>https://test-devzone.nordicsemi.com/thread/370720?ContentTypeID=1</link><pubDate>Thu, 02 Jun 2022 13:33:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:64985af6-b64d-4032-80a4-3af9f1e5eedb</guid><dc:creator>user107732</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Sorry, but it is not possible to scan only one channel.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Swathy&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>