<?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>S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14733/s132-scan-interval-window-adv-interval</link><description>Hi, I want to know relation about Scan interval/window, ADV interval. 
 I knew scanner is scan during window term. 
 Then, When i use central and peripheral at one device, i set Scan interval 100ms/Scan window 100ms/ADV interval 50ms, It is working</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 24 Jun 2016 12:56:19 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14733/s132-scan-interval-window-adv-interval" /><item><title>RE: S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/thread/56239?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2016 12:56:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:81549437-97a2-4889-9a18-0e304452ed91</guid><dc:creator>Anders Strand</dc:creator><description>&lt;p&gt;This happens internally, and is not documented. Of you want to advertise with a certain interval, you can not scan 100% of the time.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/thread/56238?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2016 12:50:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c8149c7f-e08b-4825-84ef-9ae777c10525</guid><dc:creator>HakJae</dc:creator><description>&lt;p&gt;Then, how many times need to raise priority?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/thread/56237?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2016 12:13:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5fc44150-949b-4c78-b13b-cc89353024b2</guid><dc:creator>HakJae</dc:creator><description>&lt;p&gt;Thank you. It is a help for me.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/thread/56236?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2016 09:20:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4987aa62-9632-4470-85ff-0ca406548585</guid><dc:creator>Anders Strand</dc:creator><description>&lt;p&gt;The softdevice will schedule this ahead of time. If you try to scan 100% of the time, the advertisement will be blocked a certain amount of times until i has its priority raised enough. Then the advertisement will occur. So you will have some advertisement, but not as often as stated in the advertising interval.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/thread/56235?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2016 08:27:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:13ad6b45-0a47-4f2d-aff9-f2e703d9c4ef</guid><dc:creator>HakJae</dc:creator><description>&lt;p&gt;Thank you for your anwer. Then, while Scaning evt occur and handling, ADV evt occur. ADV evt impliment after Scaning evt ? or blocked ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: S132, Scan interval/window, ADV interval.</title><link>https://devzone.nordicsemi.com/thread/56234?ContentTypeID=1</link><pubDate>Fri, 24 Jun 2016 06:32:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ad6de10e-1a39-4e58-bba4-5c14a29d5ac7</guid><dc:creator>shibshab</dc:creator><description>&lt;p&gt;The S132 is only capable of running one role (in this case, scanner or advertiser) at a time, so scheduling must be performed to select which role should be active at a given time.&lt;/p&gt;
&lt;p&gt;See chapter 16 &amp;quot;Scheduling&amp;quot; in the &lt;a href="http://infocenter.nordicsemi.com/pdf/S132_SDS_v2.0.pdf"&gt;S132 SoftDevice Specification&lt;/a&gt;. Here it states that the Scanner and Advertiser will be in the same priority (table 30), in which case the following statement will apply:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If both timing-activity A and timing-activity B have same priority, the timing-activity which was requested first will get the timing-event.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In other words, whichever sent the request first will get the timing-event.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;However, as neither scanning nor advertising are timing-sensitive tasks, this should not impose any problems.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In your case even though the scanner is trying to take all the radio time (by having Scan Window = Scan Interval) the advertiser role should also get some radio time, although no guarantees are given. &lt;strong&gt;If you see an issue with not enough advertisements being sent, you could decrease the scan window to reduce the amount of scheduling conflicts.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Edit: In the aforementioned table 30, it is stated that an advertiser or scanner which has been blocked several times will have its priority raised to Third Priority. This is what ensures that both scanner and advertiser roles gets radio time.&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>