<?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>unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/115847/unable-to-build-software-using-keil-mdk</link><description>L.S., 
 
 I&amp;#39;m trying to build an &amp;quot;Arduino&amp;quot; port for the nrf52840 (Seeed board). 
 When building an example I&amp;#39;m getting the following errors during the link phase: 
 .\Objects\nrf52_SoftwareSerial.axf: Error: L6218E: Undefined symbol SaSi_LibInit (referred</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 29 Oct 2024 12:20:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/115847/unable-to-build-software-using-keil-mdk" /><item><title>RE: unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/thread/508342?ContentTypeID=1</link><pubDate>Tue, 29 Oct 2024 12:20:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1d67bc46-4c31-45e3-bab5-613276263a15</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Okay, then I&amp;#39;m afraid there is not much we can do on our end, since we&amp;#39;re not familiar with SDKs that aren&amp;#39;t ours nor Keil v6 as we&amp;#39;re only maintaining the v5 solution, SEGGER solutions and the Zephyr based nRF Connect SDKfor the time being.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/thread/508203?ContentTypeID=1</link><pubDate>Mon, 28 Oct 2024 14:51:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:378331de-cd97-42be-a971-96e3c781c22b</guid><dc:creator>Ruuddb</dc:creator><description>&lt;p&gt;Hello Simon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Well it&amp;#39; builds, but still crashes on a hardware problem somewhere.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The software has been build by someone else, I&amp;#39;m using the code on:&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://github.com/Seeed-Studio/Adafruit_nRF52_Arduino"&gt;https://github.com/Seeed-Studio/Adafruit_nRF52_Arduino&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;which should work.&lt;/p&gt;
&lt;p&gt;So, I&amp;#39;m not using the nordic SDK.&amp;nbsp; Examples from your SDK (using Keil V5) seem to work ok.&lt;/p&gt;
&lt;p&gt;But we are using V6...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;REgards,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Ruud&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/thread/508188?ContentTypeID=1</link><pubDate>Mon, 28 Oct 2024 13:53:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:314e962c-157d-4159-a450-6f75098387bd</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;From your last reply, did you get anywhere? From what I can see you need to add&amp;nbsp;Cryptocell to your project in sdk_config.h with the following:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;p&gt;&lt;strong&gt;#define NRF_CRYPTO_ENABLED 1&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;#define NRF_CRYPTO_BACKEND_CC310_ENABLED 1&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;#define NRF_CRYPTO_BACKEND_CC310_BL_ENABLED 0&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;#define NRF_CRYPTO_BACKEND_MICRO_ECC_ENABLED 0&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Include the path to these files and add those to project settings:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;/external/nrf_cc310/lib/cortex-m4/hard-float&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;/external/nrf_cc310/include&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;As well as initialize crypto in your code with an include and an init function:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;#include &amp;quot;nrf_crypto.h&amp;quot;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;void crypto_init(void)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;{&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;ret_code_t ret = nrf_crypto_init();&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;if (ret != NRF_SUCCESS) {&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;// Handle error&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;}&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/thread/508145?ContentTypeID=1</link><pubDate>Mon, 28 Oct 2024 12:38:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:074a163b-1039-4271-b18b-719adf111442</guid><dc:creator>Ruuddb</dc:creator><description>&lt;p&gt;I discovered a library hidden betwen teh sources of the tree that contains the missing symbols.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/thread/508079?ContentTypeID=1</link><pubDate>Mon, 28 Oct 2024 07:59:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:035d4f3c-0f4c-4990-bb50-2016ce179694</guid><dc:creator>Ruuddb</dc:creator><description>&lt;p&gt;I assumed that these functions are present in the BLE library in Flash memory. Where can I find a list of all functions that are present in the BLE library?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: unable to build software using Keil MDK</title><link>https://devzone.nordicsemi.com/thread/508006?ContentTypeID=1</link><pubDate>Fri, 25 Oct 2024 20:54:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cc6393a2-419a-4db8-864f-4c6f11d1a87a</guid><dc:creator>AMarch01</dc:creator><description>&lt;p&gt;Perhaps you are not linking to a library as mentioned here?&lt;br /&gt;&lt;br /&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/81053/troubles-linking-after-switching-to-version-17-of-the-sdk"&gt;devzone help&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>