<?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 find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/8663/how-to-find-the-advertisement-count-in-nrf51</link><description>Hii guys I am using an nrf51 DK board for my project and I am trying to find the number of advertisements send from the time the board was power up or reset. From my knowledge there is no ble event to find the advertisement was send(tell me if any). So</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 07 Apr 2017 07:18:25 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/8663/how-to-find-the-advertisement-count-in-nrf51" /><item><title>RE: How to find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/thread/31732?ContentTypeID=1</link><pubDate>Fri, 07 Apr 2017 07:18:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1666458-ab2f-465b-8ae4-0e21204074e1</guid><dc:creator>Ulrich Myhre</dc:creator><description>&lt;p&gt;Basically, you can&amp;#39;t know that with the current stack. Advertisements are not a reliable transfer, but a way for your device to let others know of its existence. I guess this is why the Bluetooth Specification does not implement any counters here.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/thread/31731?ContentTypeID=1</link><pubDate>Tue, 14 Feb 2017 12:45:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0b1a94ba-0a52-4061-bf13-9073c62c0b89</guid><dc:creator>pbn4</dc:creator><description>&lt;p&gt;I know this is a bit old topic, but what if one does not only advertise, e.g. scan also. How can you measure how many advertising packets you have sent so far?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/thread/31730?ContentTypeID=1</link><pubDate>Tue, 11 Aug 2015 12:11:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:73d22b6f-d13f-44b5-bbfa-8d61b38ea121</guid><dc:creator>Petter Myhre</dc:creator><description>&lt;p&gt;I just want to add that we have a tutorial about Radio Notifications, see &lt;a href="https://devzone.nordicsemi.com/tutorials/14/radio-notification/"&gt;this&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/thread/31729?ContentTypeID=1</link><pubDate>Tue, 11 Aug 2015 11:10:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:02f32684-1cc2-470a-9c07-6388a871a6b4</guid><dc:creator>Ulrich Myhre</dc:creator><description>&lt;p&gt;Yes, the advertising procedure will advertise on 3 channels and wait for a scan request after each advertisement. However, you should only get one notification per full event. If you want to know each individual advertisement report on every channel, you will have to multiply the number you get with 3 (or the number of channels, if you are disabling some of the channels for any reason).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/thread/31728?ContentTypeID=1</link><pubDate>Tue, 11 Aug 2015 10:54:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:30bc95f0-fbf4-4c3d-a4af-bd0e8b904419</guid><dc:creator>Pavan kumar</dc:creator><description>&lt;p&gt;Hii Ulrich thanks  for your reply&lt;/p&gt;
&lt;p&gt;But I am Little bit confused with the Figure 5. on page number 16 that saying that multiple packets may also transfer in a single radio notification in that case how can we found the count of advertisement frames&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to find the advertisement count in nrf51</title><link>https://devzone.nordicsemi.com/thread/31727?ContentTypeID=1</link><pubDate>Tue, 11 Aug 2015 10:31:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:40893adc-ea32-4fe2-b1c8-ab4b30770ce4</guid><dc:creator>Ulrich Myhre</dc:creator><description>&lt;p&gt;Hi Pavan,&lt;/p&gt;
&lt;p&gt;There is no such information being recorded in the stack, but it is possible to do it yourself if you need to.&lt;/p&gt;
&lt;p&gt;If all you do is advertise, it is possible to use radio notifications to increment a counter. This feature will give you an interrupt before and/or after the radio is used by the stack.&lt;/p&gt;
&lt;p&gt;For more information, see the &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.pdf.sds/S110_SDS_v2.0.pdf"&gt;SoftDevice Specification&lt;/a&gt; Chapter 8 (this is for S110, but the feature is similar in S120 and S130), the &lt;strong&gt;ble_radio_notification&lt;/strong&gt; example in the SDK (&lt;a href="https://devzone.nordicsemi.com/tutorials/14/radio-notification/"&gt;tutorial here&lt;/a&gt;) and the
&lt;a href="http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.s110.api.v8.0.0%2Fgroup___n_r_f___s_o_c___f_u_n_c_t_i_o_n_s.html&amp;amp;anchor=ga15378609daca09588e620b64555fc2e8"&gt;sd_radio_notification_cfg_set&lt;/a&gt; documentation in the Info Center.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>