<?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>Little compilation mistakes in new SDK 11</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/12561/little-compilation-mistakes-in-new-sdk-11</link><description>Hello, 
 Some little compilation errors. 
 in ble_radio_notification.h
typedef uint8_t nrf_radio_notification_distance_t; =&amp;gt; is no more defined in SDK but used here

in ble_radio_notification.c
sd_nvic_xxx =&amp;gt; NVIC_xxx and error codes are removed</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 05 Apr 2016 15:11:55 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/12561/little-compilation-mistakes-in-new-sdk-11" /><item><title>RE: Little compilation mistakes in new SDK 11</title><link>https://devzone.nordicsemi.com/thread/47675?ContentTypeID=1</link><pubDate>Tue, 05 Apr 2016 15:11:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:79174071-d413-4077-91bb-15f7e6591a3f</guid><dc:creator>Marius Heil</dc:creator><description>&lt;p&gt;Any chance that the listed errors are resolved very soon? I find it very inconveniant to edit the SDK files, especially for open source projects that are used by other people.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Little compilation mistakes in new SDK 11</title><link>https://devzone.nordicsemi.com/thread/47674?ContentTypeID=1</link><pubDate>Tue, 15 Mar 2016 11:36:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:522c72e7-6394-46f1-a3da-c8bb282c64ce</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;The radio notification issue is covered &lt;a href="https://devzone.nordicsemi.com/question/71636/ble_radio_notification-wont-compile/"&gt;here&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Little compilation mistakes in new SDK 11</title><link>https://devzone.nordicsemi.com/thread/47673?ContentTypeID=1</link><pubDate>Tue, 15 Mar 2016 11:16:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ae23a226-ae7c-46f5-96da-876123983143</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Thanks for reporting this Fabien, I will create a case for this. I will also find out why these modules were release without even been able to compile them.&lt;/p&gt;
&lt;p&gt;in ble_radio_notification.h
add &lt;code&gt;typedef uint8_t nrf_radio_notification_distance_t;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;in ble_radio_notification.c
add &lt;code&gt;#include &amp;quot;nrf_nvic.h&amp;quot;&lt;/code&gt; =&amp;gt; because sd_nvic_xxx functions are moved and no longer SVC calls.&lt;/p&gt;
&lt;p&gt;The ASSERT is only valid when you define either DEBUG_NRF or DEBUG_NRF_USER (please check nrf_asser.h file)
If you define it then I agree that your suggestion needs to applied.&lt;/p&gt;
&lt;p&gt;in nrf_drv_spi, line 519&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;ASSERT(p_tx_buffer != NULL || tx_buffer_length == 0); 
ASSERT(p_rx_buffer != NULL || rx_buffer_length == 0);
=&amp;gt;
 ASSERT(p_xfer_desc-&amp;gt;p_tx_buffer != NULL || p_xfer_desc-&amp;gt;tx_length == 0);
 ASSERT(p_xfer_desc-&amp;gt;p_rx_buffer != NULL || p_xfer_desc-&amp;gt;rx_length == 0);
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>