<?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>BLE Advertising Channel Configuration for Certification</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126209/ble-advertising-channel-configuration-for-certification</link><description>Our custom product, based on the nRF52832, is undergoing certification. The testing laboratory requires that only one BLE advertising channel be active at a time—first channel 37, then channel 39. 
 I have attempted to configure this in our firmware,</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 18 Dec 2025 13:26:18 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126209/ble-advertising-channel-configuration-for-certification" /><item><title>RE: BLE Advertising Channel Configuration for Certification</title><link>https://devzone.nordicsemi.com/thread/557332?ContentTypeID=1</link><pubDate>Thu, 18 Dec 2025 13:26:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6f75e193-e516-4644-8cbf-ac273d279496</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Which SDK are you using? nRF5SDK or nRF Connect SDK.&lt;/p&gt;
&lt;p&gt;on nRf5SDK it is quite simple, you use the channel_mask member for that&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;static ble_gap_adv_params_t adv_params = {
    .properties    = BLE_GAP_ADV_PROPERTIES_TYPE_NONCONNECTABLE_NONSCANNABLE,
    .interval      = MSEC_TO_UNITS(100, UNIT_0_625_MS),
    .channel_mask  = { .ch_37_off = 0, .ch_38_off = 1, .ch_39_off = 1 }, /* only ch37 */
};

sd_ble_gap_adv_set_configure(&amp;amp;adv_handle, &amp;amp;adv_data, &amp;amp;adv_params);
sd_ble_gap_adv_start(adv_handle, APP_BLE_CONN_CFG_TAG);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;But If you are using nRf Connect SDK, then I need to dig a bit more about it, I think you need to HCI command API to set the channel mask .&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>