<?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>NRF51422 on Custom board</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14547/nrf51422-on-custom-board</link><description>Hi 
 we have a custom board, where the clock does not start (verified by osciloscope). We do not use an external clock, so from our understanding the command to init the S130 soft device should be changed from 
 SOFTDEVICE_HANDLER_INIT(&amp;amp;clock_lf_cfg</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 17 Jun 2016 09:35:02 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14547/nrf51422-on-custom-board" /><item><title>RE: NRF51422 on Custom board</title><link>https://devzone.nordicsemi.com/thread/55554?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2016 09:35:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c7f8f385-4862-4e42-8d32-ac8a73c29315</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;You have to change clock_lf_cfg to for example:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;//internal clock configuration
	nrf_clock_lf_cfg_t rc_clock_lf_cfg = {.source = NRF_CLOCK_LF_SRC_RC, \
										.rc_ctiv = 1, \
										.rc_temp_ctiv = 1};
	//synth clock configuration
	nrf_clock_lf_cfg_t synth_clock_lf_cfg = {.source = NRF_CLOCK_LF_SRC_SYNTH, \
											.rc_ctiv = 0, \
											.rc_temp_ctiv = 0, \
											.xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_20_PPM};
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;See &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s130.api.v2.0.0/structnrf__clock__lf__cfg__t.html"&gt;here&lt;/a&gt; for a description of the data fields. We do not recommend using synthesized clock as this draws considerably more power than using RC clock.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>