<?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>SAADC very high noise.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/23144/saadc-very-high-noise</link><description>Hardware: nrf52 DK
Software: SDK v13 
 I want to use SAADC to sample some analog data (main function of my device), but It seems to be noisy. In attachment spreadsheet with chart and recorded data. 
 Reference = VDD/4,
input = VDD,
gain = 1/5,
sampling</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 03 Jul 2017 12:22:14 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/23144/saadc-very-high-noise" /><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91017?ContentTypeID=1</link><pubDate>Mon, 03 Jul 2017 12:22:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bbc1e435-6117-4a6e-9a45-c882532ff4ae</guid><dc:creator>Luk3</dc:creator><description>&lt;p&gt;I read it yesterday but I had a hope that I it&amp;#39;s something missing in the configuration. I used to lower noise in embedded ADC, but it is good to hear that is normal. Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91026?ContentTypeID=1</link><pubDate>Mon, 03 Jul 2017 11:32:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9d144d5c-da83-4519-9118-5a746e0f317a</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Your results seems to be within what is expected. Please see &lt;a href="https://devzone.nordicsemi.com/question/70115/nrf52-saadc-noise/?answer=70166#post-id-70166"&gt;this thread&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91022?ContentTypeID=1</link><pubDate>Mon, 03 Jul 2017 06:16:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e6be7160-9112-48ff-b45b-7f237b657faa</guid><dc:creator>Luk3</dc:creator><description>&lt;p&gt;Without oversampling: 	&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/* Configure ADC */
memset(&amp;amp;saadc_config, 0 , sizeof(saadc_config));
saadc_config.interrupt_priority = 7;
saadc_config.low_power_mode = true;
saadc_config.oversample = NRF_SAADC_OVERSAMPLE_DISABLED;
saadc_config.resolution = NRF_SAADC_RESOLUTION_14BIT;

/* Configure channel */
memset(&amp;amp;saadc_channel_1, 0 , sizeof(saadc_channel_1));
saadc_channel_1.acq_time 	= NRF_SAADC_ACQTIME_3US;
saadc_channel_1.burst 		= NRF_SAADC_BURST_ENABLED;
saadc_channel_1.gain		= NRF_SAADC_GAIN1_5;
saadc_channel_1.mode		= NRF_SAADC_MODE_SINGLE_ENDED;
saadc_channel_1.pin_p		= NRF_SAADC_INPUT_VDD;
saadc_channel_1.pin_n		= NRF_SAADC_INPUT_DISABLED;
saadc_channel_1.reference	 = NRF_SAADC_REFERENCE_VDD4;
saadc_channel_1.resistor_n	= NRF_SAADC_RESISTOR_DISABLED;
saadc_channel_1.resistor_p  = NRF_SAADC_RESISTOR_DISABLED;
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91024?ContentTypeID=1</link><pubDate>Fri, 30 Jun 2017 14:38:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:141e76aa-8551-4fd4-bd76-29291b763c59</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Could you post all your SAADC and channel configurations?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91021?ContentTypeID=1</link><pubDate>Fri, 30 Jun 2017 11:45:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:73fbb092-1a92-4c41-96ac-ab919c76c18e</guid><dc:creator>Luk3</dc:creator><description>&lt;p&gt;I tried measure the coin battery voltage with the internal reference and nothing changes.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91020?ContentTypeID=1</link><pubDate>Fri, 30 Jun 2017 11:41:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9d854a13-e60c-473e-87a3-61fc03377723</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Yes, the internal refrence should be stable, but if you sample VDD you might not get stable readings if VDD is not stable.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91019?ContentTypeID=1</link><pubDate>Fri, 30 Jun 2017 11:16:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5aa486f8-2c27-463f-a383-58d1d08629f6</guid><dc:creator>Luk3</dc:creator><description>&lt;p&gt;Only with the multimeter. Even with slightly unstable VDD, I think the internal 0,6V reference voltage should be stable.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91023?ContentTypeID=1</link><pubDate>Fri, 30 Jun 2017 10:51:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d4811bb2-5608-4e23-8e9e-5a787db4473e</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;The noise does seem a bit high, have you checked that VDD is stable using other measurement option? Also have a look at &lt;a href="https://devzone.nordicsemi.com/question/48969/nrf52-adc-enob/"&gt;this thread&lt;/a&gt; about accuracy of the SAADC.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91025?ContentTypeID=1</link><pubDate>Fri, 30 Jun 2017 06:01:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:adbd9894-d508-4ba4-8470-7be6e473e87a</guid><dc:creator>Luk3</dc:creator><description>&lt;p&gt;SD in enabled but an advertising isn&amp;#39;t. With the internal reference and gain 1/6 results are very similar. I also tried to measure a 3V coin battery, no difference. Supplying board with battery instead of USB without effects.
I checked schematic and between regulator and nRF52 is diode placed. Schotky diode Vf varies from load, can it be source of that noise?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC very high noise.</title><link>https://devzone.nordicsemi.com/thread/91018?ContentTypeID=1</link><pubDate>Thu, 29 Jun 2017 14:09:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9d9e6302-7481-4c57-98ae-3c021613e148</guid><dc:creator>Turbo J</dc:creator><description>&lt;p&gt;Try again with the internal reference and &lt;code&gt;1/6&lt;/code&gt; gain. But VDD may be noisy due to chip activity like CPU or radio.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>