<?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>Do I get vdd diretly without timer like this?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/42401/do-i-get-vdd-diretly-without-timer-like-this</link><description>I want to get vdd without timer 
 so i found this. 
 https://devzone.nordicsemi.com/f/nordic-q-a/38239/nrf-52832-saadc-without-timer/147517#147517 
 and change some part like this 
 void saadc_event_handler(nrf_drv_saadc_evt_t const * p_event) { // Do</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 18 Jan 2019 08:40:51 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/42401/do-i-get-vdd-diretly-without-timer-like-this" /><item><title>RE: Do I get vdd diretly without timer like this?</title><link>https://devzone.nordicsemi.com/thread/166405?ContentTypeID=1</link><pubDate>Fri, 18 Jan 2019 08:40:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:95ef9d3b-f4e3-48fc-99d1-0ec4ae5bf35d</guid><dc:creator>james cho</dc:creator><description>&lt;p&gt;thanks it works perfectly!!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I get vdd diretly without timer like this?</title><link>https://devzone.nordicsemi.com/thread/166197?ContentTypeID=1</link><pubDate>Thu, 17 Jan 2019 11:20:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d07b60cf-f4f3-4d18-af76-5fb1b6eb9ecd</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;It seems like there are&amp;nbsp;some conflict happening when you try to add &lt;em&gt;sample_convert(..)&lt;/em&gt;. I haven&amp;#39;t found out specifically what causes the conflict, but can look into it if you don&amp;#39;t figure it out. I have attached an example where I have modified your project by commenting out the code not needed for sample conversion&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/support-attachments/beef5d1b77644c448dabff31668f3a47-ba033b726aa041ef9b3c686fc0d77747/saadc_5F00_sample_5F00_convert.zip"&gt;devzone.nordicsemi.com/.../saadc_5F00_sample_5F00_convert.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I get vdd diretly without timer like this?</title><link>https://devzone.nordicsemi.com/thread/166148?ContentTypeID=1</link><pubDate>Thu, 17 Jan 2019 08:31:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e7e6d6f9-f87d-448c-b922-e620f0260ff4</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I am currently looking into your case, and will try to give you an answer by today or tomorrow&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I get vdd diretly without timer like this?</title><link>https://devzone.nordicsemi.com/thread/165052?ContentTypeID=1</link><pubDate>Fri, 11 Jan 2019 05:38:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:02efb970-89df-4977-86db-987ba4f8fbdc</guid><dc:creator>james cho</dc:creator><description>&lt;p&gt;i omit this code in second part&lt;/p&gt;
&lt;p&gt;#include &amp;lt;stdbool.h&amp;gt;&lt;br /&gt;#include &amp;lt;stdint.h&amp;gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include &amp;lt;string.h&amp;gt;&lt;br /&gt;#include &amp;quot;nrf.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_drv_saadc.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_drv_ppi.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_drv_timer.h&amp;quot;&lt;br /&gt;#include &amp;quot;boards.h&amp;quot;&lt;br /&gt;#include &amp;quot;app_error.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_delay.h&amp;quot;&lt;br /&gt;#include &amp;quot;app_util_platform.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_pwr_mgmt.h&amp;quot;&lt;br /&gt;&lt;br /&gt;#include &amp;quot;nrf_log.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_log_ctrl.h&amp;quot;&lt;br /&gt;#include &amp;quot;nrf_log_default_backends.h&amp;quot;&lt;br /&gt;&lt;br /&gt;#define SAMPLES_IN_BUFFER 5&lt;br /&gt;volatile uint8_t state = 1;&lt;br /&gt;&lt;br /&gt;static const nrf_drv_timer_t m_timer = NRF_DRV_TIMER_INSTANCE(0);&lt;br /&gt;static nrf_saadc_value_t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_buffer_pool[2][SAMPLES_IN_BUFFER];&lt;br /&gt;static nrf_ppi_channel_t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_ppi_channel;&lt;br /&gt;static uint32_t&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_adc_evt_counter;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void timer_handler(nrf_timer_event_t event_type, void * p_context)&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>