<?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>Problem compiling SPI example for nrf52810.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/39711/problem-compiling-spi-example-for-nrf52810</link><description>I am trying to compile the SPI example in SDK 15.2.0 for nrf52810. I am getting a compiler error in SES on nrfx_uart.c: 
 I modified the project according to the SDK documentation for nrf52810. Same code compiles fine with the project set for nrf52832</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 18 Mar 2019 15:02:28 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/39711/problem-compiling-spi-example-for-nrf52810" /><item><title>RE: Problem compiling SPI example for nrf52810.</title><link>https://devzone.nordicsemi.com/thread/176776?ContentTypeID=1</link><pubDate>Mon, 18 Mar 2019 15:02:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0e06468d-5e97-4ad4-83da-b0faacbfdb55</guid><dc:creator>antoniov</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;did you solve this issue? I am getting the same error&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem compiling SPI example for nrf52810.</title><link>https://devzone.nordicsemi.com/thread/154171?ContentTypeID=1</link><pubDate>Tue, 23 Oct 2018 16:29:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:48e70099-21a3-4613-99e1-d5e2f8a9afc7</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;The trick is to note that 0xE7FE is the assembler instruction for &amp;quot;B .&amp;quot; which is just an infinite loop. That happens to be the default interrupt handler code for many systems, here&amp;#39;s an example for IAR:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;  279                                   PUBWEAK  UARTE0_UART0_IRQHandler
  280                                   SECTION .text:CODE:REORDER:NOROOT(1)
  281                           UARTE0_UART0_IRQHandler
  282    00000000 FEE7                  B .
 &lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;So the vector catch is simply showing that there was an interrupt but no actual handler supplied in the code other than the default handler. For IAR the vector default file is iar_startup_nrf52.s - an assembler file - but offhand I don&amp;#39;t recall what SES uses.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem compiling SPI example for nrf52810.</title><link>https://devzone.nordicsemi.com/thread/153931?ContentTypeID=1</link><pubDate>Mon, 22 Oct 2018 21:52:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b6654d6f-d0d4-4453-991c-4eab887134f8</guid><dc:creator>slayer49</dc:creator><description>&lt;p&gt;I&amp;#39;m using nrf52810 hardware not emulating with nrF52832 DK .&amp;nbsp; &amp;nbsp;I followed the instructions in the documentation for removing and adding files, as well as using Soft FPU mentioned in the other ticket.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know enough to figure what the vector catch is and how to resolve.&amp;nbsp; &amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem compiling SPI example for nrf52810.</title><link>https://devzone.nordicsemi.com/thread/153930?ContentTypeID=1</link><pubDate>Mon, 22 Oct 2018 21:48:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:da691c96-b358-4bb8-82b1-0ba28cce9ed7</guid><dc:creator>awneil</dc:creator><description>&lt;p&gt;I don&amp;#39;t see&amp;nbsp;&lt;code&gt;DEVELOP_IN_NRF52832&lt;/code&gt;&lt;span&gt;&amp;nbsp; in your defines?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Did you remove the&amp;nbsp;&lt;/span&gt;&lt;code&gt;&amp;lt;compiler&amp;gt;_startup_nrf52.s&lt;/code&gt;&lt;span&gt;&amp;nbsp;&amp;amp;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code&gt;system_nrf52.c&lt;/code&gt;. and replace with&amp;nbsp;&lt;code&gt;&amp;lt;compiler&amp;gt;_startup_nrf52810.s&lt;/code&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code&gt;system_nrf52810.c ?&lt;/code&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Problem compiling SPI example for nrf52810.</title><link>https://devzone.nordicsemi.com/thread/153929?ContentTypeID=1</link><pubDate>Mon, 22 Oct 2018 21:08:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4dc516cf-b46d-4c11-b7fd-a034de0607d2</guid><dc:creator>slayer49</dc:creator><description>&lt;p&gt;If I remove nrfx_uart.c from the project it compiles, but stopped by vector catch:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/Screen-Shot-2018_2D00_10_2D00_22-at-2.10.55-PM.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>