<?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>How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/15520/how-could-i-program-the-bmd-300-with-a-nrf52-preview-development-kit</link><description>Hello Everyone, 
 I want to program the BMD-300 with the nRF52 Preview Development Kit.
I have connected: 
 BMD-300 -&amp;gt; nRF52-DK 
 SWDIO -&amp;gt; SH_SWDIO (pin #4) on P20 
 SWDCLK -&amp;gt; SH_SWDCLK (pin #5) on P20 
 VDD -&amp;gt; SH_VTG (pin #3) on P20 
 GND -&amp;gt; SH_GND_DETECT</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sun, 18 Sep 2016 20:43:49 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/15520/how-could-i-program-the-bmd-300-with-a-nrf52-preview-development-kit" /><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59277?ContentTypeID=1</link><pubDate>Sun, 18 Sep 2016 20:43:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ce3abda-0d7a-4afe-882f-5296f88b65bb</guid><dc:creator>Chris H.</dc:creator><description>&lt;p&gt;Also make sure to edit your boards def file. The BMD-300 uses a resonator not an xtal. I had the same problem with my code not working and this fixed it.&lt;/p&gt;
&lt;p&gt;Original code toward the bottom of the file:
// Low frequency clock source to be used by the SoftDevice
#define NRF_CLOCK_LFCLKSRC      {.source        = NRF_CLOCK_LF_SRC_XTAL,  &lt;br /&gt;
.rc_ctiv       = 0,                      &lt;br /&gt;
.rc_temp_ctiv  = 0,                      &lt;br /&gt;
.xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_20_PPM}
Change this to:
// Low frequency clock source to be used by the SoftDevice
#define NRF_CLOCK_LFCLKSRC      {.source        = NRF_CLOCK_LF_SRC_RC,&lt;br /&gt;
.rc_ctiv       = 16,                 &lt;br /&gt;
.rc_temp_ctiv  = 4,                  &lt;br /&gt;
.xtal_accuracy = 0}\ accuracy ignored when using RC&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59276?ContentTypeID=1</link><pubDate>Tue, 09 Aug 2016 09:29:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b13b11f6-45be-4b10-843d-04d76b452f92</guid><dc:creator>Nitram</dc:creator><description>&lt;p&gt;OK, than there is a problem with my code. Thanks for help!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59275?ContentTypeID=1</link><pubDate>Tue, 09 Aug 2016 09:23:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:490ca1e4-13b4-4a63-a718-6874b8c8d91a</guid><dc:creator>Keton</dc:creator><description>&lt;p&gt;could you compile your example program in keil, enter debug session (Ctrl-F5) and check that little yellow arrow is on the lefo of one of the first lines of main() function in main.c file? If there&amp;#39;s no arrow it means that your program never completes the init. If it&amp;#39;s there it means that errors are in your code not in the debugging setup.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59274?ContentTypeID=1</link><pubDate>Tue, 09 Aug 2016 09:16:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d34003ff-c414-4244-a609-13df28d49ce9</guid><dc:creator>Nitram</dc:creator><description>&lt;p&gt;When I recover the nRF52832 (DK) with nrfjprog and program it with Keil, it works. I have choose the ble_app_template_s132_pca10036. After programming the BMD-300, nRFgo Studio shows the Aplication and the SoftDevice. Do you know an example (program), which definitely works on the BMD-300?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59273?ContentTypeID=1</link><pubDate>Tue, 09 Aug 2016 08:22:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:50450840-f260-4bea-a312-624cd9373d09</guid><dc:creator>Keton</dc:creator><description>&lt;p&gt;@Nitram if you preform recover on the nRF52DK does it work? Aslo make sure that you&amp;#39;ve flashed correct softdevice. Receover operation wipes all data from chip so softdevice should be reflashed i.e. using nRFGoStudio. Also check your memory map.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59272?ContentTypeID=1</link><pubDate>Tue, 09 Aug 2016 08:08:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8c444706-678c-4178-9a79-6cf644d4a648</guid><dc:creator>Nitram</dc:creator><description>&lt;p&gt;Thanks for your help. Now, I can program the BMD-300. But the program doesn’t start. I have also program the nrf52832 of the Dev Kit and there it works.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59271?ContentTypeID=1</link><pubDate>Thu, 04 Aug 2016 08:59:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4395c106-8498-4530-b52b-639ee65b8885</guid><dc:creator>Keton</dc:creator><description>&lt;p&gt;BMD300 require performing recovery before flashing softdevice. do &lt;code&gt;nrfjprog --family nrf52 --recover&lt;/code&gt; before you try anything else.&lt;/p&gt;
&lt;p&gt;Also in my experience it is quite poor quality oftentimes nRFGoStudio says &lt;code&gt;flash is not erased&lt;/code&gt; despite &lt;code&gt;--recover&lt;/code&gt; and many attempts of full chip erase. And since I have no remedy for that I have to discard a chip and take new one. Any ideas what it may mean?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59270?ContentTypeID=1</link><pubDate>Thu, 04 Aug 2016 07:39:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b6c89ecf-fd62-4438-a0bc-6c2351d031c0</guid><dc:creator>Nitram</dc:creator><description>&lt;p&gt;I have checked the connection of SWDIO, SWDCLK, VDD and GND with a multimeter (from P20 to the nrf52832 of the BMD-300), but I couldn’t find an error. The program, which has been on the chip since buying, works. When I connect the BMD-300 with the Dev Kit and I start the nrfgo, the current of the generator, which supplies the BMD-300, rises and the LED L05 goes off.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How could I program the BMD-300 with a nRF52 Preview Development Kit?</title><link>https://devzone.nordicsemi.com/thread/59269?ContentTypeID=1</link><pubDate>Wed, 03 Aug 2016 13:39:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8350c7ac-acdd-4860-a386-8fb558689501</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;The setup looks correct, but the error indicates that something on the interface is not connected, the debug wires are switched or the device does not have power. Can you check that everything is connected properly and include a picture in your questions if you still have problems?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>