<?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>Programming BLE nrf51822AA beacon</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/9898/programming-ble-nrf51822aa-beacon</link><description>Dear Nordic family, 
 I am using Bluetooth Low Energy, Beacon module with ARM Core from Tindie ( Product link ). The reference manual from their website is attached IMM-NRF51822_RefMan.pdf 
 I can erase the chip, programmed it with softdevice (S110</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sun, 25 Oct 2015 10:31:46 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/9898/programming-ble-nrf51822aa-beacon" /><item><title>RE: Programming BLE nrf51822AA beacon</title><link>https://devzone.nordicsemi.com/thread/36714?ContentTypeID=1</link><pubDate>Sun, 25 Oct 2015 10:31:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a0d46031-1005-4050-9244-d609ac7fba54</guid><dc:creator>MartinBL</dc:creator><description>&lt;p&gt;Have you tried a simple blinky example without softdevice?&lt;/p&gt;
&lt;p&gt;Have you tried a regular BLE example with softdevice, but without DFU, like e.g. the ble_app_hrs example? Here is a nice tutorial: &lt;a href="https://devzone.nordicsemi.com/tutorials/2/setting-up-an-example-project-on-the-nrf51-dk/"&gt;Setting up an example project on the nRF51 DK&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Programming BLE nrf51822AA beacon</title><link>https://devzone.nordicsemi.com/thread/36713?ContentTypeID=1</link><pubDate>Sat, 24 Oct 2015 15:52:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce1c580f-ea29-4ad2-a999-ec8067f95a5d</guid><dc:creator>vineeshvs</dc:creator><description>&lt;p&gt;Thanks Martin Børs-Lind&lt;/p&gt;
&lt;p&gt;I replaced the line
SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_RC_250_PPM_8000MS_CALIBRATION, NULL);
with
SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_RC_250_PPM_4000MS_CALIBRATION, NULL);&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Still it is not getting detected!!&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Programming BLE nrf51822AA beacon</title><link>https://devzone.nordicsemi.com/thread/36712?ContentTypeID=1</link><pubDate>Sat, 24 Oct 2015 15:29:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e6784159-26c4-480d-b62a-0ef25695fd1c</guid><dc:creator>MartinBL</dc:creator><description>&lt;p&gt;Hi. According to the datasheet your module is missing an external low frequency 32kHz crystal (see page 4). This crystal is optional, but you will have to configure your example to use the internal RC oscillator instead. An LF clock is required to provide accurate timing necessary to drive the BLE protocol. By default, in e.g. the regular ble_app_hrs example, the LF clock is configured this way:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_XTAL_20_PPM, NULL);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and you should write e.g.:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_RC_250_PPM_4000MS_CALIBRATION, NULL);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;instead.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not a 100% sure about this, but I believe all the DFU examples assumes you have an external LF crystal and that is why it doesn&amp;#39;t work. Try to experiment with the non-DFU examples and see if you can get it working. Afterall, DFU can be quite complicated stuff.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/question/953/what-low-frequency-clock-sources-can-i-use/"&gt;Relevant post&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>