<?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>Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/65440/can-timers-be-accessed-after-advertisement-starts</link><description>I am new to nrf52. 
 I want to configure TIMER1 as a counter. 
 However it does not count. I have added it after advertisement_init 
 Does the nrf52 have any such limitations? How to handle them?</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 03 Sep 2020 14:34:02 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/65440/can-timers-be-accessed-after-advertisement-starts" /><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267886?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 14:34:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3933bec5-70f6-4547-a362-a0511c9d1edf</guid><dc:creator>Karl Ylvisaker</dc:creator><description>[quote user="Raja Sumant"]I was finally able to get the TIMER working but with registers and not the drv.[/quote]
&lt;p&gt;I am happy to hear that you have got the timer up and running, great!&lt;/p&gt;
[quote user="Raja Sumant"]I really do not know what is wrong with the driver.&amp;nbsp;[/quote]
&lt;p&gt;I suppose it is not configured correctly. If you would like to see the simplest TIMER driver usage please take a look at the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/nrf_dev_timer_example.html"&gt;TIMER peripheral example from the SDK&lt;/a&gt;&amp;nbsp;that I recommended earlier. You need to make sure that the correct source code file is included in your project, and that the sdk_config file has the correct _ENABLED defines set to 1. You can cross reference your own project&amp;#39;s sdk_config against the sdk_config of the TIMER example.&lt;br /&gt;&lt;br /&gt;Alternatively, if you would like to give the driver another try then you can show me the code in which you attempted to make it work with, and the corresponding sdk_config file.&lt;br /&gt;&lt;br /&gt;If you are satisfied with manipulating the TIMER registers directly then you are free to do so, of course.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267870?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 13:34:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f0278457-46f7-478d-93ef-fe74ba9f61a9</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;I was finally able to get the TIMER working but with registers and not the drv.&lt;br /&gt;&lt;br /&gt;I really do not know what is wrong with the driver.&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;uint32_t counter = 0 ;

static void hfclk_config(void) // Select 
{
    ret_code_t err_code = nrf_drv_clock_init();
    APP_ERROR_CHECK(err_code);

    nrf_drv_clock_hfclk_request(NULL);
}

static void counter_init()
{
        // Initialize timer module.
	NRF_TIMER1-&amp;gt;TASKS_STOP = 1;	
        NRF_TIMER1-&amp;gt;MODE = 2;// Low Power counter mode
        NRF_TIMER1-&amp;gt;PRESCALER = 8;	// Fhck / 2^8 
	//NRF_TIMER1-&amp;gt;CC[0] = 62500;	// 62500 - 1s
	NRF_TIMER1-&amp;gt;BITMODE = (TIMER_BITMODE_BITMODE_24Bit &amp;lt;&amp;lt; TIMER_BITMODE_BITMODE_Pos);
	NRF_TIMER1-&amp;gt;TASKS_CLEAR = 1;
}

static void read_TIM(void) // Follow 3 steps.
{
 NRF_TIMER1-&amp;gt;TASKS_COUNT = 1; // Step 1
NRF_TIMER1-&amp;gt;TASKS_CAPTURE[1] = 1 ; // Step 2. The TIMER implements one capture task for every available capture/compare register.
//Every time the CAPTURE[n] task is triggered, the Counter value is copied to the CC[n] register.
counter = NRF_TIMER1-&amp;gt;CC[1]; // Step 3
while(counter &amp;lt; 10000)
{
NRF_TIMER1-&amp;gt;TASKS_COUNT=1;
NRF_TIMER1-&amp;gt;TASKS_CAPTURE[1] = 1 ; // The TIMER implements one capture task for every available capture/compare register.
//Every time the CAPTURE[n] task is triggered, the Counter value is //copied to the CC[n] register.
counter = NRF_TIMER1-&amp;gt;CC[1];
}

NRF_TIMER1-&amp;gt;TASKS_CLEAR = 1;
}


int main(void)
{

    hfclk_config();
    counter_init();
    NRF_TIMER1-&amp;gt;TASKS_START = 1; // Important 
   
 for (;;)
    {
    read_TIM();
   
  }
}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267773?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 08:48:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d0ddcaf0-8dd3-45d3-bce2-83b81bfbb300</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
[quote user="Raja Sumant"]This is how it looks.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I am unable to run the timer.[/quote]
&lt;p&gt;Thank you for clarifying on this. From these lines, it seems that you have indeed not enabled the timers.&lt;br /&gt;So, if you are using the NRFX_TIMER driver, you will need to enable it in the sdk_config ( NRFX_TIMER_ENABLED 1 ), along with the particular timer instances you are intending to use ( NRFX_TIMER3_ENABLED 1 ). If you are using NRFX_DRIVER you will need to remove the legacy NRF_DRV_TIMER_* defines from your sdk_config file. If you are using the legacy nrf_drv_timer driver, then you will need to set their ENABLED&amp;#39;s.&lt;br /&gt;Please do this, and let me know if you are able to use the timer drivers following this.&lt;br /&gt;&lt;br /&gt;For future reference, it is always easiest if you share code using the &amp;quot;Insert -&amp;gt; code&amp;quot; option, instead of including screenshots. Screenshots often does not contain all the right information.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267764?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 08:19:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b52306d6-a420-4c4d-9fa3-304522cb2406</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1599121179668v1.png" alt=" " /&gt;&lt;br /&gt;Hello. This is how it looks.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I am unable to run the timer.&lt;br /&gt;&lt;br /&gt;I was only able to get the RTC counter working.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267760?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 08:06:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:90604901-802f-4087-9a9b-33d4f92fd026</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello again,&lt;/p&gt;
[quote user="Raja Sumant"]The Timer Driver method fails to work.&lt;br /&gt;&lt;br /&gt;When I use this,&lt;br /&gt;const nrf_drv_timer_t TIMER_LED = NRF_DRV_TIMER_INSTANCE(3);&lt;br /&gt;&lt;br /&gt;It does not compile. Hence I am working directly with the registers.[/quote]
&lt;p&gt;Are you familiar with the sdk_config.h file and its function?&lt;br /&gt;The compilation error you receive in your included picture is caused by the particular timer not being enabled in the sdk_config.&lt;br /&gt;Without seeing your sdk_config.h it is hard to say for certain, but I would guess that some *_TIMER_ENABLED defines are not set.&lt;br /&gt;Could you check this out for me, and let me know their current value?&lt;br /&gt;&lt;br /&gt;Are you able to run the TIMER example from the SDK that I referenced earlier?&lt;br /&gt;If you are, you may take a look in its sdk_config file, to see how the TIMER driver is set up there.&lt;br /&gt;&lt;br /&gt;I would highly recommend making use of the drivers and libraries provided in the SDK - sinc&lt;i&gt;e&amp;nbsp;&lt;/i&gt;it will save you a lot of work and fine-reading of the register descriptions.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267734?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 05:58:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5949b1b-8fd8-4fc7-bfbd-9256fac3af20</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1599112634658v1.png" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;Hello Karl. The Timer Driver method fails to work.&lt;br /&gt;&lt;br /&gt;When I use this,&lt;br /&gt;const nrf_drv_timer_t TIMER_LED = NRF_DRV_TIMER_INSTANCE(3);&lt;br /&gt;&lt;br /&gt;It does not compile. Hence I am working directly with the registers.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267732?ContentTypeID=1</link><pubDate>Thu, 03 Sep 2020 05:57:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:19730ef7-8b71-4cb9-b438-ecc070660cc7</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1599112555673v1.png" alt=" " /&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Hello Karl. I am not using the SDK directly and have chosen the registers mode due to this reason. It throws an error.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267540?ContentTypeID=1</link><pubDate>Wed, 02 Sep 2020 07:34:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:29319f7d-1965-481a-beda-a342b37957d1</guid><dc:creator>Karl Ylvisaker</dc:creator><description>[quote user="Raja Sumant"]TIMER0-5 mode counter is deprecated? Does that mean we can no longer user TIMER0-5 as a counter?[/quote]
&lt;p&gt;No, only the &lt;em&gt;Counter mode&lt;/em&gt; is deprecated - this because the LowPowerCounter mode has been added with the nRF52 series.&lt;br /&gt;You can absolutely use the TIMER0-5 as counters, just use the LowPowerCounter mode.&lt;br /&gt;You may of course still also use the deprecated Counter mode, but it comes with a higher power consumption.&lt;br /&gt;&lt;br /&gt;Please see &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/18844/what-is-low-power-counter-mode"&gt;this ticket for further detail&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267536?ContentTypeID=1</link><pubDate>Wed, 02 Sep 2020 07:31:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7c9f3e21-3c97-42b5-b026-a7c298339b3e</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
[quote user="Raja Sumant"]How to find if the code uses soft device?[/quote]
&lt;p&gt;If you are doing BLE communication, then the SoftDevice is present and enabled.&lt;br /&gt;From the screenshots you have shared this seems to be the case, since you are using the ble_app_bps example from the SDK as your basis.&lt;br /&gt;&lt;br /&gt;Is there a particular reason for why you are accessing the timer registers directly, instead of using the drivers provided with the SDK?&lt;br /&gt;If all you want to do is create a simple timer, then I highly recommend the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/group__app__timer.html"&gt;Application Timer Library&lt;/a&gt;, or the &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52832.ps.v1.1%2Ftimer.html&amp;amp;anchor=concept_xbd_hqp_sr"&gt;TIMER peripheral driver&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;For future reference, I would recommend that you use the &amp;quot; Insert -&amp;gt; Code &amp;quot; option when sharing code in the forum. This drastically increases readability.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267458?ContentTypeID=1</link><pubDate>Tue, 01 Sep 2020 12:11:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a7f267c7-3650-4da1-a205-8c787776fe8d</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1598962212296v1.png" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;TIMER0-5 mode counter is deprecated? Does that mean we can no longer user TIMER0-5 as a counter?&lt;br /&gt;&lt;br /&gt;Only RTC can be used?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267376?ContentTypeID=1</link><pubDate>Tue, 01 Sep 2020 08:07:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:17e0f50b-7472-439a-b246-7381d9700401</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;Hello.&amp;nbsp; The following are my function calls:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to find if the code uses soft device?&lt;br /&gt;&lt;br /&gt;I am editing the existing BPS example. I have added the following code to it.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;static void hfclk_config(void)&lt;br /&gt;{&lt;br /&gt; ret_code_t err_code = nrf_drv_clock_init();&lt;br /&gt; APP_ERROR_CHECK(err_code);&lt;/p&gt;
&lt;p&gt;nrf_drv_clock_hfclk_request(NULL);&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;static void counter_init()&lt;br /&gt;{&lt;br /&gt; // Initialize timer module.&lt;br /&gt;NRF_TIMER1-&amp;gt;TASKS_STOP = 1; &lt;br /&gt;NRF_TIMER1-&amp;gt;MODE = TIMER_MODE_MODE_Counter;&lt;br /&gt; NRF_TIMER1-&amp;gt;BITMODE = (TIMER_BITMODE_BITMODE_24Bit &amp;lt;&amp;lt; TIMER_BITMODE_BITMODE_Pos);&lt;br /&gt; NRF_TIMER1-&amp;gt;TASKS_CLEAR = 1;&lt;br /&gt; NRF_TIMER1-&amp;gt;EVENTS_COMPARE[0] = 0;&lt;br /&gt; NRF_TIMER1-&amp;gt;TASKS_COUNT;&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;static void read_freq(void)&lt;br /&gt;{&lt;br /&gt;NRF_TIMER1-&amp;gt;TASKS_CLEAR = 1;&lt;br /&gt;NRF_TIMER1-&amp;gt;TASKS_CAPTURE[1] = 1 ;&lt;br /&gt;counter = NRF_TIMER1-&amp;gt;CC[1];&lt;br /&gt;NRF_LOG_INFO(&amp;quot;Went here&amp;quot;);&lt;br /&gt;//NRF_LOG_INFO(counter);&lt;br /&gt;while(counter &amp;lt; 100000)&lt;br /&gt;{&lt;br /&gt;counter = NRF_TIMER1-&amp;gt;CC[1];&lt;br /&gt;&lt;span&gt;while(!(nrf_gpio_pin_read(BTN)));&lt;/span&gt;&lt;br /&gt;&lt;span&gt;while((nrf_gpio_pin_read(BTN)));&lt;/span&gt;&lt;br /&gt;&lt;span&gt;increment++;&lt;/span&gt;&lt;br /&gt;//NRF_LOG_INFO(&amp;quot;Went here&amp;quot;);&lt;br /&gt;}&lt;br /&gt;freq = increment;&lt;br /&gt;increment = 0;&lt;br /&gt;//NRF_LOG_INFO(freq);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;hfclk_config();&lt;br /&gt; counter_init();&lt;br /&gt;&lt;br /&gt;NRF_TIMER1-&amp;gt;TASKS_START = 1;&lt;br /&gt;&lt;br /&gt;for (;;)&lt;br /&gt; {&lt;br /&gt; read_freq();&lt;br /&gt; //idle_state_handle();&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;You can ignore the LED part. I am just using it as a debug point.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I see that clock has been started:&lt;br /&gt;&lt;br /&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1598947541326v1.png" /&gt;&lt;br /&gt;&lt;br /&gt;Timer mode has been set to 1.&lt;br /&gt;&lt;br /&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1598947646593v2.png" /&gt;&lt;br /&gt;&lt;br /&gt;But the CC values are empty. They are not getting incremented.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267371?ContentTypeID=1</link><pubDate>Tue, 01 Sep 2020 07:55:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a6a67008-aee0-4c5b-8f4e-c5fcf8d37301</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
[quote user=""]I am new to nrf52.[/quote]
&lt;p&gt;Welcome!&lt;/p&gt;
&lt;p&gt;[quote user=""][/quote]&lt;/p&gt;
&lt;p&gt;I want to configure TIMER1 as a counter.&lt;/p&gt;
&lt;p&gt;However it does not count. I have added it after advertisement_init&lt;/p&gt;
&lt;p&gt;Does the nrf52 have any such limitations? How to handle them?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;No, there are no such limitations. However, please be aware that the SoftDevice ( if present and enabled ) will wrest control of the CPU to run timing-critical code.&lt;br /&gt;When in a BLE connection, this means that every connection interval, the CPU will be controlled by the SoftDevice.&amp;nbsp;&lt;br /&gt;The SoftDevice has the highest priority, and thus takes priority over any application layer tasks.&lt;br /&gt;&lt;br /&gt;With that being said, could you show me how you are initializing your timer? I see from the screenshot you have shared that you are calling TASKS_START, but how is the timer configured prior to this?&lt;br /&gt;If the configuration is incorrect or missing, I would expect that the timer does not start.&lt;br /&gt;&lt;br /&gt;Furthermore, what are you here trying to have your code do? I see that you highlight the LED1 PIN CLEAR code line in your screenshot - but this is not related to the timer in any way. I also see that you are calling a&amp;nbsp;&lt;em&gt;read_freq&lt;/em&gt; function in your for-loop, but I do not know anything about what that is meant to do.&lt;br /&gt;If my assumption is correct, and you would like to have the LED controlled by the TIMER, then I highly recommend taking a look at the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.0.0/nrf_dev_timer_example.html"&gt;TIMER example from the SDK&lt;/a&gt;&amp;nbsp;- it demonstrates exactly how to connect a LED toggle with a timer.&lt;br /&gt;&lt;br /&gt;Please do not hesitate to ask if you should encounter any issues or questions!&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Can timers be accessed after advertisement starts?</title><link>https://devzone.nordicsemi.com/thread/267344?ContentTypeID=1</link><pubDate>Tue, 01 Sep 2020 07:09:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:84c02c74-5f46-403c-ab50-77f13c0239cc</guid><dc:creator>Raja Sumant</dc:creator><description>&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1598944112133v1.png" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;The timers are not being set at all. Does it have to do anything with the clock? I set the internal clock for Timer1&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>