<?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>Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/48136/using-soft-device-on-custom-board-with-nrf52840</link><description>Hello guys, 
 
 I am using SDK15.3.0 and BL654 modules containing nRF52840 on my custom board. In addition to that, I have both nRF52-DK and nRF52840-DK boards. I can program my custom boards through P19 connector, there is no issue with that. When I</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 04 Jun 2019 09:49:34 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/48136/using-soft-device-on-custom-board-with-nrf52840" /><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190716?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:49:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:89cc9a1e-ece8-4b20-9a66-6f084fd5f3c6</guid><dc:creator>bojan</dc:creator><description>&lt;p&gt;Hey&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/awneil"&gt;awneil&lt;/a&gt;, yes, I&amp;#39;ve read through the linked post. The same post was suggested by&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/ali-rumane"&gt;Ali Rumane&lt;/a&gt;. I configured the code properly inside sdk.config.h (section SoftDevice clock configuration) and everything works great now! Once again, thanks for your responsiveness and great help!&lt;/p&gt;
&lt;p&gt;Cheers!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190714?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:46:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9e32d8bd-f4ca-4aac-9cd8-657ac13c003d</guid><dc:creator>awneil</dc:creator><description>&lt;p&gt;You&amp;#39;re welcome!&lt;/p&gt;
&lt;p&gt;You might want to give feedback to the module manufacturer that their documentation could be more helpful in explaining the implications of choosing to omit the external LF clock...&lt;/p&gt;
&lt;p&gt;&lt;span&gt;You might want to give feedback to&amp;nbsp;Nordic on how this might be better documented ...&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190712?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:39:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b10698ad-b8c5-45f7-bceb-dc92ea52c948</guid><dc:creator>awneil</dc:creator><description>&lt;p&gt;Did you read the linked post?&lt;/p&gt;
&lt;p&gt;Yes, the external 32KHz is optional but, if you opt to omit it, then you have to configure your code accordingly.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190711?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:39:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:06222b32-d362-41f4-80f3-50ca2eb128ec</guid><dc:creator>bojan</dc:creator><description>&lt;p&gt;Hello &lt;a href="https://devzone.nordicsemi.com/members/ali-rumane"&gt;Ali Rumane&lt;/a&gt;, thank you very much for your pointer! It was really useful for me! Indeed, I had the issue with SoftDevice clock configuration in sdk_config.h file. With the following settings everything works great:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;// &amp;lt;/h&amp;gt; 
//==========================================================

// &amp;lt;h&amp;gt; Clock - SoftDevice clock configuration

//==========================================================
// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_SRC  - SoftDevice clock source.
 
// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_SRC_RC 
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_SRC_XTAL 
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_SRC_SYNTH 

#ifndef NRF_SDH_CLOCK_LF_SRC
#define NRF_SDH_CLOCK_LF_SRC 0
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_RC_CTIV - SoftDevice calibration timer interval. 
#ifndef NRF_SDH_CLOCK_LF_RC_CTIV
#define NRF_SDH_CLOCK_LF_RC_CTIV 16
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_RC_TEMP_CTIV - SoftDevice calibration timer interval under constant temperature. 
// &amp;lt;i&amp;gt; How often (in number of calibration intervals) the RC oscillator shall be calibrated
// &amp;lt;i&amp;gt;  if the temperature has not changed.

#ifndef NRF_SDH_CLOCK_LF_RC_TEMP_CTIV
#define NRF_SDH_CLOCK_LF_RC_TEMP_CTIV 2
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_ACCURACY  - External clock accuracy used in the LL to compute timing.
 
// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_ACCURACY_250_PPM 
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_ACCURACY_500_PPM 
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_ACCURACY_150_PPM 
// &amp;lt;3=&amp;gt; NRF_CLOCK_LF_ACCURACY_100_PPM 
// &amp;lt;4=&amp;gt; NRF_CLOCK_LF_ACCURACY_75_PPM 
// &amp;lt;5=&amp;gt; NRF_CLOCK_LF_ACCURACY_50_PPM 
// &amp;lt;6=&amp;gt; NRF_CLOCK_LF_ACCURACY_30_PPM 
// &amp;lt;7=&amp;gt; NRF_CLOCK_LF_ACCURACY_20_PPM 
// &amp;lt;8=&amp;gt; NRF_CLOCK_LF_ACCURACY_10_PPM 
// &amp;lt;9=&amp;gt; NRF_CLOCK_LF_ACCURACY_5_PPM 
// &amp;lt;10=&amp;gt; NRF_CLOCK_LF_ACCURACY_2_PPM 
// &amp;lt;11=&amp;gt; NRF_CLOCK_LF_ACCURACY_1_PPM 

#ifndef NRF_SDH_CLOCK_LF_ACCURACY
#define NRF_SDH_CLOCK_LF_ACCURACY 1
#endif

// &amp;lt;/h&amp;gt; &lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Thank you both, &lt;a href="https://devzone.nordicsemi.com/members/awneil"&gt;awneil&lt;/a&gt;, &lt;a href="https://devzone.nordicsemi.com/members/ali-rumane"&gt;Ali Rumane&lt;/a&gt;, for your great feedbacks. I can now move forward!&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Bojan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190699?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:13:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d416024-2f6f-49c7-8a9b-03188cbbad78</guid><dc:creator>bojan</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/awneil"&gt;awneil&lt;/a&gt;, thanks for replying. I am using BL654 module on my custom board. Accordng to chapter 5.17 on page 34 (&lt;a href="https://connectivity-staging.s3.us-east-2.amazonaws.com/2019-03/CS-DS-BL654%20v1_8.pdf"&gt;link&lt;/a&gt;), external 32.768KHz oscillator is optional (not required for normal BL654 module operation).&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190698?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:10:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:43a57aff-d493-418a-9fa7-c839375eaf25</guid><dc:creator>Ali Rumane</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Did you set Low Frequency Clock settings correctly?&lt;/p&gt;
&lt;p&gt;I faced &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/46564/error-133-0x85-gatt-error-on-nrf52840"&gt;similar issue&lt;/a&gt;&amp;nbsp; with BLE examples which was solved by setting clock source &amp;amp; settings correctly.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Using soft device on custom board with nRF52840</title><link>https://devzone.nordicsemi.com/thread/190694?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 09:07:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d300cab8-ed97-424a-a886-d7a8348fbff6</guid><dc:creator>awneil</dc:creator><description>&lt;p&gt;Does your custom board have a 32KHz crystal ?&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/46564/error-133-0x85-gatt-error-on-nrf52840/185362#185362"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/46564/error-133-0x85-gatt-error-on-nrf52840/185362#185362&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>