<?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>Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/69178/thingy-91-serial-lte-modem-psm</link><description>I want to evaluate power consumption of nRF9160 used as AT command modem using Thingy:91 Serial LTE modem. 
 How to achieve lowest power consumption for Thingy:91 LTE Modem in PSM please ? 
 - Thingy:91 v1.0.0 
 - LTE modem app from ncs v1.4.0 
 - Modem</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sun, 24 Jan 2021 20:05:11 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/69178/thingy-91-serial-lte-modem-psm" /><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/290876?ContentTypeID=1</link><pubDate>Sun, 24 Jan 2021 20:05:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4ff115ce-9b57-4fb2-8d4c-30363a615035</guid><dc:creator>SilasV</dc:creator><description>&lt;p&gt;Hi Stian&lt;/p&gt;
&lt;p&gt;Just for the test sake, I tried this in the prj file:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;# Enable GPIO wakeup if sleep is expected
CONFIG_SLM_GPIO_WAKEUP=y
CONFIG_SLM_INTERFACE_PIN=26&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Although my custom board does not use P0.26 pin, this pin is left open on the current version of the&amp;nbsp;nrf9160 PCB. And surprisingly it works!!&lt;/p&gt;
&lt;p&gt;when powered up, it does not respond with &amp;quot;ready&amp;quot;, but just sending a random character, it responds with &amp;quot;ready&amp;quot;, so I believe that after power up, the modem is in sleep mode. Sending character &amp;#39;a&amp;#39; wakes it up, and then sending regular commands for UDP connection and sending data. After that sending &amp;quot;AT#XSLEEP=1&amp;quot; to put it sleep mode. I tried wake up after 15min, and it worked as expected.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is there any time limit to which the sleep mode? I tried wake up after 50min, and it did not respond with &amp;#39;ready&amp;#39;. In normal application, the sleep period of the device would be between 15min to 30min (user configurable). Would you please let me know if there is any limitation on the sleep period for nRF9160 .&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/290370?ContentTypeID=1</link><pubDate>Wed, 20 Jan 2021 23:20:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f9371610-1440-4142-a9a3-e48175bebbd0</guid><dc:creator>Stian R&amp;#248;ed Hafskjold</dc:creator><description>&lt;p&gt;Hi, I just tried waking up using a dummy byte over UART, and I managed to do it successfully while also keeping the connection.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First you have to set &lt;strong&gt;CONFIG_SLM_INTERFACE_PIN&lt;/strong&gt; to &lt;strong&gt;19&lt;/strong&gt;, which is the uart0 RX on the thingy91.&lt;/li&gt;
&lt;li&gt;Then in the &lt;strong&gt;exit_idle()&lt;/strong&gt; function add a 1 second delay before &lt;strong&gt;slm_at_host_init()&lt;/strong&gt;, so that the dummy byte finishes transmitting before the at host init. The function should now look like this:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;static void exit_idle(struct k_work *work)
{
	int err;

	LOG_INF(&amp;quot;Exit Idle&amp;quot;);
	gpio_pin_interrupt_configure(gpio_dev, CONFIG_SLM_INTERFACE_PIN,
				     GPIO_INT_DISABLE);
	gpio_remove_callback(gpio_dev, &amp;amp;gpio_cb);
	/* Do the same as nrf_gpio_cfg_default() */
	gpio_pin_configure(gpio_dev, CONFIG_SLM_INTERFACE_PIN, GPIO_INPUT);
	/* Restart SLM services */
	
	k_sleep(K_MSEC(1000)); // &amp;lt;- ADD THIS LINE
	
	err = slm_at_host_init();
	if (err) {
		LOG_ERR(&amp;quot;Failed to init at_host: %d&amp;quot;, err);
	}
}&lt;/pre&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Here are the AT commands I used in the LTE link Monitor:&lt;/p&gt;
&lt;pre&gt;a&lt;br /&gt;Ready&lt;br /&gt;AT+CFUN=1&lt;br /&gt;OK&lt;br /&gt;AT+CEREG=5&lt;br /&gt;OK&lt;br /&gt;AT+CPSMS=1,&amp;quot;&amp;quot;,&amp;quot;&amp;quot;,&amp;quot;10100001&amp;quot;,&amp;quot;00000000&amp;quot;&lt;br /&gt;OK&lt;br /&gt;AT+CEREG?&lt;br /&gt;+CEREG: 5,5,&amp;quot;0AD3&amp;quot;,&amp;quot;020EC516&amp;quot;,7,,,&amp;quot;00000000&amp;quot;,&amp;quot;00000110&amp;quot;&lt;br /&gt;OK&lt;br /&gt;AT#XSLEEP=0&lt;br /&gt;a&lt;br /&gt;Ready&lt;br /&gt;Ready&lt;br /&gt;AT+CEREG?&lt;br /&gt;+CEREG: 5,5,&amp;quot;0AD3&amp;quot;,&amp;quot;020EC516&amp;quot;,7,,,&amp;quot;00000000&amp;quot;,&amp;quot;00000110&amp;quot;&lt;br /&gt;OK&lt;/pre&gt;
&lt;p&gt;So you can see that I&amp;#39;m waking up with just sending the letter &amp;quot;a&amp;quot;, then I get the Ready response, and then you see from the AT+CEREG? that the modem is still connected&lt;/p&gt;
&lt;p&gt;I also tried unplugging the USB after AT#XSLEEP=0, and plugging it back in, and it still works, still connected to the network (you have to reconnect to the USB device in the LTE Link Monitor software)&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;NOTE&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I see that you are using&lt;strong&gt; AT#XSLEEP=1&lt;/strong&gt;. This command is shutting down the modem, disconnecting from the network before going to sleep. Use &lt;strong&gt;AT#XSLEEP=0&lt;/strong&gt; if you want to keep the connection&lt;/p&gt;
&lt;/blockquote&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/290335?ContentTypeID=1</link><pubDate>Wed, 20 Jan 2021 16:03:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9c7b58d4-fd74-4d05-9a13-cf209a5e191c</guid><dc:creator>SilasV</dc:creator><description>&lt;p&gt;HI&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for your suggestion. On my custom board, I am using P0.05 - RX and P0.06 TX, and I configured the RX pin=5 as wakeup --&amp;gt;&amp;nbsp;CONFIG_SLM_INTERFACE_PIN=5, but that did not help, the modem does not respond on power up (I don&amp;#39;t receive Ready response).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So I am considering a dedicated pin for the wakeup. I will soon get the new version of PCB.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/289567?ContentTypeID=1</link><pubDate>Sun, 17 Jan 2021 00:12:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6ba2d264-3f2f-4ae6-960b-946e634f6f4b</guid><dc:creator>Michal M&amp;#252;hlpachr</dc:creator><description>&lt;p&gt;Hi, thank you for hints.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I have&amp;nbsp;&lt;strong&gt;CONFIG_SLM_GPIO_WAKEUP&lt;/strong&gt;&lt;span&gt;&lt;strong&gt;=y&lt;/strong&gt;&amp;nbsp;and&amp;nbsp;&lt;/span&gt;&lt;strong&gt;CONFIG_SLM_INTERFACE_PIN=26&amp;nbsp;&lt;/strong&gt;&lt;strong&gt;&lt;span&gt;in prj.conf.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;In &lt;strong&gt;thingy91_nrf9160ns.overlay&amp;nbsp;&lt;/strong&gt;I have:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;amp;uart1 {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; status = &amp;quot;disabled&amp;quot;;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;};&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;&amp;amp;uart0 {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; /delete-property/ hw-flow-control;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; /delete-property/ rts-pin;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt; /delete-property/ cts-pin;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;};&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I am able to wake up nRF9160 by GPIO.&lt;/p&gt;
&lt;p&gt;I am getting sometimes during nRF9160 wake up and always after closing serial port in nRF Connect LTE LInk Monitor those logs in nRF9160 RTT:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,720] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (4)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,720] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (8)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,812] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (4)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,843] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (8)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,904] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (4)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,934] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (8)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.882,995] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (4)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.883,026] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (8)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.883,087] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (4)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.883,117] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (8)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.883,178] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (4)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;[00:00:07.883,209] &amp;lt;wrn&amp;gt; at_host: RX_STOPPED (8)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;After that nRF9160 stops to communicate on serial port (do not react on AT). Serial port is reopened.&lt;/p&gt;
&lt;p&gt;In this state I have to power cycle nRF9160.&lt;br /&gt;How to fix that please ?&lt;/p&gt;
&lt;p&gt;I am using&amp;nbsp;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;AT+CPSMS=1,,,&amp;quot;00100001&amp;quot;,&amp;quot;00000000&amp;quot;&amp;nbsp;&lt;/span&gt;for PSM.&lt;/p&gt;
&lt;p&gt;After AT#XSLEEP=1 while in +CEREG: 5 and wakeup by GPIO (button on Thingy91) nRF9160 always re-register into EPC open new session and goes through +CEREG: 2.&lt;br /&gt;How to keep session during PSM please and save power for re-register please ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/288778?ContentTypeID=1</link><pubDate>Tue, 12 Jan 2021 22:00:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fde4fc8d-0581-4300-ac92-f2f5ca3165a6</guid><dc:creator>Stian R&amp;#248;ed Hafskjold</dc:creator><description>&lt;p&gt;I believe you can try to set the UART RX pin as the wakeup pin. Then send a dummy byte from the UART host to wake up the nRF9160. The level changes on the UART RX pin should be equivalent to pushing a button. I&amp;#39;ve not been able to test this my self, but I don&amp;#39;t see why it shouldn&amp;#39;t work. It&amp;#39;s worth a try.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/288059?ContentTypeID=1</link><pubDate>Fri, 08 Jan 2021 00:16:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:87b1bbd6-a150-4588-b8e7-102b67faf71d</guid><dc:creator>SilasV</dc:creator><description>&lt;p&gt;Hi, thanks for your reply :)&lt;/p&gt;
&lt;p&gt;For my current version of custom board, I do not have a GPIO pin designed to get wakeup trigger from external MCU.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is there a way to config nRF9160 to just wake up from the UART1 after putting nRF9160 to sleep with the SLEEP command?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In my next version of the pcb design, I will make sure to update and include this GPIO wakeup from external MCU.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/287994?ContentTypeID=1</link><pubDate>Thu, 07 Jan 2021 14:56:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d764c940-c6f4-4680-b8e9-0d282ff85206</guid><dc:creator>Stian R&amp;#248;ed Hafskjold</dc:creator><description>&lt;p&gt;Hi, I tried this on a thingy91 and it works almost out of the box, with a couple of changes. I tried with the Serial LTE Modem application from NCS 1.4.0.&lt;/p&gt;
&lt;p&gt;You have to add&lt;strong&gt; CONFIG_SLM_GPIO_WAKEUP&lt;/strong&gt;&lt;span&gt;&lt;strong&gt;=y&lt;/strong&gt; and &lt;/span&gt;&lt;strong&gt;CONFIG_SLM_INTERFACE_PIN=26&lt;/strong&gt; to the prj.conf as you did. No other changes are necessary to wake up using the button.&lt;/p&gt;
&lt;p&gt;Here is my full prj.conf:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#
# Copyright (c) 2019 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
#
# General config
CONFIG_LOG=y
CONFIG_LOG_DEFAULT_LEVEL=3
CONFIG_STACK_SENTINEL=y
CONFIG_NEWLIB_LIBC=y
CONFIG_NEWLIB_LIBC_FLOAT_PRINTF=y
CONFIG_RING_BUFFER=y

# Segger RTT
CONFIG_USE_SEGGER_RTT=y
CONFIG_RTT_CONSOLE=y
CONFIG_UART_CONSOLE=n
CONFIG_LOG_BACKEND_RTT=y
CONFIG_LOG_BACKEND_UART=n

# Network
CONFIG_NETWORKING=y
CONFIG_NET_SOCKETS=y
CONFIG_NET_NATIVE=n

# BSD library
CONFIG_BSD_LIBRARY=y
# Align the max FD entry to BSD_MAX_SOCKET_COUNT(8)
CONFIG_POSIX_MAX_FDS=8
# Enable below for modem trace
#CONFIG_BSD_LIBRARY_TRACE_ENABLED=y

# Use GPIO
CONFIG_GPIO=y
CONFIG_GPIO_NRFX=y
CONFIG_GPIO_NRF_P0=y

# UART interface
CONFIG_SERIAL=y
CONFIG_UART_ASYNC_API=y
CONFIG_NRFX_TIMER2=y

# LTE link control
CONFIG_LTE_LINK_CONTROL=y
CONFIG_LTE_AUTO_INIT_AND_CONNECT=n

# Stacks and heaps
CONFIG_MAIN_STACK_SIZE=4096
CONFIG_HEAP_MEM_POOL_SIZE=16384
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=8192

# AT_CMD
# Enable AT_CMD debug for details
#CONFIG_AT_CMD_LOG_LEVEL_DBG=y

# Device power management
CONFIG_DEVICE_POWER_MANAGEMENT=y

# Enable SUPL client support
#CONFIG_SUPL_CLIENT_LIB=y

# FOTA
CONFIG_HTTP_PARSER_URL=y
CONFIG_FOTA_DOWNLOAD=y
CONFIG_FOTA_DOWNLOAD_PROGRESS_EVT=y
CONFIG_DFU_TARGET=y
CONFIG_DOWNLOAD_CLIENT=y
CONFIG_DOWNLOAD_CLIENT_STACK_SIZE=4096
CONFIG_BOOTLOADER_MCUBOOT=y
CONFIG_IMG_MANAGER=y
CONFIG_FLASH=y
CONFIG_IMG_ERASE_PROGRESSIVELY=y

# Application-specific
CONFIG_SLM_LOG_LEVEL_INF=y
# Enable GPIO wakeup if sleep is expected
CONFIG_SLM_GPIO_WAKEUP=y
CONFIG_SLM_INTERFACE_PIN=26
# Use UART_0 (when working with PC terminal)
CONFIG_UART_0_NRF_HW_ASYNC_TIMER=2
# Use UART_2 (when working with external MCU)
#CONFIG_SLM_CONNECT_UART_2=y
#CONFIG_UART_2_NRF_HW_ASYNC_TIMER=2
# Use optional TCP/TLS Proxy
#CONFIG_SLM_TCP_PROXY=y
# Use optional UDP/DTLS Proxy
#CONFIG_SLM_UDP_PROXY=y
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;In order to reduce the idle current UART1 has to be disabled, since this is turned on by default in Zephyr. The easiest way to do this is to add an overlay file:&lt;/p&gt;
&lt;p&gt;Add the following to a file called&lt;strong&gt; thingy91_nrf9160ns.overlay&lt;/strong&gt; (or &lt;strong&gt;thingy91_nrf9160.overlay&lt;/strong&gt; if you are not building for non-secure) and save the file in the project root folder:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;uart1 {
    status = &amp;quot;disabled&amp;quot;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;You might have to delete the build folder for the new file to be found.&lt;/p&gt;
&lt;p&gt;Then, build for board thingy91_nrf9160ns (or thingy91_nrf9160), and flash the FW.&lt;/p&gt;
&lt;p&gt;Remember that the&lt;a href="http://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/applications/connectivity_bridge/README.html"&gt; connectivity FW&lt;/a&gt; has to be flashed on the nRF52 in order to see the UART output over the USB connection.&lt;/p&gt;
&lt;p&gt;Push the button and you should see the terminal print &amp;quot;ready&amp;quot;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/286571?ContentTypeID=1</link><pubDate>Thu, 24 Dec 2020 17:06:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e597cabb-ae60-4535-a584-570f284c576e</guid><dc:creator>SilasV</dc:creator><description>&lt;p&gt;I have similar issue, (&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/69779/nrf9160-running-serial-lte-modem-with-external-mcu---how-to-control-sleep-and-active-modes"&gt;posted here&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;After sending either&amp;nbsp;&lt;span&gt;AT&lt;/span&gt;&lt;span&gt;#XSLEEP=0 or&amp;nbsp;AT#XSLEEP=1, cannot wake up nRF9160 by sending any AT command.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The currents in both sleep or idle mode is lower than 10uA. I cannot measure the exact current, I am getting the Nordic Power Profiler soon which would help me measure currents for series of AT commands.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Really interested in wake up over serial comm, since I plan to use the nRF9160 just as SLM with external MCU.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;requesting your help&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/285133?ContentTypeID=1</link><pubDate>Tue, 15 Dec 2020 14:55:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:09d35497-97d7-4a49-b6e7-602d99ea3383</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Michael,&lt;/p&gt;
&lt;p&gt;I am seeing the same as you are. The device stops responding after AT#XSLEEP=0. I have not yet measured the current.&lt;/p&gt;
&lt;p&gt;I will be investigate a few things tomorrow.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/284640?ContentTypeID=1</link><pubDate>Sun, 13 Dec 2020 01:07:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9474e892-6600-4c97-aae7-f0e58c47a9b1</guid><dc:creator>Michal M&amp;#252;hlpachr</dc:creator><description>&lt;p&gt;Are you able to wake-up nRF9160 after&amp;nbsp;&lt;span&gt;AT&lt;/span&gt;&lt;span&gt;#XSLEEP=0 or&amp;nbsp;AT#XSLEEP=1 please ?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/284276?ContentTypeID=1</link><pubDate>Thu, 10 Dec 2020 10:17:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:95daf0e1-43a5-4508-b314-203161f5783b</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Thank you for the clarification, I will measure the same way.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/283680?ContentTypeID=1</link><pubDate>Tue, 08 Dec 2020 00:41:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:86d8c88e-ede3-4b98-87ef-80210eabc813</guid><dc:creator>Michal M&amp;#252;hlpachr</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;current and voltage is measured by&amp;nbsp;&lt;a href="https://www.joulescope.com/"&gt;https://www.joulescope.com/&lt;/a&gt;&amp;nbsp;on P1, I am interested in nRF9160 current consumption only. We are considering use for&amp;nbsp;&lt;a href="https://www.hardwario.com/chester/"&gt;www.hardwario.com/.../&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/1040x240/__key/communityserver-discussions-components-files/4/thingy91_5F00_js.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/1024x0/__key/communityserver-discussions-components-files/4/6131.psm.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/283665?ContentTypeID=1</link><pubDate>Mon, 07 Dec 2020 20:27:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bdb8776c-2edf-4334-bb67-f5df991033c7</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Michal,&lt;/p&gt;
&lt;p&gt;I will build this myself tomorrow. By the way, how do you measure the current? Do are you interested i the current for the whole board, or the nRF9160 only?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91 Serial LTE modem PSM</title><link>https://devzone.nordicsemi.com/thread/283514?ContentTypeID=1</link><pubDate>Mon, 07 Dec 2020 11:24:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:34f39820-2baf-41cb-b7f7-8917376d44ee</guid><dc:creator>Michal M&amp;#252;hlpachr</dc:creator><description>&lt;p&gt;typo: A&lt;span&gt;fter&amp;nbsp;&lt;/span&gt;&lt;span&gt;AT&lt;/span&gt;&lt;span&gt;#XSLEEP=0 or&amp;nbsp;AT#XSLEEP=1 ...&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>