<?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>Crystal Oscillator</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/40833/crystal-oscillator</link><description>Hi, 
 I am using NRF52832 for my project. I need a support to handling oscillator 
 my project needs to reads the sensor raw data and through it in BLE_UART. and do calculation with timer, proximity, saadc 
 all this i need to work in ultra low power</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 18 Dec 2018 08:33:27 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/40833/crystal-oscillator" /><item><title>RE: Crystal Oscillator</title><link>https://devzone.nordicsemi.com/thread/162216?ContentTypeID=1</link><pubDate>Tue, 18 Dec 2018 08:33:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:50292382-a8d5-4606-ba34-7388450b2f0f</guid><dc:creator>ps_anu</dc:creator><description>&lt;p&gt;i want to run the timer for one minute ..after the completion of one minute it should read the data ..&lt;/p&gt;
&lt;p&gt;how to do that?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Crystal Oscillator</title><link>https://devzone.nordicsemi.com/thread/158947?ContentTypeID=1</link><pubDate>Mon, 26 Nov 2018 06:40:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:23a96dad-c841-470f-a4f8-f0c5e9d345ee</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;thank you bjorn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Crystal Oscillator</title><link>https://devzone.nordicsemi.com/thread/158782?ContentTypeID=1</link><pubDate>Fri, 23 Nov 2018 09:38:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:13b86db8-23f2-4fee-819c-943eb4960970</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Yes, the nRF52832 will turn on the 32MHz oscillator when its requested by peripheral(s) and turn it off when the periheral(s) no longer need it.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Crystal Oscillator</title><link>https://devzone.nordicsemi.com/thread/158763?ContentTypeID=1</link><pubDate>Fri, 23 Nov 2018 08:52:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:140875d8-79a0-48a0-88fa-7bcfcd6399bc</guid><dc:creator>Sunil vignesh</dc:creator><description>&lt;p&gt;Thank you Bjorn, I will use this &lt;/p&gt;
&lt;p&gt;if i use 32Mhz external crystal oscillator also. power management will take care about the&amp;nbsp; low power mode.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Crystal Oscillator</title><link>https://devzone.nordicsemi.com/thread/158754?ContentTypeID=1</link><pubDate>Fri, 23 Nov 2018 07:37:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:65c43810-57c1-4f23-a3ea-379cf7b31e0b</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Hi Sunil,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;the clock sources are automatically managed on the nRF52832, i.e. the peripherals will enable/disable the required clock source. However, some peripherals require the 32MHz clock, e.g. the SAADC, TIMER, Serial Interfaces etc&lt;/p&gt;
&lt;p&gt;The same goes for power management, it is automatically managed by the nRF52832, i.e power is routed to the peripheral if its enabled/initialized and cut if it is disabled/uninitialized. So whenever you&amp;#39;re not using a peripheral it is important that you uninitialized said peripheral.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I recommend that you use the&amp;nbsp;&lt;a title="Timer library" href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.2.0/lib_timer.html?cp=4_0_0_3_51"&gt;Timer library&lt;/a&gt;, which uses the&amp;nbsp;&lt;span&gt;RTC1 peripheral, which in turn uses the&lt;/span&gt;&amp;nbsp;32kHz oscillator which has a very low run current, 0.6uA if the LFRC is used and 0.25uA if an external 32kHz oscillator is used.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;It is also possible to use the SAADC in low power mode by setting the .low_power field in the&amp;nbsp;&lt;span&gt;&lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.2.0/structnrfx__saadc__config__t.html"&gt;nrfx_saadc_config_t&lt;/a&gt;&amp;nbsp;struct passed to&amp;nbsp;&lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.2.0/group__nrfx__saadc.html#gaea61b5b166bda57cf9daa1d11617f92d"&gt;nrfx_saadc_init&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;NOte: The external 32kHz is optional as the nrf52832 can use the internal 32kHz RC oscillator, but the 32MHz oscillator is mandatory for using the RADIO as a Bluetooth Radio.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Bjørn&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>