<?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>Docs on S110 software events?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/536/docs-on-s110-software-events</link><description>Folks, 
 Is there a document that describes the events generated by the S110 Soft Device and their interpretation? (Note: they&amp;#39;re not listed in the S110 SoftDevice Spec v1.1 PDF doc, and I can&amp;#39;t find them in the (Doxygen-generated) API webpages included</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 01 Oct 2013 16:37:17 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/536/docs-on-s110-software-events" /><item><title>RE: Docs on S110 software events?</title><link>https://devzone.nordicsemi.com/thread/2783?ContentTypeID=1</link><pubDate>Tue, 01 Oct 2013 16:37:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a3dda34b-9ead-4e62-9d67-b25cee1c0aac</guid><dc:creator>Mike Wirth</dc:creator><description>&lt;p&gt;Carles and Ole,&lt;/p&gt;
&lt;p&gt;Thanks for your useful replies.  Ole, point taken, on both the VDD_PA line and the caution on external LNAs.&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Docs on S110 software events?</title><link>https://devzone.nordicsemi.com/thread/2782?ContentTypeID=1</link><pubDate>Tue, 01 Oct 2013 12:42:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c085b1de-c714-4033-a0d5-7f331b834d8a</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;Be aware that if you try to control an external PA (which it sounds like), you can use VDD_PA physical line for this instead of a software solution. That line will be high while the radio is actually transmitting, and can therefore be used as a control signal directly (or through some sort of buffer).&lt;/p&gt;
&lt;p&gt;We normally don&amp;#39;t recommend using an external LNA, since all practical experience shows that this doesn&amp;#39;t give (almost) no extra range. The reason seems to be that it will amplify noise as much as it amplifies the signal, and hence gives (again, almost) equal SNR, which is what actually matters. Additionally, the increased noise gives poor blocking, and hence hurts the co-existence performance.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Docs on S110 software events?</title><link>https://devzone.nordicsemi.com/thread/2781?ContentTypeID=1</link><pubDate>Fri, 27 Sep 2013 06:11:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f3d70f9-ea5e-40d0-9759-5137ce066227</guid><dc:creator>Carles</dc:creator><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Is there a document that describes the events generated by the S110 Soft Device and their interpretation?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The Doxygen docs, but that depends on how you define &amp;quot;event&amp;quot;. The S110 SoftDevice can generate 3 types of events:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;SoC events, retrieved with sd_event_get(), NRF_EVENT_*&lt;/li&gt;
&lt;li&gt;BLE events, retrieved with sd_ble_evt_get(), BLE_&lt;em&gt;&lt;em&gt;EVT&lt;/em&gt;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Radio Notification events, configured with sd_radio_notification_cfg_set() and not retrieved using a function, instead a software interrupt is triggered.&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;So, thus far, I infer that I can get events before the radio goes on, and when it goes off, but not when it switches between TX and RX.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Correct, the S110 will allow the application to be notified of radio activity, but unfortunately does not provide a mechanism to differentiate between RX and TX.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Docs on S110 software events?</title><link>https://devzone.nordicsemi.com/thread/2780?ContentTypeID=1</link><pubDate>Thu, 26 Sep 2013 22:55:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b2714272-e4dd-45d1-8cfd-45443c58fb24</guid><dc:creator>Mike Wirth</dc:creator><description>&lt;p&gt;Well, by poking around in the S110 online API pages, I did find the following enum type:
&lt;code&gt;enum nrf_radio_notification_type_t&lt;/code&gt;
which is used by the following function:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;uint32_t sd_radio_notification_cfg_set	(nrf_radio_notification_type_t type, nrf_radio_notification_distance_t distance )&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;but not much discussion.&lt;/p&gt;
&lt;p&gt;So, thus far, I infer that I can get events before the radio goes on, and when it goes off, but not when it switches between TX and RX.&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;PS: Why can&amp;#39;t I use &amp;quot;[code]&amp;quot; around the second block above?  If I do, it repeats the contents of the first one. :(&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>