<?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>JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/66344/jlink-wont-connect-after-bootloader-program</link><description>Using Segger with PCA10056 as a debugger connected to a pcb with a NRF52840 on it. Been working fine and I tried building open bootloader and programmed it. I see the device as a com port now and its visible with nrfconnect. I can no longer connect to</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 29 Sep 2020 08:37:31 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/66344/jlink-wont-connect-after-bootloader-program" /><item><title>RE: JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/thread/271985?ContentTypeID=1</link><pubDate>Tue, 29 Sep 2020 08:37:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:aaef1ff0-fac6-4765-afe8-a64e5db25f47</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Glad to hear that you got it working again!&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: JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/thread/271791?ContentTypeID=1</link><pubDate>Mon, 28 Sep 2020 13:08:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4215116b-cb57-4c67-b3fb-4f2a0d2e8dee</guid><dc:creator>JD-PPC</dc:creator><description>&lt;p&gt;Thanks the nrfprog --eraseall commands brought it back to life.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/thread/271659?ContentTypeID=1</link><pubDate>Mon, 28 Sep 2020 06:55:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0a6bc174-15c8-4168-ab19-0c7ff2c39499</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Just to clarify, is the board that&amp;#39;s connected to the DK J-Link debugger a Fanstel BT840 based board? Keep in mind that it needs to be powered, as the debug cable won&amp;#39;t be able to power external devices &amp;quot;by itself&amp;quot;.&lt;/p&gt;
&lt;p&gt;I think the Fanstel boards don&amp;#39;t have an external LF clock by default, have you mounted this onto the Fanstel board? If not, you will have to configure the project on your Fanstel board you have to use the internal RC oscillator instead of the external LF clock which is set by default. This can be done by changing the following defines in sdk_config.h:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&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 the Fanstel board seems &amp;quot;lifeless&amp;quot; you can try calling using the&amp;nbsp; nrfjprog --eraseall call from the &lt;a href="https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Command-Line-Tools/Download"&gt;nRF Command Line Tools&lt;/a&gt;&amp;nbsp;to erase the flash memory.&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: JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/thread/271529?ContentTypeID=1</link><pubDate>Fri, 25 Sep 2020 13:10:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:56f85998-5fe4-4139-87a1-6489a11b9b18</guid><dc:creator>JD-PPC</dc:creator><description>&lt;p&gt;Not sure if it was clear, but I am using the DK board jlink debugger to hook up to a another board through the debug out connector on the DK board.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/thread/271525?ContentTypeID=1</link><pubDate>Fri, 25 Sep 2020 13:08:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e8b71200-3db9-47d8-bb3c-1d3e2babd60a</guid><dc:creator>JD-PPC</dc:creator><description>&lt;p&gt;The device I cant connect to is a fantel BT840 which has a nrf52840 ic in it. I was trying to test the open bootloader. I can see the device in device manager and it connects with nrfConnect. I am not trying to alter anything on the DK board. That works fine and I am able to connect to a different BT840 with it. Just trying to bring my first DK840 back to life.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: JLink wont connect after bootloader program</title><link>https://devzone.nordicsemi.com/thread/271503?ContentTypeID=1</link><pubDate>Fri, 25 Sep 2020 12:09:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e7720e3d-768f-4cdd-9bb7-2f8e9de3e445</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I&amp;#39;m sorry,&amp;nbsp;what device is it that you&amp;#39;ve put into bootloader mode and that is now visible as a COM port? Have you put the DK into the BOOT mode by holding the IF BOOT/RESET button on the DK? In that case you will have to flash the Interface MCU firmware back onto the DK by dragging and dropping the &lt;a href="https://www.nordicsemi.com/Software-and-tools/Development-Kits/nRF52840-DK/Download#infotabs"&gt;.bin file downloadable here&lt;/a&gt; into the BOOTLOADER window that pops up when powering up the DK.&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>