<?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>nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/60303/nrf9160-device-functionality-after-a-week</link><description>Hi, 
 I&amp;#39;m using latest master branch of nRF Connect SDK and pre-released modem FW 1.1.2 which is including ANT-&amp;gt;AUX switching. I&amp;#39;m developing a firmware for a custom board that has nRF9160 SiP. 
 I would like to set the device to start GPS once a week</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 10 Jul 2020 12:50:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/60303/nrf9160-device-functionality-after-a-week" /><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/259448?ContentTypeID=1</link><pubDate>Fri, 10 Jul 2020 12:50:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bd2b47a0-81ab-46ed-a012-1399ddcf6012</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;Nice that you finally found a solution &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/259378?ContentTypeID=1</link><pubDate>Fri, 10 Jul 2020 08:37:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eead7959-6048-429d-addb-c51b6448a95f</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;Thanks for the more detailed information! I created a bug report in&amp;nbsp;&lt;a href="https://github.com/zephyrproject-rtos/zephyr/issues"&gt;https://github.com/zephyrproject-rtos/zephyr/issues&lt;/a&gt;&lt;span&gt;&amp;nbsp;so let&amp;#39;s see if they are going to solve this.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;EDIT:&lt;/strong&gt;&amp;nbsp;It seems to be already fixed in Zephyr but it&amp;#39;s not pushed to NCS yet. If you want to check the ticket I created, here is the link:&amp;nbsp;&lt;a href="https://github.com/zephyrproject-rtos/zephyr/issues/26793"&gt;https://github.com/zephyrproject-rtos/zephyr/issues/26793&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;br /&gt;Tero&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/259225?ContentTypeID=1</link><pubDate>Thu, 09 Jul 2020 14:04:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9cfd2968-e5aa-4125-9164-9713077badd2</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;Could you try to ask about this in&amp;nbsp;&lt;a href="https://github.com/zephyrproject-rtos/zephyr/issues"&gt;https://github.com/zephyrproject-rtos/zephyr/issues&lt;/a&gt;&amp;nbsp;or&amp;nbsp;&lt;a href="https://lists.zephyrproject.org/g/devel/topics"&gt;https://lists.zephyrproject.org/g/devel/topics&lt;/a&gt;&amp;nbsp;to get in direct contact with the developers of these libraries and ask&amp;nbsp;if there is a bug?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I tested&lt;em&gt;&amp;nbsp;k_delayed_work_submit_to_queue(&amp;amp;my_work_q,&amp;nbsp;&amp;amp;my_device.work,&amp;nbsp;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;K_MINUTES(2160))&amp;nbsp;&lt;/em&gt;and tried to watch what happened in the underlying functions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;k_delayed_work_submit_to_queue() (ncs\v1.3.0\zephyr\kernel\work_q.c)&amp;nbsp;→
&lt;ul&gt;
&lt;li&gt;z_add_timeout() (ncs\v1.3.0\zephyr\kernel\timeout.c)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I added some logging in&amp;nbsp;&lt;span&gt;z_add_timeout(),&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;void z_add_timeout(struct _timeout *to, _timeout_func_t fn,
		   k_timeout_t timeout)
{
        .
        .
        .
		if (t == NULL) {
			sys_dlist_append(&amp;amp;timeout_list, &amp;amp;to-&amp;gt;node);
		}
		printk(&amp;quot;z_add_timeout--&amp;gt;timeout: %llu\n&amp;quot;, next_timeout());
		if (to == first()) {
			z_clock_set_timeout(next_timeout(), false);
		}
	}
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;and got the following: &amp;quot;z_add_timeout--&amp;gt;timeout: 0&amp;quot;, which is why it triggers immediately I think.&lt;/p&gt;
&lt;p&gt;If you don&amp;#39;t get any help from the above links, please tell me and I will try to get to the bottom of it.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/257814?ContentTypeID=1</link><pubDate>Wed, 01 Jul 2020 12:01:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:98cfca9e-cff4-4d04-8220-e8aac1d6bc7e</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;No worries, it&amp;#39;s not keeping me stuck. For now it&amp;#39;s in &amp;quot;would be nice to have&amp;quot; state so it&amp;#39;s not that urgent case.&lt;/p&gt;
&lt;p&gt;BR, Tero&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/257795?ContentTypeID=1</link><pubDate>Wed, 01 Jul 2020 11:22:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bb450b60-7351-462c-abaf-b78b64ee62a7</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;My apologies for the delay, I&amp;#39;ve been quite busy lately. Hopefully, this issue isn&amp;#39;t keeping you stuck. I will try to get to the bottom of this within this week.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/256459?ContentTypeID=1</link><pubDate>Tue, 23 Jun 2020 13:03:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c96494cd-c545-492f-873e-8f93868ac3a6</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I looked some at this, but have not figured out the cause yet. I&amp;#39;ll share my temporary findings.&lt;/p&gt;
&lt;p&gt;I checked if K_MINUTES worked properly for different values and got these results (&lt;span style="color:#0000ff;text-decoration:underline;"&gt;blue text&lt;/span&gt;--&amp;gt;K_MINUTES worked):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;K_MINUTES(&lt;span&gt;2880&lt;/span&gt;)&lt;br clear="none" /&gt;
&lt;ul&gt;
&lt;li&gt;This should be (2880 minutes)*(60 seconds/minute)*(1000ms/sec) =&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="color:#ff0000;text-decoration:underline;"&gt;172 800 000 ms&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;This should be (&lt;span&gt;172 800 000*&amp;nbsp;32768 +&amp;nbsp;999)/1000 =&lt;span style="color:#ff0000;"&gt;&amp;nbsp;&lt;span style="text-decoration:underline;"&gt;5.662&amp;nbsp;&amp;times; 10^9 ticks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;2880&amp;nbsp;minutes&amp;nbsp;to&amp;nbsp;ticks&amp;nbsp;to&amp;nbsp;ms:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;__ticks_to_ms&lt;/span&gt;(&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;2880&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;)); gives:&amp;nbsp;2880 minutes to ticks to ms:&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="text-decoration:underline;"&gt;41728000 ms (~695 minutes)&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;2880&amp;nbsp;minutes&amp;nbsp;in&amp;nbsp;ticks:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;2880&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;); gives:&amp;nbsp;2880 minutes in ticks:&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="text-decoration:underline;"&gt;1367343104 ticks&lt;/span&gt;&lt;br /&gt;&lt;span style="text-decoration:underline;"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;K_MINUTES(2160)
&lt;ul&gt;
&lt;li&gt;This should be&amp;nbsp;(2160 minutes)*(60 seconds/minute)*(1000ms/sec) =&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="color:#0000ff;text-decoration:underline;"&gt;129 600 000 ms&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;This should be&amp;nbsp;(129 600 000*&amp;nbsp;32768 +&amp;nbsp;999)/1000 =&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="color:#0000ff;text-decoration:underline;"&gt;4.2467&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&amp;times; 10^9&lt;/span&gt;&amp;nbsp;ticks&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;2160&amp;nbsp;minutes&amp;nbsp;in&amp;nbsp;ticks:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;2160&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;) gives:&amp;nbsp;&lt;span style="text-decoration:underline;"&gt;4 246 732 800&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;2160&amp;nbsp;minutes&amp;nbsp;to&amp;nbsp;ticks&amp;nbsp;to&amp;nbsp;ms:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;__ticks_to_ms&lt;/span&gt;(&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;2160&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;)) gives:&amp;nbsp;&lt;span style="color:#000000;text-decoration:underline;"&gt;129 600 000&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;5040&lt;/span&gt;)&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;This should be&amp;nbsp;(5040 minutes)*(60 seconds/minute)*(1000ms/sec) =&amp;nbsp;&lt;span style="color:#ff0000;text-decoration:underline;"&gt;302 400 000 ms ()&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;This should be&amp;nbsp;(&lt;span&gt;302 400 000*&amp;nbsp;32768 +&amp;nbsp;999)/1000 =&amp;nbsp;&lt;span style="color:#ff0000;text-decoration:underline;"&gt;9.909 &amp;times; 10^9 ticks&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;5040&amp;nbsp;minutes&amp;nbsp;in&amp;nbsp;ticks:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;5040&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;) gives:&amp;nbsp;5040 minutes in ticks:&lt;span style="text-decoration:underline;"&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;1319108608&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;5040&amp;nbsp;minutes&amp;nbsp;to&amp;nbsp;ticks&amp;nbsp;to&amp;nbsp;ms:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;__ticks_to_ms&lt;/span&gt;(&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;5040&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;)) gives:&amp;nbsp;5040 minutes to ticks to ms:&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="text-decoration:underline;"&gt;40256000&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;K_MINUTES(4320)
&lt;ul&gt;
&lt;li&gt;This should be&amp;nbsp;(4320minutes)*(60 seconds/minute)*(1000ms/sec) =&amp;nbsp;&lt;span style="color:#ff0000;text-decoration:underline;"&gt;2.592 &amp;times; 10^8&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;This should be&amp;nbsp;(&lt;span&gt;2.592 &amp;times; 10^8*&amp;nbsp;32768 +&amp;nbsp;999)/1000 =&amp;nbsp;&lt;span style="color:#ff0000;text-decoration:underline;"&gt;8.49347 &amp;times; 10^9 ticks&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;4320&amp;nbsp;minutes&amp;nbsp;in&amp;nbsp;ticks:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;4320&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;) gives:&amp;nbsp;4320 minutes in ticks:&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="text-decoration:underline;"&gt;4.1985x 10^9&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;printk&lt;/span&gt;(&lt;span&gt;&amp;quot;4320&amp;nbsp;minutes&amp;nbsp;to&amp;nbsp;ticks&amp;nbsp;to&amp;nbsp;ms:&amp;nbsp;%llu&lt;/span&gt;&lt;span&gt;\n&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;,&lt;span&gt;__ticks_to_ms&lt;/span&gt;(&lt;span&gt;K_MINUTES&lt;/span&gt;(&lt;span&gt;4320&lt;/span&gt;).&lt;span&gt;ticks&lt;/span&gt;)) gives:&amp;nbsp;4320 minutes to ticks to ms:&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="text-decoration:underline;"&gt;1.&lt;span&gt;2813&lt;/span&gt;&amp;nbsp;x 10^8&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I will continue investigating this when I get time&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/255797?ContentTypeID=1</link><pubDate>Thu, 18 Jun 2020 13:32:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:31619310-a4a8-4b61-b8d1-ef8ee7a4e408</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;That is strange.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I will be gone until Monday (22 June) but I will do some testing then and try to get to the bottom of it.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/255225?ContentTypeID=1</link><pubDate>Tue, 16 Jun 2020 11:21:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:13c3e797-d100-42d1-97cf-32a4a0428b99</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;I test your the project you shared and I&amp;#39;m still having the same problem. It is working with some values but not all. See below:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_SECONDS(15));	//working
	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_HOURS(160));	//working
	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_MINUTES(5040));	//working
	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_MINUTES(4320));	//not working
	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_MINUTES(2880));	//working
	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_MINUTES(2160));	//not working
	//k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_MINUTES(1500));	//not working
	k_delayed_work_submit_to_queue(&amp;amp;my_work_q, &amp;amp;my_device.work, K_MINUTES(1440));	//not working&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/255212?ContentTypeID=1</link><pubDate>Tue, 16 Jun 2020 10:19:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a37e020a-87f1-40e9-a93a-db43eee4bc1c</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I am not able to reproduce the behavior you&amp;#39;re talking about (immediately triggers) on commit &lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://github.com/nrfconnect/sdk-nrf/commit/7dcdee6deb2e04d45f2080dd0b91b5723631a9a4"&gt;7dcdee6deb2e04d45f2080dd0b91b5723631a9a4&lt;/a&gt;. Can you test this solution:&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/support-attachments/beef5d1b77644c448dabff31668f3a47-16a5e9dbee73473087be243d4ee4bede/work_5F00_submit_5F00_delay.zip"&gt;devzone.nordicsemi.com/.../work_5F00_submit_5F00_delay.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/254599?ContentTypeID=1</link><pubDate>Fri, 12 Jun 2020 06:48:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4e62ae2b-dfd6-4a4c-8f0f-2f417e4a2c14</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
[quote userid="72692" url="~/f/nordic-q-a/60303/nrf9160-device-functionality-after-a-week/254027"]I will test it out myself and see if I get the same result.[/quote]
&lt;p&gt;Have you got this working or are you having the same problem as I do?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/254029?ContentTypeID=1</link><pubDate>Tue, 09 Jun 2020 11:54:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:10e855d5-ab39-4a6a-b93e-8fed41044b83</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;I don&amp;#39;t want to use v.1.3.0-rc1 or earlier versions because I&amp;#39;m waiting quite a lot of upcoming changes, for example A-GPS support for Asset Tracker. I have been on master branch almost all the time so I have implemented the latest updates. Now I&amp;#39;m on the commit&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrf/commit/7dcdee6deb2e04d45f2080dd0b91b5723631a9a4"&gt;7dcdee6deb2e04d45f2080dd0b91b5723631a9a4&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/254027?ContentTypeID=1</link><pubDate>Tue, 09 Jun 2020 11:32:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3de29013-c661-49c8-9bca-bba824ed95b7</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;Did you check out NCS release candidate 1.3.0 before testing this? Many changes have happened to the underlying libraries that you should implement in order to make this work.&lt;/p&gt;
&lt;p&gt;E.g. in&amp;nbsp;&lt;em&gt;ncs\zephyr\kernel\timeout.c--&amp;gt;&lt;/em&gt;&lt;a href="https://github.com/nrfconnect/sdk-zephyr/blob/v2.3.0-rc1-ncs1-snapshot1/kernel/timeout.c#L86"&gt;z_add_timeout()&lt;/a&gt;, the argument&amp;nbsp;&lt;span&gt;s32_t&lt;/span&gt;&lt;span&gt; ticks changed to&amp;nbsp;&lt;span&gt;&lt;span&gt;k_timeout_t&lt;/span&gt; timeout:&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-zephyr/commit/7832738ae985a63febb8f82e7c4e34824f48486e#diff-fb2a509e3f45ffb30a72cf17792d75f6L30"&gt;https://github.com/nrfconnect/sdk-zephyr/commit/7832738ae985a63febb8f82e7c4e34824f48486e#diff-fb2a509e3f45ffb30a72cf17792d75f6L30&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;Please checkout &lt;em&gt;v1.3.0-rc1&lt;/em&gt;, or implement the changes into NCS v1.2.0.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;Simon&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;I just saw that you&amp;#39;ve used the configuration CONFIG_TIMEOUT_64BIT without any build issues. Which signifies that you&amp;#39;re on a newer tag than v1.2.0.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;What commit/tag are you on? I will test it out myself and see if I get the same result.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/254013?ContentTypeID=1</link><pubDate>Tue, 09 Jun 2020 10:51:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ef64b254-1183-4b72-b12c-9eee185860e8</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;I tested your suggestion to use 64 timeout ticks. I enabled CONFIG_TIMEOUT_64BIT in prj.conf and removed my split timer and directly calling this:&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;k_delayed_work_submit_to_queue(&amp;amp;application_work_q, &amp;amp;start_gps_work,
                                K_MINUTES(gps_start_delay_minutes));
// gps_start_delay_minutes for example 1521 minutes&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;and the device will start the GPS straight after no delay. I have no idea why it&amp;#39;s not working.&lt;/p&gt;
&lt;p&gt;- Tero&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/253329?ContentTypeID=1</link><pubDate>Thu, 04 Jun 2020 14:10:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0d746db2-7658-473e-85ae-ca7d7511cfec</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Thanks for telling me! I will test that as soon as possible.&lt;/p&gt;
&lt;p&gt;- Tero&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/253326?ContentTypeID=1</link><pubDate>Thu, 04 Jun 2020 14:04:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ae12f717-e82f-42b3-b438-e89649ae6812</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;Okay, I&amp;#39;ve figured out what&amp;#39;s causing the issue&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First&amp;nbsp;&lt;em&gt;k_delayed_work_submit_to_queue(&amp;amp;my_work_q,&amp;nbsp;&amp;amp;my_device.work,&amp;nbsp;K_HOURS(160))&amp;nbsp;&lt;/em&gt;is called
&lt;ul&gt;
&lt;li&gt;Where&amp;nbsp;&lt;em&gt;K_HOURS(160) &lt;/em&gt;equals&amp;nbsp;576000000&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Then &lt;em&gt;k_delayed_work_submit_to_queue()--&amp;gt;&lt;/em&gt;&lt;em&gt;k_ms_to_ticks_ceil32(576000000)&lt;/em&gt; is called&lt;/li&gt;
&lt;li&gt;Then &lt;em&gt;&lt;em&gt;k_ms_to_ticks_ceil32()--&amp;gt;z_tmcvt(&lt;/em&gt;&lt;/em&gt;t,&amp;nbsp;Z_HZ_ms,&amp;nbsp;Z_HZ_ticks...) is called&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;t equals&amp;nbsp;&lt;span&gt;576000000&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Z_HZ_ms equals&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Z_HZ_ticks equals 32768&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Eventually, &lt;a href="https://github.com/nrfconnect/sdk-zephyr/blob/v2.1.99-ncs1/include/sys/time_units.h#L100"&gt;this line&lt;/a&gt; is returned, which will convert the timeout to ticks. However, the number of ticks calculated will exceed what a u32_t type can store&lt;/span&gt;
&lt;ul&gt;
&lt;li&gt;t&amp;nbsp;*&amp;nbsp;to_hz&amp;nbsp;+&amp;nbsp;off)&amp;nbsp;/&amp;nbsp;from_hz =&amp;nbsp;(576 000 000 * 32768 + 999)/1000 = 18874368000 ticks
&lt;ul&gt;
&lt;li&gt;This is bigger than&amp;nbsp;&lt;span&gt;2,147,483,647, which I mentioned earlier in my reply&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;When converted to &lt;span&gt;u32_t type&lt;/span&gt;, it will be equal to&amp;nbsp;1694498816 ticks (this is what I got when logging it)&lt;/li&gt;
&lt;li&gt;This will lead to a timeout of (&lt;span&gt;1694498816 ticks)/(32768 ticks/sec) = 51,712‬&amp;nbsp;seconds =&amp;nbsp;&lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;14.36 hours&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;p&gt;I just figured out that this&amp;nbsp;seems to be&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-zephyr/blob/v2.3.0-rc1-ncs1-snapshot1/kernel/timeout.c#L86"&gt;fixed in the master branch&lt;/a&gt;, where the ticks are stored in&amp;nbsp;k_timeout_t--&amp;gt;k_ticks_t, which can hold up to 64 bits instead of 32 bits.&lt;/p&gt;
&lt;p&gt;Just make sure &lt;a href="https://github.com/nrfconnect/sdk-zephyr/blob/v2.3.0-rc1-ncs1-snapshot1/include/sys_clock.h#L45"&gt;CONFIG_TIMEOUT_64BIT&lt;/a&gt;&lt;span&gt;&amp;nbsp;is enabled.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best r&lt;/span&gt;&lt;span&gt;egards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Simon&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/252498?ContentTypeID=1</link><pubDate>Sat, 30 May 2020 02:16:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d185b34-b4e9-4008-8d05-89436d3ab936</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I am sorry for the delay. But when the answer is verified, it is removed from my stack of cases, and that is the reason I haven&amp;#39;t answered. I just happen to stumble upon this by accident.&lt;/p&gt;
&lt;p&gt;However, I&amp;#39;ll put in a feature request in Devzone that the case is reopened and visible for if the customer rejects it.&lt;/p&gt;
&lt;p&gt;I will look into your issue on the next working day (which is Tuesday due to Norwegian holiday on Monday).&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/251888?ContentTypeID=1</link><pubDate>Wed, 27 May 2020 10:05:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:192b6bab-b716-4d21-9e5b-bb096cd432ec</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Any updates on this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/249373?ContentTypeID=1</link><pubDate>Tue, 12 May 2020 08:38:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:00d09d63-6ee3-4a7c-9a8f-5332f8ae7cc3</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;I did&amp;nbsp;that almost the same way. I&amp;#39;m getting the current time from &lt;em&gt;date_time_now()&lt;/em&gt; after &lt;em&gt;date_time_update()&lt;/em&gt; and then calculating the time to the target time and using&amp;nbsp;&lt;span&gt;&lt;em&gt;k_delayed_work_submit_to_queue()&lt;/em&gt; which is split to 12h periods as minutes, and when the remaining time is shorter than 12h I&amp;#39;m then using the remaining time in&amp;nbsp;&lt;em&gt;k_delayed_work_submit_to_queue().&amp;nbsp;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;strong&gt;EDIT:&amp;nbsp;&lt;/strong&gt;I once verified your answer as a solution but it closed this case so I rejected it. I would like to have an answer for the following and then I could close the case:&amp;nbsp;&lt;br /&gt;Any idea will that&amp;nbsp;&lt;em&gt;k_delayed_work_submit_to_queue() &lt;/em&gt;be fixed to support longer periods so we shouldn&amp;#39;t use the split timer?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;But thanks for the help to this point!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;BR,&lt;br /&gt;Tero&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/249244?ContentTypeID=1</link><pubDate>Mon, 11 May 2020 14:48:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f7848a7a-e2a3-44e7-96de-e9d7c47c56c0</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I played around with the Date-Time Library. I did the following to make it work&lt;/p&gt;
&lt;p&gt;Used an already working nrf9160 project that connects to the network (I used http_application_update)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In prj.conf I added these configs:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_DATE_TIME=y
CONFIG_DATE_TIME_UPDATE_INTERVAL_SECONDS=10&lt;/pre&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;At the top of main.c, I included the Date-Time header file:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;date_time.h&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In main(), after modem configuration and connection to the network, I added these lines:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;s64_t date_time_stamp;
.
.
.
k_sleep(25000); //Wait some time to make sure the Date-Time update has happened
date_time_now(&amp;amp;date_time_stamp); 
printk(&amp;quot;Date time: %016llX\n&amp;quot;, date_time_stamp);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Then I got the following log:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;E: getaddrinfo, error: -11
E: Not getting time from any NTP server
LTE Link Connected!
I: Time successfully obtained (Log added by me in date_time.c)
Date time: 00000172042bf014&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;The timestamp 0x172042bf014 equals&amp;nbsp;1,589,207,887,892 and &lt;a href="https://www.timecalculator.net/milliseconds-to-date"&gt;gives the date&lt;/a&gt;:&amp;nbsp;&lt;span&gt;Mon 11 May 2020&lt;/span&gt;&lt;br /&gt;&lt;span&gt;16:38:07, which is correct&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Simon&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/248090?ContentTypeID=1</link><pubDate>Tue, 05 May 2020 08:29:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3533fa29-d1cb-41df-a012-67183c9b34fc</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;Not actually, not any progress on Date-Time stuff. For now I&amp;#39;m using half a week periods for starting GPS and the period is split into 12 hours.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/248084?ContentTypeID=1</link><pubDate>Tue, 05 May 2020 08:20:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6526dcbc-7a78-4423-b60f-787a79cf47be</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;Any progress on this while I&amp;#39;ve been gone?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/247185?ContentTypeID=1</link><pubDate>Wed, 29 Apr 2020 02:22:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ca173796-51c0-4cda-92a1-40766d899cc4</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I will be gone until monday (4th of may) and I&amp;#39;m not able to look at &lt;br /&gt;your issue until then&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/246027?ContentTypeID=1</link><pubDate>Wed, 22 Apr 2020 12:24:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1b55425a-e4c8-4b5a-a581-0012a78fb78b</guid><dc:creator>anicare-tero</dc:creator><description>&lt;p&gt;I will look into that Zephyr&amp;#39;s timer. I&amp;nbsp;earlier thought that splitting idea too and that might work.&lt;/p&gt;
&lt;p&gt;I was just wondering why that&amp;nbsp;&lt;span&gt;k_delayed_work_submit_to_queue() is not working with&amp;nbsp;larger hour values. That function also uses s32_t delay and I have my variable&amp;nbsp;gps_start_delay_hours with int and s32_t but there is no difference. The K_HOURS() still seems to calculate the delay to milliseconds correctly when printed out but I have no idea why it&amp;#39;s not working with submitting a work to a queue.&lt;/span&gt;&lt;/p&gt;
[quote userid="72692" url="~/f/nordic-q-a/60303/nrf9160-device-functionality-after-a-week/246022"]If you would rather like to use the Date-Time Library or&amp;nbsp;k_delayed_work_submit_to_queue() I can look into it.[/quote]
&lt;p&gt;The final goal is to use Date-Time Library or similar which could &amp;quot;wake-up&amp;quot; the device at the specific time. But for now I want to make it at the easier way and use&amp;nbsp;&lt;span&gt;k_delayed_work_submit_to_queue().&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/246022?ContentTypeID=1</link><pubDate>Wed, 22 Apr 2020 12:10:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:79e171b9-b06d-45ed-986d-21a08a480e7b</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;Couldn&amp;#39;t you use Zephyr&amp;#39;s &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/reference/kernel/timing/timers.html#_CPPv412k_timer_initP7k_timer16k_timer_expiry_t14k_timer_stop_t"&gt;Timer&lt;/a&gt;? The function&amp;nbsp;&lt;em&gt;k_timer_start()&amp;nbsp;&lt;/em&gt;accepts a timeout (in milliseconds) of type&amp;nbsp;&lt;span&gt;s32_t (&lt;/span&gt;&lt;span&gt;signed&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;int&lt;/span&gt;). The maximum value of s32_t&amp;nbsp;before it wraps around, is&amp;nbsp;&lt;span&gt;2,147,483,647 ms =&amp;nbsp;596 hours. When the timer expires you run&amp;nbsp;k_work_submit(). &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If you encounter any problems, you can also split the timeout into several segments, e.g.&amp;nbsp;163h/10=16.3 hours, and increment a counter every timeout. When the counter reaches e.g. 10 you&amp;nbsp;run&amp;nbsp;k_work_submit().&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I am not sure how precise this is, and if that is important to you, but can look into it if you would like to.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If you would rather like to use the Date-Time Library or&amp;nbsp;k_delayed_work_submit_to_queue() I can look into it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Simon&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9160 device functionality after a week</title><link>https://devzone.nordicsemi.com/thread/245988?ContentTypeID=1</link><pubDate>Wed, 22 Apr 2020 09:52:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1a854c0-5e97-4883-bc4d-f36bcaa3229f</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I am sorry for the delay, I will look at it today.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>