<?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>What is maximum number of event handlers supported for radio notification event handler?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/1845/what-is-maximum-number-of-event-handlers-supported-for-radio-notification-event-handler</link><description>My application would like to receieve notifications at several different times before a radio notification event. Specifically the application needs to receive notification 250mS before and the flash manager requires notification 50mS before. 
 Does</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 12 Mar 2014 12:32:26 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/1845/what-is-maximum-number-of-event-handlers-supported-for-radio-notification-event-handler" /><item><title>RE: What is maximum number of event handlers supported for radio notification event handler?</title><link>https://devzone.nordicsemi.com/thread/8000?ContentTypeID=1</link><pubDate>Wed, 12 Mar 2014 12:32:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:12a7e4c8-f734-4dd9-a3fe-e6f581af3d36</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;With SDK 5.1.0/S110 6.0.0, ble_flash.c isn&amp;#39;t really usable, since it manipulates the NVMC directly, without using the softdevice APIs. None of the SDK examples should be using it, and any custom application should also be modified to not use it.&lt;/p&gt;
&lt;p&gt;ble_flash have been superseded by integrating an API for flash operations in the softdevice (sd_flash_* functions), which is then wrapped by the SDK pstorage module. If you have further questions on this, I suggest you look at the existing questions on this on this site, and if you can&amp;#39;t find the answers, post questions separately. The documentation for pstorage may also be helpful, and it is available here: &lt;a target="_blank" href="https://devzone.nordicsemi.com/documentation/nrf51/5.1.0/html/a00131.html" rel="nofollow"&gt;https://devzone.nordicsemi.com/documentation/nrf51/5.1.0/html/a00131.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is maximum number of event handlers supported for radio notification event handler?</title><link>https://devzone.nordicsemi.com/thread/7999?ContentTypeID=1</link><pubDate>Tue, 11 Mar 2014 22:08:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e52130cd-602b-4470-b578-bb0f51740129</guid><dc:creator>Anthony Ambuehl</dc:creator><description>&lt;p&gt;Hello Ole, thanks for the response!&lt;/p&gt;
&lt;p&gt;I&amp;#39;m a bit confused by your comment about the revision 2 of the device.  I am already using SDK 5.1.0 and soft device 6.0.0.  I am currently designing with nrf51822 evaluation kit, with a chip labeled N51822 QFAAFA 1328AA.&lt;/p&gt;
&lt;p&gt;Is this chip compatible with the SDK 5.1.0 and Soft Device 6.0.0?&lt;/p&gt;
&lt;p&gt;Does the ble_flash module in the SDK 5.1.0 still require the radio notification event handler to be called?&lt;/p&gt;
&lt;p&gt;If I&amp;#39;m not using ble_flash module code in my application can I remove the call to ble_flash_on_radio_active_evt?  I based my application off the ancs example which included ble_flash.c&lt;/p&gt;
&lt;p&gt;Has the ble_flash code been replaced by soft device routines?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What is maximum number of event handlers supported for radio notification event handler?</title><link>https://devzone.nordicsemi.com/thread/7998?ContentTypeID=1</link><pubDate>Tue, 11 Mar 2014 11:20:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:830f7bef-0d1f-4033-affe-e8c44180df02</guid><dc:creator>Ole Morten</dc:creator><description>&lt;p&gt;No, you can have only one notification distance, so the above will give a notification only at the latter distance. However, there is no way to get a notification 250 milliseconds before, and the only legal values for this parameter are those distances given in nrf_soc.h:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;
/**@brief Possible values of ::nrf_radio_notification_distance_t. */
enum NRF_RADIO_NOTIFICATION_DISTANCES
{
  NRF_RADIO_NOTIFICATION_DISTANCE_NONE = 0, /**&amp;lt; The event does not have a notification. */
  NRF_RADIO_NOTIFICATION_DISTANCE_800US,    /**&amp;lt; The distance from the active notification to start of radio activity. */
  NRF_RADIO_NOTIFICATION_DISTANCE_1740US,   /**&amp;lt; The distance from the active notification to start of radio activity. */
  NRF_RADIO_NOTIFICATION_DISTANCE_2680US,   /**&amp;lt; The distance from the active notification to start of radio activity. */
  NRF_RADIO_NOTIFICATION_DISTANCE_3620US,   /**&amp;lt; The distance from the active notification to start of radio activity. */
  NRF_RADIO_NOTIFICATION_DISTANCE_4560US,   /**&amp;lt; The distance from the active notification to start of radio activity. */
  NRF_RADIO_NOTIFICATION_DISTANCE_5500US    /**&amp;lt; The distance from the active notification to start of radio activity. */
};

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I would also like to recommend you to upgrade to second revision chips for development, since that is the ones you&amp;#39;ll most likely end up using in production. That will also enable you to use SDK 5.1.0/S110 version 6.0.0, which has the flash writing builtin in the softdevice.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>