<?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>nRF52 SAADC, which timer</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14772/nrf52-saadc-which-timer</link><description>Hi, 
 nRF5_SDK_11.0.0_89a8197\examples\peripheral\saadc\pca10040\arm5_no_packs 
 Which timer is used in this example? RTC timer or Timer0-4 ?
I can not find it. 
 Thanks!</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 27 Jun 2016 07:12:22 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14772/nrf52-saadc-which-timer" /><item><title>RE: nRF52 SAADC, which timer</title><link>https://devzone.nordicsemi.com/thread/56407?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2016 07:12:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fda86f00-d924-4254-ae88-802656badb91</guid><dc:creator>wpb3dm</dc:creator><description>&lt;p&gt;Thanks!
I find it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52 SAADC, which timer</title><link>https://devzone.nordicsemi.com/thread/56406?ContentTypeID=1</link><pubDate>Mon, 27 Jun 2016 04:35:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6ebe57a9-86f2-4194-b1af-8573256264a0</guid><dc:creator>Jui-Chou (Rick) Chung</dc:creator><description>&lt;p&gt;This example using Timer0 to generate regular compare event.  At the beginning of the code, it declared a timer instance using NRF_DRV_TIMER_INSTANCE(0). Take a look at this macro:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/**
 * @brief Macro for creating a timer driver instance.
 */
#define NRF_DRV_TIMER_INSTANCE(id) \
{                                                             \ 
    .p_reg            = CONCAT_2(NRF_TIMER, id),              \ 
    .instance_id      = CONCAT_3(TIMER, id, _INSTANCE_INDEX), \ 
    .cc_channel_count = NRF_TIMER_CC_CHANNEL_COUNT(id),       \ 
} 
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And also, in the config/nrf_drv_config.h, you can find:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/* TIMER */
#define TIMER0_ENABLED 1

#if (TIMER0_ENABLED == 1)
#define TIMER0_CONFIG_FREQUENCY    NRF_TIMER_FREQ_16MHz
#define TIMER0_CONFIG_MODE         TIMER_MODE_MODE_Timer
#define TIMER0_CONFIG_BIT_WIDTH    TIMER_BITMODE_BITMODE_32Bit
#define TIMER0_CONFIG_IRQ_PRIORITY APP_IRQ_PRIORITY_LOW

#define TIMER0_INSTANCE_INDEX      0
#endif
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>