<?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>Disconnection right after connection established on nRF52805 using nRF Connect (BlueN</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/118340/disconnection-right-after-connection-established-on-nrf52805-using-nrf-connect-bluen</link><description>I am using Fanstel evaluation board with BT805 attached. 
 I got an example project - ble to uart. 
 I was able to build the project with Segger V5.42 (any later verisons could not succeed). 
 I am able to run the code on the device. 
 But, when i am</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 29 Jan 2025 11:49:20 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/118340/disconnection-right-after-connection-established-on-nrf52805-using-nrf-connect-bluen" /><item><title>RE: Disconnection right after connection established on nRF52805 using nRF Connect (BlueN</title><link>https://devzone.nordicsemi.com/thread/520543?ContentTypeID=1</link><pubDate>Wed, 29 Jan 2025 11:49:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f7435f2d-9ac2-40f8-863d-435a109beadd</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Glad to hear you were able to get it up and running. If you need some sort of closure or root cause here, I&amp;#39;d recommend comparing the working and non working projects to see what the exact differences are. If not, I think we can close this ticket.&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: Disconnection right after connection established on nRF52805 using nRF Connect (BlueN</title><link>https://devzone.nordicsemi.com/thread/520369?ContentTypeID=1</link><pubDate>Tue, 28 Jan 2025 13:03:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:756960f1-00b3-4367-8701-ba924edbc23d</guid><dc:creator>Saar</dc:creator><description>&lt;p&gt;Thanks a lot for the reply,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I tried this as well and many other things but nothing worked.&lt;/p&gt;
&lt;p&gt;Eventually I re-ctreated the project from an example project, applied all changes to meet my board (BlueNor BC805) and that did the trick.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Saar.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Disconnection right after connection established on nRF52805 using nRF Connect (BlueN</title><link>https://devzone.nordicsemi.com/thread/520146?ContentTypeID=1</link><pubDate>Mon, 27 Jan 2025 11:13:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0a781d61-f3a3-4fed-bc35-c7b593aed657</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;This error message is a pretty generic timeout error, but I&amp;#39;ve seen it before, and more often than not when this occurs on custom boards, it is because the custom board does not have an external 32.768kHz crystal mounted.&lt;/p&gt;
&lt;p&gt;If that&amp;#39;s the case, you will need to make the following changes in your sdk_config.h file to use the internal RC oscillator instead. Make sure the following defines are set and try flashing the project again and see if you&amp;#39;re able to connect then:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&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&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If that doesn&amp;#39;t do it, please share some more details on what this custom board is exactly, and what SDK version you&amp;#39;re using for development.&lt;/p&gt;
&lt;p&gt;Please note that for new designs, we strongly recommend checking out the&lt;a href="https://docs.nordicsemi.com/category/ncs-latest"&gt; nRF Connect SDK&lt;/a&gt;, as the nRF5 SDK is now only in maintenance mode.&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></channel></rss>