<?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 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/72207/nrf9160-psm-mode-strange-current-profile</link><description>Hello, 
 
 I&amp;#39;m working on getting PSM mode in LTE-M working so I can go to very low current operation between transmits to the cloud. I have things working pretty well, but I&amp;#39;m confused about the current usage profile. 
 
 Here&amp;#39;s my prj.conf 
 
 You can</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 09 Mar 2021 14:22:04 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/72207/nrf9160-psm-mode-strange-current-profile" /><item><title>RE: nrf9160 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/thread/298756?ContentTypeID=1</link><pubDate>Tue, 09 Mar 2021 14:22:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:87314912-3e3c-434c-bde9-b06d82f322b3</guid><dc:creator>crasspm</dc:creator><description>&lt;p&gt;Thanks Jonathan, I&amp;#39;m in contact with my network supplier now to verify.&amp;nbsp; I&amp;#39;ll also keep an eye on NBIOT and RAI.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/thread/298689?ContentTypeID=1</link><pubDate>Tue, 09 Mar 2021 12:12:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b29519c4-b3fd-487c-9eab-cb2bbce38221</guid><dc:creator>JONATHAN LL</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;No, it is sett and decided by the network.&amp;nbsp;&lt;br /&gt;Something you can check out is&amp;nbsp;RAI or release assistant indication but it is only&amp;nbsp;available in NBIOT.&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/thread/298457?ContentTypeID=1</link><pubDate>Mon, 08 Mar 2021 15:40:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3a44c132-672b-448b-92c4-da3ff8101818</guid><dc:creator>crasspm</dc:creator><description>&lt;p&gt;Thanks Jonathan.&amp;nbsp; My&amp;nbsp;lowest sleep&amp;nbsp;current is ~6uA so I&amp;#39;m sure I&amp;#39;m in PSM, my question about whether I&amp;#39;m connecting correctly is more targeted to whether my configuration (PSM timers etc) is to blame for the ~20s of&amp;nbsp;&lt;span&gt;Connected Mode DRX.&amp;nbsp; More importantly, is there any way to reduce this time spent in Connected Mode DRX?&amp;nbsp; I can see that the data transaction is complete (transmit and response receive) before the&amp;nbsp;Connected Mode DRX period, and if I can reduce this period I can save on power.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks!&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/thread/298271?ContentTypeID=1</link><pubDate>Mon, 08 Mar 2021 08:52:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bb17599b-ef83-4181-b983-f3871d7c74eb</guid><dc:creator>JONATHAN LL</dc:creator><description>[quote user="crasspm"]Am I connecting correctly?[/quote]
&lt;p&gt;Yes.&lt;br /&gt;&lt;br /&gt;When in PSM mode the consumption should be sub 100uA. If you test the UDP sample and measure you will see approximately how low it can go, and compare the results to what you have in your code.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;But, not all networks\SIM cards provide PSM so this is something you have to check.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/thread/297857?ContentTypeID=1</link><pubDate>Thu, 04 Mar 2021 14:30:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44b40866-6cbc-481f-8df1-1a954e851082</guid><dc:creator>crasspm</dc:creator><description>&lt;p&gt;Thanks Jonathan!&lt;/p&gt;
&lt;p&gt;Here is the connection code I&amp;#39;m using:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;		err = lte_lc_psm_req(true);
		if (err) {
			LOG_ERR(&amp;quot;PSM request failed, error: %d&amp;quot;, err);
			return err;
		}
		
		err = lte_lc_init();
		if (err) {
			LOG_ERR(&amp;quot;LTE link could not be established, error: %d&amp;quot;,
				err);
			return err;
		}
                
        err = lte_lc_connect();
		if (err) {
			LOG_ERR(&amp;quot;LTE link could not be established, error: %d&amp;quot;,
				err);
			return err;
		}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;As I understand it, RAI is only available for eDRX, which I am not enabling (in fact, if I do attempt to request RAI I get an error indicating that it isn&amp;#39;t available).&lt;/p&gt;
&lt;p&gt;Am I connecting correctly?&amp;nbsp; Can I possibly reduce the time spent&amp;nbsp;&lt;span&gt;listening on the PDCCH channel?&amp;nbsp; I would like to be very conservative with power.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks so much for your help so far!&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf9160 PSM mode strange current profile</title><link>https://devzone.nordicsemi.com/thread/297561?ContentTypeID=1</link><pubDate>Wed, 03 Mar 2021 14:42:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4a04a006-be41-446f-a37e-f3eee5e20c56</guid><dc:creator>JONATHAN LL</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;it is&amp;nbsp;lissening on the PDCCH channel, DRX interval is the space between the pikes. First is TX data (black area), Then RRC connected, then it idles (grey area).&lt;br /&gt;&lt;br /&gt;pleas take a look at the UDP sample, it shows you how to use and set up PSM.&lt;br /&gt;&lt;br /&gt;In the UDP sample the following is done to enable PSM:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;static int configure_low_power(void)
{​​​​​
int err;
#if defined(CONFIG_UDP_PSM_ENABLE)
/** Power Saving Mode */
err = lte_lc_psm_req(true);
if (err) {​​​​​
printk(&amp;quot;lte_lc_psm_req, error: %d\n&amp;quot;, err);
}​​​​​
#else
err = lte_lc_psm_req(false);
if (err) {​​​​​
printk(&amp;quot;lte_lc_psm_req, error: %d\n&amp;quot;, err);
}​​​​​
#endif
#if defined(CONFIG_UDP_EDRX_ENABLE)
/** enhanced Discontinuous Reception */
err = lte_lc_edrx_req(true);
if (err) {​​​​​
printk(&amp;quot;lte_lc_edrx_req, error: %d\n&amp;quot;, err);
}​​​​​
#else
err = lte_lc_edrx_req(false);
if (err) {​​​​​
printk(&amp;quot;lte_lc_edrx_req, error: %d\n&amp;quot;, err);
}​​​​​
#endif
#if defined(CONFIG_UDP_RAI_ENABLE)
/** Release Assistance Indication */
err = lte_lc_rai_req(true);
if (err) {​​​​​
printk(&amp;quot;lte_lc_rai_req, error: %d\n&amp;quot;, err);
}​​​​​
#endif
return err;
}​​​​​&lt;/pre&gt;&lt;br /&gt;Remember to call for PSM before connecting.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>