<?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>ble_app_template is not initiating</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/82780/ble_app_template-is-not-initiating</link><description>Hello 
 I was trying to get this example ble_app_template to work but it seems like it doesn&amp;#39;t, the code is executed on the ic since I was uploading some code to blink a light at certain points along the code and it seems like it doesn&amp;#39;t blink after function</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 15 Dec 2021 15:56:45 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/82780/ble_app_template-is-not-initiating" /><item><title>RE: ble_app_template is not initiating</title><link>https://devzone.nordicsemi.com/thread/343732?ContentTypeID=1</link><pubDate>Wed, 15 Dec 2021 15:56:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ba148323-e6ca-4b2d-a34c-73ee120a8fd8</guid><dc:creator>Snakehater</dc:creator><description>&lt;p&gt;Thank you Vidar that worked very well!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: ble_app_template is not initiating</title><link>https://devzone.nordicsemi.com/thread/343588?ContentTypeID=1</link><pubDate>Wed, 15 Dec 2021 10:22:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:48bdcf94-d139-4e4f-ae77-e5c2c897e4c5</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;It looks like your comes without the optional 32 KHz crystal mounted. In that case, you have to change the clock source from the crystal oscillator (default) to the internal RC oscillator for the Softdevice to work (stack requires a slow clock for timekeeping of connection intervals, etc). Otherwise the Softdevice will attempt to start the crystal and enter an endless loop waiting for the crystal to ramp up. &lt;/p&gt;
&lt;p&gt;To change the clock source you can update the NRF_CLOCK_LFCLKSRC define in your board header to this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_CLOCK_LFCLKSRC  { .source        = NRF_CLOCK_LF_SRC_RC,            \
                      .rc_ctiv       = 16,                             \
                      .rc_temp_ctiv  = 2,                              \
                      .xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_20_PPM //parameter is ignored when using RC }&lt;/pre&gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For details about what each of the parameter above does, please refer to the &lt;span&gt;&lt;a title="nrf_clock_lf_cfg_t" href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s130.api.v2.0.1/structnrf__clock__lf__cfg__t.html?cp=5_7_2_2_2_8_4_0"&gt;nrf_clock_lf_cfg_t&lt;/a&gt;&lt;/span&gt; struct.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Vidar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>