<?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 Application Timer</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/11074/nrf52-application-timer</link><description>Hi 
 I am trying to use nrf52 Application Timer.
I followed the instructions in &amp;quot;Application Timer Tutorial&amp;quot; ( devzone.nordicsemi.com/.../) , but it seems I am missing something.
(my code is attached below) 
 When I debug my code, I get to &amp;quot;RTC1_IRQHandler</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 30 Dec 2015 07:36:39 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/11074/nrf52-application-timer" /><item><title>RE: nrf52 Application Timer</title><link>https://devzone.nordicsemi.com/thread/41427?ContentTypeID=1</link><pubDate>Wed, 30 Dec 2015 07:36:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3e266495-ce8e-4044-996a-84c18b511364</guid><dc:creator>caram5555</dc:creator><description>&lt;p&gt;That&amp;#39;s good&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 Application Timer</title><link>https://devzone.nordicsemi.com/thread/41426?ContentTypeID=1</link><pubDate>Wed, 30 Dec 2015 07:34:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6700786f-2d78-43cd-8406-07148d6dddfd</guid><dc:creator>yaron</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Thanks for your answer.
I found out what my problem was.
There are 2 functions named &amp;quot;RTC1_IRQHandler&amp;quot; : one in &amp;quot;app_timer.c&amp;quot; and another in &amp;quot;nrf_drv_rtc.c&amp;quot;.
I wrongly used the function from &amp;quot;nrf_drv_rtc.c&amp;quot;. The moment I enabled the function from &amp;quot;app_timer.c&amp;quot; - everything worked fine.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 Application Timer</title><link>https://devzone.nordicsemi.com/thread/41428?ContentTypeID=1</link><pubDate>Wed, 30 Dec 2015 03:21:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dc1d04d4-62f1-4f19-be44-52c225bad2ea</guid><dc:creator>caram5555</dc:creator><description>&lt;p&gt;Hi yaron.
In my case when no soft-device is enabled and wants to use timer, I use this function.&lt;/p&gt;
&lt;p&gt;A member of Mobilian (&lt;a href="http://www.mobilian.biz)"&gt;http://www.mobilian.biz)&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;static void lfclk_config(void)
{

    /* enable clock as Internal 32KHz oscillator*/

    NRF_CLOCK-&amp;gt;LFCLKSRC            = (CLOCK_LFCLKSRC_SRC_RC &amp;lt;&amp;lt; CLOCK_LFCLKSRC_SRC_Pos);
    NRF_CLOCK-&amp;gt;EVENTS_LFCLKSTARTED = 0;
    NRF_CLOCK-&amp;gt;TASKS_LFCLKSTART    = 1;

    while (NRF_CLOCK-&amp;gt;EVENTS_LFCLKSTARTED == 0)
    {
        /* Do Nothing */
    }
    NRF_CLOCK-&amp;gt;EVENTS_LFCLKSTARTED = 0;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/timer.c"&gt;timer.c&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>