<?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>Couldn&amp;#39;t connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/32545/couldn-t-connect-52810-successfully-during-dfu-mode</link><description>according to this article to modify my code. https://devzone.nordicsemi.com/f/nordic-q-a/27185/52810-how-to-use-dfu 
 
 It could be scanned but couldn&amp;#39;t connected. 
 
 Is there anything i omitted ?</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 18 Sep 2018 09:26:28 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/32545/couldn-t-connect-52810-successfully-during-dfu-mode" /><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/149181?ContentTypeID=1</link><pubDate>Tue, 18 Sep 2018 09:26:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:000ebc8a-bccb-4d32-ad00-0ffa06d1cfc8</guid><dc:creator>Rex1979</dc:creator><description>&lt;p&gt;And&lt;/p&gt;
&lt;p&gt;// &amp;lt;0=&amp;gt; RC &lt;br /&gt;// &amp;lt;1=&amp;gt; XTAL &lt;br /&gt;// &amp;lt;2=&amp;gt; Synth&lt;/p&gt;
&lt;p&gt;#ifndef CLOCK_CONFIG_LF_SRC&lt;br /&gt;#define CLOCK_CONFIG_LF_SRC 1&lt;br /&gt;#endif&lt;br /&gt;&lt;br /&gt;change togther.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/149157?ContentTypeID=1</link><pubDate>Tue, 18 Sep 2018 07:44:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:800d3218-38be-42b2-8fb7-b2464ba3c6e3</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi Ralph, see &lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s132.sds/dita/softdevices/s130/sd_mgr/sd_mgr_clock_src.html?cp=2_3_1_0_4_1"&gt;this page&lt;/a&gt;&amp;nbsp;for information about the SoftDevice clock source. If you don&amp;#39;t have LF crystal, you will need to use the RC Oscillator. You&amp;nbsp;need&amp;nbsp;to set the clock source in sdk_config.h. To use the&amp;nbsp;&lt;span&gt;RC O&lt;/span&gt;&lt;span&gt;scillator, you would need to set the following defines:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&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_XTAL_ACCURACY  - External crystal clock accuracy used in the LL to compute timing windows.
 
// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_250_PPM 
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_500_PPM 
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_150_PPM 
// &amp;lt;3=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_100_PPM 
// &amp;lt;4=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_75_PPM 
// &amp;lt;5=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_50_PPM 
// &amp;lt;6=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_30_PPM 
// &amp;lt;7=&amp;gt; NRF_CLOCK_LF_XTAL_ACCURACY_20_PPM 

#ifndef NRF_SDH_CLOCK_LF_XTAL_ACCURACY
#define NRF_SDH_CLOCK_LF_XTAL_ACCURACY 1
#endif&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/149139?ContentTypeID=1</link><pubDate>Tue, 18 Sep 2018 03:57:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d646c8f1-c0bb-47ce-843b-1e1be6d03e70</guid><dc:creator>Ralph</dc:creator><description>&lt;p&gt;Hi, I have the same issue.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;May I ask what &amp;amp; where is softdecive clock source?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/125383?ContentTypeID=1</link><pubDate>Wed, 21 Mar 2018 14:40:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5abfadc-201f-49db-9995-5f6d351ecfc0</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Great that you got it working&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/125314?ContentTypeID=1</link><pubDate>Wed, 21 Mar 2018 09:39:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e398f5ed-6757-4dc1-92aa-0b6beae05a67</guid><dc:creator>bean</dc:creator><description>&lt;p&gt;sorry, it&amp;#39;s my fault !&amp;nbsp; the softdevice clock source that I configured is wrong ..&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/125256?ContentTypeID=1</link><pubDate>Wed, 21 Mar 2018 05:03:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:82b416ae-7a8b-43a9-b99a-eab4f4f29d96</guid><dc:creator>bean</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I do use nRF Connect to connect !&lt;/p&gt;
&lt;p&gt;there are two boards, a product demo (52810)&amp;nbsp; and&amp;nbsp; a nordic PCA10040.&lt;/p&gt;
&lt;p&gt;I needed to use dfu on 52810,&amp;nbsp; so&amp;nbsp; I made some modification base on SDK&lt;span&gt;14.2.0.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I got these modification from&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/27185/52810-how-to-use-dfu"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/27185/52810-how-to-use-dfu&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;-----------------------&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;1. softdevice :&amp;nbsp;nRF5_SDK_14.2.0_17b948a\components\softdevice\s112\hex&lt;/p&gt;
&lt;p&gt;2. project:&amp;nbsp;nRF5_SDK_14.2.0_17b948a\examples\dfu\bootloader_secure_ble&lt;/p&gt;
&lt;p&gt;after compiling ...&lt;/p&gt;
&lt;p&gt;Using nRFgo studio:&lt;/p&gt;
&lt;p&gt;1. erase all&lt;/p&gt;
&lt;p&gt;2. program softdevice&lt;/p&gt;
&lt;p&gt;3. download bootloader by keil&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;if I do these operation on 52810 , advertising is ok but can&amp;#39;t be connected.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;to do these operation on PCA10040 , everything is ok !&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Couldn't connect 52810 successfully during DFU mode</title><link>https://devzone.nordicsemi.com/thread/125195?ContentTypeID=1</link><pubDate>Tue, 20 Mar 2018 14:42:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:471c5a8b-125d-4188-8fe1-a4589e671884</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Are you using nRF Connect for Desktop or Mobile to connect ?&lt;/li&gt;
&lt;li&gt;What happens when you try to connect? do you get any error messages ?&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>