<?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>Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/59238/sending-a-single-ble-advertising-package-fails</link><description>I am trying to create an application which would send data once a minute. The application is based on BLE advertising packages, because it should be the most simple method. It seems that the radio is running and the radio sends something, but I cannot</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 02 Apr 2020 14:40:03 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/59238/sending-a-single-ble-advertising-package-fails" /><item><title>RE: Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/thread/243226?ContentTypeID=1</link><pubDate>Thu, 02 Apr 2020 14:40:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d840361f-0549-4812-a3cb-242720fb4571</guid><dc:creator>run_ar</dc:creator><description>&lt;p&gt;I do not think there are any special limitations when it comes to advertising in the sd.&lt;/p&gt;
&lt;p&gt;There is a old advertisement implementation in github that you could look at (but make sure you adjust the rx buffer size correctly if you decide to port it to nRF52); &lt;a href="https://github.com/NordicPlayground/nRF51-multi-role-conn-observer-advertiser"&gt;https://github.com/NordicPlayground/nRF51-multi-role-conn-observer-advertiser,&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Not sure if we have something publicly available for nRF52.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/thread/240936?ContentTypeID=1</link><pubDate>Fri, 20 Mar 2020 16:29:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce7cc6c5-d7d0-481b-8601-fa893db6ec5d</guid><dc:creator>Sami</dc:creator><description>&lt;p&gt;I have also decided to try the beacon example which uses SoftDevice S132. Indeed it might be the most simple approach. However, I hope that the support engineer has time for this issue, because sometimes the BLE stack does not provide enough flexibility.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/thread/240923?ContentTypeID=1</link><pubDate>Fri, 20 Mar 2020 15:44:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8bc78d9c-a802-4930-ba84-55d63864a225</guid><dc:creator>run_ar</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Wouldn&amp;#39;t it be much simpler to use our already qualified Bluetooth stack to do advertising for you? I.e. one thing is&amp;nbsp; to configure the radio to send a packet on a fixed channel every minute, but it might be quite a hassle to qualify this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/thread/240697?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2020 15:43:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b60d4d38-59f6-4db0-ad02-1afb24874bf3</guid><dc:creator>Sami</dc:creator><description>&lt;p&gt;I noticed that the frequency settings have nothing to do with the channels. It seems that channels 37, 38, and 39 which have been reserved for BLE advertising are located at 2,402, 2,426, and 2,480 MHz frequencies. As a consequence, the frequency settings should be 0x02, 0x1A, and 0x50 respectively.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;However, I tested all the frequencies, but nRF Connect still cannot find anything. Here is a sample code for channel 37 (2,402 MHz):&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;NRF_RADIO-&amp;gt;FREQUENCY = (0x00 &amp;lt;&amp;lt; 8) +    // Channel map between 2,400 ... 2,500 MHz
                        0x02;           // Channel 37 ... 2,402 MHz&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/thread/240573?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2020 09:08:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a44501f4-00c3-4e7a-9d71-099c63cdd3f1</guid><dc:creator>Sami</dc:creator><description>&lt;p&gt;I tried to set the frequency and the channel as follows:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_RADIO-&amp;gt;FREQUENCY = (0x00 &amp;lt;&amp;lt; 8) +    // Channel map between 2,400 ... 2,500 MHz
                        0x25;           // Channel 37&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I also tested channel map between 2,360 ... 2,460 MHz. I have also tested channels 38 and 39. nRF Connect cannot find anything.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Sending a single BLE advertising package fails</title><link>https://devzone.nordicsemi.com/thread/240506?ContentTypeID=1</link><pubDate>Wed, 18 Mar 2020 17:51:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5766bacc-94e7-4c57-bdcf-ffa4036ab473</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;I don&amp;#39;t see you setting NRF_RADIO-&amp;gt;FREQUENCY anywhere in the code. Default frequency is not in the set used for BLE advertising.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>