<?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>nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126729/nrf9151-low-power-mode</link><description>I am using the nRF9151 DK, using the Serial LTE Modem firmware from the nRF Connect quick start. 
 I am planning to use nRF9151 as a serial modem, and connect it to my Host MCU using UART. 
 I am using the Power Profile II to measure the current of VDD_nRF</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 19 Mar 2026 05:48:35 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126729/nrf9151-low-power-mode" /><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/563632?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 05:48:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:97a35c10-9992-4d5a-ad7b-cc9ad67d02ea</guid><dc:creator>Achim Kraus</dc:creator><description>[quote userid="147296" url="~/f/nordic-q-a/126729/nrf9151-low-power-mode/563583"]Also, is it possible to disable UART power-down using &amp;#39;&lt;code&gt;overlay-disable-dtr.overlay&lt;/code&gt;&amp;#39;?[/quote]
&lt;p&gt;As I wrote, in my experience, that 500&amp;micro;A is mainly caused by an active UART rx (UART requires to sample the rx pin). Therefore it&amp;#39;s required to signal, when the rx should be active, and when not.&lt;/p&gt;
&lt;p&gt;In my case, I implemented that on/off signaling based on the level of the rx pin. This support mainly the logic, that if a device is not connected via USB or BLE, the UART is disable. Once it is connected, the UART is switched on. For that I enabled the &amp;quot;pull-down&amp;quot; on rx and if the level is low for longer, I disable the UART. If it get&amp;#39;s high again (device plugged in via USB or BLE) I enable the UART.&lt;/p&gt;
&lt;p&gt;I guess in your case, that won&amp;#39;t help too much, though the other device is more or less permanent connected. if you have a chance to control the tx of the other device, you may also go for the rx. But it&amp;#39;s not too easy to implement. See&amp;nbsp;&lt;a href="https://github.com/boaks/zephyr-coaps-client/blob/main/src/uart_manager.c"&gt;my uart-manager&lt;/a&gt;&amp;nbsp;to have an impression.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/563583?ContentTypeID=1</link><pubDate>Wed, 18 Mar 2026 14:22:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44e3bae8-ed55-4a5d-a4bf-6320584267fb</guid><dc:creator>dpio</dc:creator><description>&lt;p&gt;Hi Achim,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="5203" url="~/f/nordic-q-a/126729/nrf9151-low-power-mode/560056"] There are also some implementations, which using the RX for that, but it depends on your requirements.[/quote]
&lt;p&gt;How can I proceed with that implementation on the nRF9151 SIP (using the Serial Modem application)? At the moment, I don&amp;rsquo;t have a Host GPIO mapped as DTR to wake up the UART and modem.&lt;/p&gt;
&lt;p&gt;Also, is it possible to disable UART power-down using &amp;#39;&lt;code&gt;overlay-disable-dtr.overlay&lt;/code&gt;&amp;#39;? I would like to configure something like:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;dtr_uart2 {

    status = &amp;quot;disabled&amp;quot;;

}&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560230?ContentTypeID=1</link><pubDate>Tue, 03 Feb 2026 13:10:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6ca7317f-de7b-42f5-b9ff-ac2a7d34d959</guid><dc:creator>Simon D-M</dc:creator><description>&lt;p&gt;Hi Alex,&lt;/p&gt;
[quote user="Alex Looi"] will be trying &amp;#39;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;#39;, and I understand I need to follow the pin definition&amp;nbsp;documented&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html#serial_modem_application_nrf9151"&gt;here&lt;/a&gt;. I will be connecting these pins to external MCU. If I disable nRF9151 by pulling the ENABLE pin low, will the external MCU connections to nRF9151 pins (UART and GPIOs) damage the chip? What is the state of the nRF9151 pins (UART and GPIOs) when the chip is disabled?&lt;/span&gt;[/quote]
&lt;p&gt;If you have the VDD_GPIO grounded, I don&amp;#39;t think it will damage the chip, but it will very likely cause current leakage (we don&amp;#39;t have any measurement to give about the leakage that will appear). But basically, I would highly recommend that you &lt;strong&gt;stop all signal going in the chip when the chip is disabled&lt;/strong&gt;.&lt;/p&gt;
[quote user="Alex Looi"]I am an electrical engineer so code reading will be a bit challenging for me. For &amp;quot;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;#39;, If you can point to me, from the source code zip file &amp;#39;ncs-serial-modem-0.3.0.zip&amp;#39;, which file describes the pin assignment and function of the GPIOs, that will be very helpful.[/quote]
&lt;p&gt;In Zephyr, most of the hardware configuration / pin attribution is done in files called &amp;quot;devicetree&amp;quot;. &lt;a href="https://academy.nordicsemi.com/courses/nrf-connect-sdk-fundamentals/lessons/lesson-2-reading-buttons-and-controlling-leds/topic/devicetree/?version=v3.2.0-v3.0.0"&gt;Here&lt;/a&gt; is the lesson from our DevAcademy that explain what a devicetree is. The modified / custom pins used in the project are &lt;a href="https://github.com/nrfconnect/ncs-serial-modem/blob/main/app/boards/nrf9151dk_nrf9151_ns.overlay"&gt;nrf9151dk_nrf9151_ns.overlay&lt;/a&gt; for the basic build and&amp;nbsp;&lt;a href="https://github.com/nrfconnect/ncs-serial-modem/blob/main/app/overlay-external-mcu.overlay"&gt;overlay-external-mcu.overlay&lt;/a&gt;&amp;nbsp;if you use the &amp;quot;external-mcu&amp;quot; build. All the other pin configuration are left as default.&lt;/p&gt;
[quote user="Alex Looi"]&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/chapters/pmu/doc/operationmodes/system_disabled.html"&gt;System Disabled mode&lt;/a&gt;&amp;nbsp;states that &amp;#39;&lt;span&gt;VDD_GPIO input must be driven low when device is disabled, failing to do so could result in increased leakage.&amp;#39; If due to design limitation, VDD_GPIO needs to be present when device is disabled, will it damage the device beside having a higher leakage? What is the leakage that I will be expecting? 10uA? 1mA?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/recommended_op_conditions.html"&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;[/quote]
&lt;p&gt;It won&amp;#39;t damage the chip if you leave VDD_GPIO as is when the chip is disabled. We don&amp;#39;t have any measurement on that metric, but if you care about your device being low-power, follow the recommendation.&lt;/p&gt;
[quote user="Alex Looi"]&lt;p&gt;&lt;span&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/recommended_op_conditions.html"&gt;Operating conditions&lt;/a&gt;&amp;nbsp;states that:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If VDD is supplied and VDD_GPIO is grounded, an extra current consumption can be generated on VDD&lt;/li&gt;
&lt;li&gt;If ENABLE is low, VDD_GPIO should also be low&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Does it mean that when ENABLE pin is low, VDD also has to be drive low as well?&lt;/p&gt;
&lt;p&gt;If this is the case? What will be the use of ENABLE pin since I need to pull VDD and VDD_GPIO low anyway? I hope I can use the ENABLE pin to control the power of nRF9151 without the need to remove VDD and VDD_GPIO, without damaging the chip, reduce its reliability, and not having high excessive leakage current. Is it possible?&lt;/p&gt;[/quote]
&lt;p&gt;No, these cases are mutually excusive. You can leave VDD high when ENABLE is low.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon D-M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560127?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 13:12:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:96d8fd7d-225a-4ced-b2ec-391abed1abd3</guid><dc:creator>Medical Device</dc:creator><description>&lt;p&gt;Hi Achim.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Maybe &amp;#39;certified&amp;#39; is not the right word. What I meant is, I want to just use a compiled version of the serial modem code that Nordic recommend its customers to use, even for final production. Assuming we can adapt to the GPIOs and UART pins defined in the code, it will save us the trouble of modifying and compiling the code ourselves.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560125?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 13:08:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:851847ed-c10e-4a16-9e77-d939f41b173a</guid><dc:creator>Medical Device</dc:creator><description>&lt;p&gt;Hi! Simon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I tried the chat bot. Didn&amp;#39;t return the answer I needed.&lt;/p&gt;
&lt;p&gt;I will be trying &amp;#39;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;#39;, and I understand I need to follow the pin definition&amp;nbsp;documented&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html#serial_modem_application_nrf9151"&gt;here&lt;/a&gt;. I will be connecting these pins to external MCU. If I disable nRF9151 by pulling the ENABLE pin low, will the external MCU connections to nRF9151 pins (UART and GPIOs) damage the chip? What is the state of the nRF9151 pins (UART and GPIOs) when the chip is disabled?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I am an electrical engineer so code reading will be a bit challenging for me. For &amp;quot;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;#39;, If you can point to me, from the source code zip file &amp;#39;ncs-serial-modem-0.3.0.zip&amp;#39;, which file describes the pin assignment and function of the GPIOs, that will be very helpful.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/chapters/pmu/doc/operationmodes/system_disabled.html"&gt;System Disabled mode&lt;/a&gt;&amp;nbsp;states that &amp;#39;&lt;span&gt;VDD_GPIO input must be driven low when device is disabled, failing to do so could result in increased leakage.&amp;#39; If due to design limitation, VDD_GPIO needs to be present when device is disabled, will it damage the device beside having a higher leakage? What is the leakage that I will be expecting? 10uA? 1mA?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/recommended_op_conditions.html"&gt;Operating conditions&lt;/a&gt;&amp;nbsp;states that:&lt;/span&gt;&lt;/p&gt;
&lt;ul class="ul"&gt;
&lt;li class="li"&gt;If VDD is supplied and VDD_GPIO is grounded, an extra current consumption can be generated on VDD&lt;/li&gt;
&lt;li class="li"&gt;If ENABLE is low, VDD_GPIO should also be low&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Does it mean that when ENABLE pin is low, VDD also has to be drive low as well?&lt;/p&gt;
&lt;p&gt;If this is the case? What will be the use of ENABLE pin since I need to pull VDD and VDD_GPIO low anyway? I hope I can use the ENABLE pin to control the power of nRF9151 without the need to remove VDD and VDD_GPIO, without damaging the chip, reduce its reliability, and not having high excessive leakage current. Is it possible?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560101?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 10:32:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:46b9c834-93f0-447d-877b-11fb72ddb3e1</guid><dc:creator>Simon D-M</dc:creator><description>&lt;p&gt;Hi Alex,&lt;/p&gt;
[quote user="Alex Looi"]How can I generate the box of the log like you did?[/quote]
&lt;p&gt;To do the quote box, just select the part that you what to quote and click on &amp;quot;Quote&amp;quot;. To do the code text box, click on &amp;quot;Insert&amp;quot; at the bottom of the text box and &amp;quot;&amp;lt;/&amp;gt; Code&amp;quot;.&lt;/p&gt;
[quote user="Alex Looi"]Did you generate this list from the DK? What is the application hex you used?[/quote]
&lt;p&gt;I&amp;#39;m not sure, I might have compiled it by myself. But it is based on the latest Serial Modem add-on. So should be the same as&amp;nbsp;&lt;a href="https://github.com/nrfconnect/ncs-serial-modem/releases/download/v0.3.0/serial_modem_v0.3.0_nrf9151dk_ppp_cmux.hex" rel="nofollow"&gt;serial_modem_v0.3.0_nrf9151dk_ppp_cmux.hex&lt;/a&gt;.&lt;/p&gt;
[quote user="Alex Looi"]By datasheet do you mean the DK schematic? There is no datasheet for the DK and I don&amp;#39;t think the hardware guide&amp;nbsp;show which pins are used.[/quote]
&lt;p&gt;Yes, sorry for the confusion.&lt;/p&gt;
[quote user="Alex Looi"]This link points to &amp;quot;mfw_nrf91x1_2.0.4&amp;quot; which is modem firmware ver 2.0.4.[/quote]
&lt;p&gt;You can choose which modem firmware version you want to download. (from mfw2.0.0 to mfw2.0.4).&lt;/p&gt;
[quote user="Alex Looi"]&lt;p&gt;&lt;span&gt;Alex: This link points to the update guide as well as a link to download firmware for the DK (&lt;/span&gt;&lt;a href="https://www.nordicsemi.com/Products/Development-hardware/nRF9151-DK/Download?lang=en#infotabs"&gt;nRF9151 DK Downloads&lt;/a&gt;) with an older ver 2.0.2. I assume I should ignore the firmware in this link correct?&lt;/p&gt;
&lt;p&gt;And the PTCRB cert indicates &amp;quot;&lt;span&gt;mfw_nrf91x1_2.0.2&amp;quot;. ver 2.04 is not certified by PTCRB yet. Shoudn&amp;#39;t I be using ver 2.0.2? Is ver 2.0.4 currently under approval process?&lt;/span&gt;&lt;/p&gt;[/quote]
&lt;p&gt;If you use the firmware in here, yes, you should use the mfw 2.0.2. Yes, if you need the PTCRB for now, you have to go with the mfw 2.0.2. I cannot communicate about what certification the mfw 2.0.4 will have. But even if you use everything pre-certified from our side. You will, most likely, still need to redo the PTCRB certification as said &lt;a href="https://collateral-library-production.s3.amazonaws.com/uploads/asset_file/attachment/59886/PCTRB_Infosheet.pdf"&gt;here&lt;/a&gt; :&lt;/p&gt;
&lt;p&gt;&amp;quot;&lt;em&gt;When a module is integrated into an end product, the module’s RF performance may change, which impacts the end device’s performance. Therefore, even devices that already use a PTCRB-certified module still&amp;nbsp;need their own PTCRB certification.&amp;quot;&lt;/em&gt;&lt;/p&gt;
[quote user="Alex Looi"]Also, the AT Command file &amp;quot;nrf91x1_cellular_at_commands_v1.4&amp;quot; indicates only update to modem firmware ver 2.0.3. Are the AT commands still applicable for ver 2.0.4?[/quote]
&lt;p&gt;It is written in the changelog of each modem firmware, which AT command version the modem firmware is aligned with. (&lt;a href="https://www.nordicsemi.com/Products/nRF9151/Download?lang=en#infotabs"&gt;link&lt;/a&gt;).&lt;/p&gt;
[quote user="Alex Looi"]Also, I want to revisit the Application MCU firmware of the nRF9151DF again. In nRF Connect for Desktop, I ran quick start, under &amp;quot;select an application to run&amp;quot;, I choose &amp;quot;AT commands&amp;quot;. What exactly is the MCU firmware used? I read somewhere there AT command mode is not Serial Modem Mode? AT command mode is sending AT command directly to the Modem Firmware (AT command pass thru mode), and AT# commands are not supported? While Serial Modem mode, the AT commands are sent to the MCU firmware, which can interpret AT# commands. Is this correct? This is quick confusing. Is there anywhere that describe the different behavior and maybe dataflow or block diagram between PC/external MCU, nRF9151 MCU firmware, and nRF9151 modem?[/quote]
&lt;p&gt;The firmware in the Quick start Application is the Serial LTE Modem, not the AT client.&lt;/p&gt;
&lt;p&gt;(&lt;em&gt;What I&amp;#39;m going to tell you is not 100% accurate, but it is a good way to visualize what is happening.&lt;/em&gt;) Basically, you can imagine that all the UART message (AT commands received) are first going through the Application core and if nothing has been done with it, it is transmitted to the Modem core. And the difference between the AT client sample and the Serial modem application is that in the AT client sample, there is almost no logic inside the application core. But for the Serial Modem application, there is some logic inside to support some custom AT commands.&lt;/p&gt;
&lt;p&gt;Here is the &lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/blockdiagram.html"&gt;block diagram for the nRF9151&lt;/a&gt;&amp;nbsp;if you want to see how it really is inside the chip.&lt;/p&gt;
[quote user="Alex Looi"]So again, I just to talk to nRF9151 as a whole, using AT commands. Which mode should I use for my final product without the need to modify the nRF9151 firmware, be it the MCU app firmware or the modem firmware. Should it be the AT command &amp;quot;pass thru&amp;quot; firmware or the Serial Modem firmware?[/quote]
&lt;p&gt;Honestly, you should really consider modifying, even a tiny bit, the firmware you&amp;#39;ll be using. Either way, I would recommend using the Serial modem application, as it has more capabilities and has power management integrated and both of them are &amp;quot;pass-thru&amp;quot;.&lt;/p&gt;
[quote user="Alex Looi"]Also, I assume that firmware for EXT MCU can also be used on the DK using the Debug IC (i.e connecting the DK to PC using the USB cable and sending commands through the PC serial terminal)?[/quote]
&lt;p&gt;I don&amp;#39;t think so, you have to use the UART specified in the external MCU overlay file (also documented &lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html#serial_modem_application_nrf9151"&gt;here&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;&lt;em&gt;As a side note, I would really recommend you to try asking question to our AI chatbot (blue circle, bottom right) as it would have been able to answer a lot of you questions. It has been trained specifically on our documentation, so it works quite well for these type of questions.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon D-M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560056?ContentTypeID=1</link><pubDate>Sat, 31 Jan 2026 14:51:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5eb8daed-8dad-49ef-a723-c8fa4a010573</guid><dc:creator>Achim Kraus</dc:creator><description>[quote userid="150377" url="~/f/nordic-q-a/126729/nrf9151-low-power-mode"]average current is about 500uA[/quote]
&lt;p&gt;&lt;br /&gt;This is usually caused by the UART receiver. To reduce it down to 3-6&amp;micro;A you need to suspend the UART and wake it up, when you need it again. That wake up is the frequently done/implemented by some GPIO. There are also some implementations, which using the RX for that, but it depends on your requirements.&amp;nbsp; &amp;nbsp;&lt;/p&gt;
[quote userid="150377" url="~/f/nordic-q-a/126729/nrf9151-low-power-mode/559716"]I will just program whatever production-certified modem firmware and application firmware without any recompilation, [/quote]
&lt;p&gt;The term &amp;quot;certified&amp;quot; may mean a lot of different things. Let me recommend, that you first clarify, what it should mean. Otherwise you will risk a very big disappointment in the end ;-).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560053?ContentTypeID=1</link><pubDate>Sat, 31 Jan 2026 04:25:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:304d8d6f-6847-4ec7-8c74-1249cdbb5dee</guid><dc:creator>Medical Device</dc:creator><description>&lt;p&gt;Hi SImon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks again for your replies. How can I generate the box of the log like you did?&lt;/p&gt;
&lt;p&gt;Some follow up and additional clarifications.&lt;/p&gt;
&lt;p&gt;Some how after I tried to program the&amp;nbsp;&lt;span&gt;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;quot; firmware and then back to the nRF Connect AT command firmware, it works. Anyway I see some difference in the log.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;gt; AT#XCLAC&lt;/p&gt;
&lt;p&gt;AT#XACCEPT&lt;br /&gt;AT#XBIND&lt;br /&gt;AT#XCLAC&lt;br /&gt;AT#XCONNECT&lt;br /&gt;AT#XDATACTRL&lt;br /&gt;AT#XFOTA&lt;br /&gt;AT#XFTP&lt;br /&gt;AT#XGETADDRINFO&lt;br /&gt;AT#XGPIO&lt;br /&gt;AT#XGPIOCFG&lt;br /&gt;AT#XGPS&lt;br /&gt;AT#XGPSDEL&lt;br /&gt;AT#XHTTPCCON&lt;br /&gt;AT#XHTTPCREQ&lt;br /&gt;AT#XLISTEN&lt;br /&gt;AT#XMODEMRESET&lt;br /&gt;AT#XMQTTCFG&lt;br /&gt;AT#XMQTTCON&lt;br /&gt;AT#XMQTTPUB&lt;br /&gt;AT#XMQTTSUB&lt;br /&gt;AT#XMQTTUNSUB&lt;br /&gt;AT#XNRFCLOUD&lt;br /&gt;AT#XNRFCLOUDPOS&lt;br /&gt;AT#XPING&lt;br /&gt;AT#XPOLL&lt;br /&gt;AT#XRECV&lt;br /&gt;AT#XRECVFROM&lt;br /&gt;AT#XRESET&lt;br /&gt;AT#XSEND&lt;br /&gt;AT#XSENDTO&lt;br /&gt;AT#XSHUTDOWN&lt;br /&gt;AT#XSLEEP&lt;br /&gt;AT#XSLMVER&lt;br /&gt;AT#XSMS&lt;br /&gt;AT#XSOCKET&lt;br /&gt;AT#XSOCKETOPT&lt;br /&gt;AT#XSOCKETSELECT&lt;br /&gt;AT#XSSOCKET&lt;br /&gt;AT#XSSOCKETOPT&lt;br /&gt;AT#XTCPCLI&lt;br /&gt;AT#XTCPHANGUP&lt;br /&gt;AT#XTCPSEND&lt;br /&gt;AT#XTCPSVR&lt;br /&gt;AT#XTFTP&lt;br /&gt;AT#XUDPCLI&lt;br /&gt;AT#XUDPSEND&lt;br /&gt;AT#XUDPSVR&lt;br /&gt;AT#XUUID&lt;/p&gt;
&lt;p&gt;OK&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Did you generate this list from the DK? What is the application hex you used?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#39;You are correct again... The pins in the documentation are wrong!&amp;nbsp;&lt;strong&gt;The right ones are the ones you see on the datasheet (UART1)&lt;/strong&gt;. However, only the documentation is wrong. The firmware is configured to use the right pins.&amp;#39;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Alex: By datasheet do you mean the DK schematic? There is no datasheet for the DK and I don&amp;#39;t think the hardware guide&amp;nbsp;show which pins are used.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#39;You can also download the modem firmware on&amp;nbsp;&lt;a href="https://www.nordicsemi.com/Products/nRF9151/Download?lang=en#infotabs"&gt;the nRF9151 product page, in the &amp;quot;Download&amp;quot; section&lt;/a&gt;.&amp;#39;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Alex: This link points to &amp;quot;mfw_nrf91x1_2.0.4&amp;quot; which is modem firmware ver 2.0.4.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#39;If you want to update the modem core, you can follow&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/nrf-connect-programmer/page/programming_91dk.html#nrf91x1-dk"&gt;this guide&lt;/a&gt;.&amp;#39;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Alex: This link points to the update guide as well as a link to download firmware for the DK (&lt;/span&gt;&lt;a href="https://www.nordicsemi.com/Products/Development-hardware/nRF9151-DK/Download?lang=en#infotabs"&gt;nRF9151 DK Downloads&lt;/a&gt;) with an older ver 2.0.2. I assume I should ignore the firmware in this link correct?&lt;/p&gt;
&lt;p&gt;And the PTCRB cert indicates &amp;quot;&lt;span&gt;mfw_nrf91x1_2.0.2&amp;quot;. ver 2.04 is not certified by PTCRB yet. Shoudn&amp;#39;t I be using ver 2.0.2? Is ver 2.0.4 currently under approval process?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Also, the AT Command file &amp;quot;nrf91x1_cellular_at_commands_v1.4&amp;quot; indicates only update to modem firmware ver 2.0.3. Are the AT commands still applicable for ver 2.0.4?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Also, I want to revisit the Application MCU firmware of the nRF9151DF again. In nRF Connect for Desktop, I ran quick start, under &amp;quot;select an application to run&amp;quot;, I choose &amp;quot;AT commands&amp;quot;. What exactly is the MCU firmware used? I read somewhere there AT command mode is not Serial Modem Mode? AT command mode is sending AT command directly to the Modem Firmware (AT command pass thru mode), and AT# commands are not supported? While Serial Modem mode, the AT commands are sent to the MCU firmware, which can interpret AT# commands. Is this correct? This is quick confusing. Is there anywhere that describe the different behavior and maybe dataflow or block diagram between PC/external MCU, nRF9151 MCU firmware, and nRF9151 modem?&lt;/p&gt;
&lt;p&gt;So again, I just to talk to nRF9151 as a whole, using AT commands. Which mode should I use for my final product without the need to modify the nRF9151 firmware, be it the MCU app firmware or the modem firmware. Should it be the AT command &amp;quot;pass thru&amp;quot; firmware or the Serial Modem firmware?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;By the way, I programmed &amp;quot;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;quot; into the DK using &amp;#39;erase and write&amp;#39;, I encountered error&lt;span&gt;. I retried again and it was successful. See below log:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;2026-01-31T03:44:48.427Z INFO Recovering Application core&lt;br /&gt;2026-01-31T03:44:48.428Z INFO Recovering Application core 0%&lt;br /&gt;2026-01-31T03:44:48.499Z INFO Recovering Application core 50%&lt;br /&gt;2026-01-31T03:44:48.499Z INFO Recovering Application core 50%&lt;br /&gt;2026-01-31T03:44:49.736Z INFO Recovering Application core 100%&lt;br /&gt;2026-01-31T03:44:49.736Z INFO Recovering Application core completed&lt;br /&gt;2026-01-31T03:44:49.736Z INFO Loading core information for Application core&lt;br /&gt;2026-01-31T03:44:49.738Z INFO Update files regions according to Application core&lt;br /&gt;2026-01-31T03:44:49.738Z INFO Parse memory regions for file&lt;br /&gt;2026-01-31T03:44:49.740Z INFO Loading core information for Application core 0%&lt;br /&gt;2026-01-31T03:44:49.740Z INFO Loading core information for Application core 100%&lt;br /&gt;2026-01-31T03:44:49.741Z INFO Loading core information for Application core completed&lt;br /&gt;2026-01-31T03:44:49.742Z INFO Update files regions according to Application core&lt;br /&gt;2026-01-31T03:44:49.742Z INFO Parse memory regions for file&lt;br /&gt;2026-01-31T03:44:50.263Z INFO Writing HEX to Application core&lt;br /&gt;2026-01-31T03:44:50.264Z INFO Writing HEX to Application core 0%&lt;br /&gt;2026-01-31T03:44:50.364Z INFO Writing HEX to Application core 33%&lt;br /&gt;2026-01-31T03:44:50.485Z INFO Writing HEX to Application core 33%&lt;br /&gt;2026-01-31T03:44:50.797Z INFO Writing HEX to Application core 67%&lt;br /&gt;2026-01-31T03:44:50.797Z INFO Writing HEX to Application core 67%&lt;br /&gt;2026-01-31T03:44:52.886Z ERROR Failed &amp;quot;writing hex to application core&amp;quot;. Error: code: 1, description: Generic, message: Batch task program failed, Device error: NVMC Failed to write to NVMC.CONFIGNS: failed: Failed to read from memory address 0x50003100: Failed to write DebugPort register 0x08: Unknown error in the J-Link DLL (error code =-1797082992)&lt;br /&gt;2026-01-31T03:45:36.199Z INFO Recovering Application core&lt;br /&gt;2026-01-31T03:45:36.200Z INFO Recovering Application core 0%&lt;br /&gt;2026-01-31T03:45:36.264Z INFO Recovering Application core 50%&lt;br /&gt;2026-01-31T03:45:36.264Z INFO Recovering Application core 50%&lt;br /&gt;2026-01-31T03:45:37.487Z INFO Recovering Application core 100%&lt;br /&gt;2026-01-31T03:45:37.488Z INFO Recovering Application core completed&lt;br /&gt;2026-01-31T03:45:37.488Z INFO Loading core information for Application core&lt;br /&gt;2026-01-31T03:45:37.488Z INFO Loading core information for Application core 0%&lt;br /&gt;2026-01-31T03:45:37.489Z INFO Update files regions according to Application core&lt;br /&gt;2026-01-31T03:45:37.489Z INFO Parse memory regions for file&lt;br /&gt;2026-01-31T03:45:37.491Z INFO Loading core information for Application core 100%&lt;br /&gt;2026-01-31T03:45:37.491Z INFO Loading core information for Application core completed&lt;br /&gt;2026-01-31T03:45:37.492Z INFO Update files regions according to Application core&lt;br /&gt;2026-01-31T03:45:37.492Z INFO Parse memory regions for file&lt;br /&gt;2026-01-31T03:45:37.900Z INFO Writing HEX to Application core&lt;br /&gt;2026-01-31T03:45:37.900Z INFO Writing HEX to Application core 0%&lt;br /&gt;2026-01-31T03:45:37.965Z INFO Writing HEX to Application core 33%&lt;br /&gt;2026-01-31T03:45:38.033Z INFO Writing HEX to Application core 33%&lt;br /&gt;2026-01-31T03:45:38.322Z INFO Writing HEX to Application core 67%&lt;br /&gt;2026-01-31T03:45:38.322Z INFO Writing HEX to Application core 67%&lt;br /&gt;2026-01-31T03:45:40.333Z INFO Writing HEX to Application core 83%&lt;br /&gt;2026-01-31T03:45:40.333Z INFO Writing HEX to Application core 100%&lt;br /&gt;2026-01-31T03:45:40.338Z INFO Writing HEX to Application core completed&lt;br /&gt;2026-01-31T03:45:41.006Z INFO Reading readback protection status for Application core&lt;br /&gt;2026-01-31T03:45:41.007Z INFO Reading readback protection status for Application core 0%&lt;br /&gt;2026-01-31T03:45:41.072Z INFO Reading readback protection status for Application core 50%&lt;br /&gt;2026-01-31T03:45:41.073Z INFO Reading readback protection status for Application core 50%&lt;br /&gt;2026-01-31T03:45:41.074Z INFO Reading readback protection status for Application core 100%&lt;br /&gt;2026-01-31T03:45:41.074Z INFO Application core protection status &amp;#39;NRFDL_PROTECTION_STATUS_NONE&amp;#39;&lt;br /&gt;2026-01-31T03:45:41.075Z INFO Reading readback protection status for Application core completed&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;&lt;strong&gt;I reset the DK, there were no initial messages which I were there when I use the AT command settings from the nRF Connect, and sending &amp;quot;AT&amp;quot;, there is no response.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/1460.image1.png" /&gt;&lt;/p&gt;
&lt;p&gt;I use the nRF Connect to download the AT commands firmware and it works again. So it seems like the UART pin definition on the schematic is not the same as the &amp;quot;&lt;span&gt;serial_modem_v0.3.0_nrf9151dk_ext_mcu.hex&amp;quot; firmware?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Also, I assume that firmware for EXT MCU can also be used on the DK using the Debug IC (i.e connecting the DK to PC using the USB cable and sending commands through the PC serial terminal)?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/560031?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 15:06:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe480b2d-da8c-420d-959c-253c2ff4c323</guid><dc:creator>Simon D-M</dc:creator><description>&lt;p&gt;Hi Alex,&lt;/p&gt;
[quote user="Alex Looi"]The UART pin configuration shown in the link is different from the schematic of the DK. Can it still work?[/quote]
&lt;p&gt;You are correct again... The pins in the documentation are wrong! &lt;strong&gt;The right ones are the ones you see on the datasheet (UART1)&lt;/strong&gt;. However, only the documentation is wrong. The firmware is configured to use the right pins.&lt;/p&gt;
&lt;p&gt;Honestly, it is a bit strange that we didn&amp;#39;t catch that earlier. Sorry for the wrong documentation.&lt;/p&gt;
[quote user="Alex Looi"]I did went through lesson 2. It did not mention anything related to AT# commands. I know where to find these commands on the Nordic website but some AT# commands is able to run (eg AT#XCLAC), some can&amp;#39;t (eg AT#XSLEEP), and can only be recognized before enabling the radio (&lt;span&gt;AT#XCLAC&lt;/span&gt;). Once radio is enabled with AT+FUNC=1, this &lt;span&gt;AT#XCLAC command cannot be recognized anymore&lt;/span&gt;. I can&amp;#39;t find any documentation on this.[/quote]
&lt;p&gt;The AT commands with # are custom AT command that are interpreted by the application. They are implemented by the Serial Modem Add-on. You cannot use them in any other firmware.&lt;/p&gt;
&lt;p&gt;For the AT#XCALC, I was able to use it fine... Can you please share some logs? Here are my logs:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;Ready
&amp;gt; AT+CFUN?

+CFUN: 0

OK
&amp;gt; AT#XCLAC

ATE0
ATE1
AT#XAPOLL
AT#XBIND
AT#XCLAC
AT#XCLOSE
AT#XCONNECT
AT#XDATACTRL
AT#XDFUAPPLY
AT#XDFUINIT
AT#XDFUWRITE
AT#XFOTA
AT#XGETADDRINFO
AT#XGNSS
AT#XGNSSDEL
AT#XMODEMRESET
AT#XMQTTCFG
AT#XMQTTCON
AT#XMQTTPUB
AT#XMQTTSUB
AT#XMQTTUNSUB
AT#XNRFCLOUD
AT#XNRFCLOUDPOS
AT#XPING
AT#XRECV
AT#XRECVCFG
AT#XRECVFROM
AT#XRESET
AT#XSEND
AT#XSENDTO
AT#XSHUTDOWN
AT#XSLEEP
AT#XSMS
AT#XSMVER
AT#XSOCKET
AT#XSOCKETOPT
AT#XSSOCKET
AT#XSSOCKETOPT
AT#XUUID

OK
&amp;gt; AT+CFUN=1

OK
&amp;gt; AT#XCLAC

ATE0
ATE1
AT#XAPOLL
AT#XBIND
AT#XCLAC
AT#XCLOSE
AT#XCONNECT
AT#XDATACTRL
AT#XDFUAPPLY
AT#XDFUINIT
AT#XDFUWRITE
AT#XFOTA
AT#XGETADDRINFO
AT#XGNSS
AT#XGNSSDEL
AT#XMODEMRESET
AT#XMQTTCFG
AT#XMQTTCON
AT#XMQTTPUB
AT#XMQTTSUB
AT#XMQTTUNSUB
AT#XNRFCLOUD
AT#XNRFCLOUDPOS
AT#XPING
AT#XRECV
AT#XRECVCFG
AT#XRECVFROM
AT#XRESET
AT#XSEND
AT#XSENDTO
AT#XSHUTDOWN
AT#XSLEEP
AT#XSMS
AT#XSMVER
AT#XSOCKET
AT#XSOCKETOPT
AT#XSSOCKET
AT#XSSOCKETOPT
AT#XUUID

OK
&amp;gt; AT+CFUN=0

OK
&amp;gt; AT#XCLAC

ATE0
ATE1
AT#XAPOLL
AT#XBIND
AT#XCLAC
AT#XCLOSE
AT#XCONNECT
AT#XDATACTRL
AT#XDFUAPPLY
AT#XDFUINIT
AT#XDFUWRITE
AT#XFOTA
AT#XGETADDRINFO
AT#XGNSS
AT#XGNSSDEL
AT#XMODEMRESET
AT#XMQTTCFG
AT#XMQTTCON
AT#XMQTTPUB
AT#XMQTTSUB
AT#XMQTTUNSUB
AT#XNRFCLOUD
AT#XNRFCLOUDPOS
AT#XPING
AT#XRECV
AT#XRECVCFG
AT#XRECVFROM
AT#XRESET
AT#XSEND
AT#XSENDTO
AT#XSHUTDOWN
AT#XSLEEP
AT#XSMS
AT#XSMVER
AT#XSOCKET
AT#XSOCKETOPT
AT#XSSOCKET
AT#XSSOCKETOPT
AT#XUUID

OK&lt;/pre&gt;&lt;/p&gt;
[quote user="Alex Looi"]Is there any way to access the enable pin? Can find any connection from the enable pin to any connectors. What does the red X in the DK schematic on the enable pin represent?[/quote]
&lt;p&gt;There is no good way to have access to the ENABLE pin in the nRF9151DK, unfortunately.&lt;/p&gt;
&lt;p&gt;The red X in the schematic is just a warning from Altium. (&lt;em&gt;As the ENABLE pin is set as an input pin, it detects that no output pin have been connected to it and make a warning.&lt;/em&gt;) It can be completely ignored in that scenario.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon D-M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/559982?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 09:46:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ec5d0caf-51dc-4dde-8db7-4f2e913bd42b</guid><dc:creator>Medical Device</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;&lt;em&gt;This .hex file was compiled for the nRF9151 DK.&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html#serial_modem_application_nrf9151"&gt;Here&lt;/a&gt;&lt;/em&gt;&lt;span&gt;&lt;em&gt;&amp;nbsp;is some more information about the UART configuration for the Serial modem add-on&lt;/em&gt;.&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The UART pin configuration shown in the link is different from the schematic of the DK. Can it still work?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I did went through lesson 2. It did not mention anything related to AT# commands. I know where to find these commands on the Nordic website but some AT# commands is able to run (eg AT#XCLAC), some can&amp;#39;t (eg AT#XSLEEP), and can only be recognized before enabling the radio (&lt;span data-olk-copy-source="MessageBody"&gt;AT#XCLAC&lt;/span&gt;). Once radio is enabled with AT+FUNC=1, this &lt;span data-olk-copy-source="MessageBody"&gt;AT#XCLAC command cannot be recognized anymore&lt;/span&gt;. I can&amp;#39;t find any documentation on this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#39;Oh, good catch! The documentation is wrong here, it has most likely been copied from the nRF9161 or the nRF9160, which both have the &amp;quot;ENABLE&amp;quot; pin on pin 101.&amp;nbsp;&lt;strong&gt;For the nRF9151,&amp;nbsp;It is indeed pin 10 on the chip that has to be used&lt;/strong&gt;.&amp;#39;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Is there any way to access the enable pin? Can find any connection from the enable pin to any connectors. What does the red X in the DK schematic on the enable pin represent?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Alex.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/559976?ContentTypeID=1</link><pubDate>Fri, 30 Jan 2026 08:47:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:96b0d781-5dac-4431-84da-9fd01ef14b52</guid><dc:creator>Simon D-M</dc:creator><description>&lt;p&gt;Hi Alex,&lt;/p&gt;
[quote user="Alex Looi"]Is this hex file the same one used in nRF Connect Desktop, Serial Modem? i.e. Is the one used in the quick start in nRF Connect Desktop, serial modem, compiled with &lt;span&gt;&amp;quot;overlay-external-mcu.overlay&amp;quot;?&lt;/span&gt;[/quote]
&lt;p&gt;No, the one flashed by the &amp;quot;Quick Start&amp;quot; application from nRF Connect for Desktop is not compiled with the overlay. It may also be a few versions older than the one on the GitHub.&lt;/p&gt;
[quote user="Alex Looi"]Is this hex file for the application MCU only? Or does it also includes the modem firmware/stack? Do I need a separate hex file, i.e. 1 for application MCU and another for modex?[/quote]
&lt;p&gt;In our nRF91 chips, we have 2 cores: The Application core, which contains the Serial Modem add-on in your case. And a modem core which contains the modem firmware. They are both programmable independently.&lt;/p&gt;
&lt;p&gt;The .hex you download are only for the application core. If you want to update the modem core, you can follow &lt;a href="https://docs.nordicsemi.com/bundle/nrf-connect-programmer/page/programming_91dk.html#nrf91x1-dk"&gt;this guide&lt;/a&gt;. You can also download the modem firmware on&amp;nbsp;&lt;a href="https://www.nordicsemi.com/Products/nRF9151/Download?lang=en#infotabs"&gt;the nRF9151 product page, in the &amp;quot;Download&amp;quot; section&lt;/a&gt;. &lt;em&gt;(if you download it from the product page, do not unzip the file before programming. You need to give the whole zip to the &amp;quot;programmer&amp;quot; app).&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;
[quote user="Alex Looi"]Can I use this hex file in the DK? Will it have any hardware conflict?[/quote]
&lt;p&gt;This .hex file was compiled for the nRF9151 DK. &lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html#serial_modem_application_nrf9151"&gt;Here&lt;/a&gt; is some more information about the UART configuration for the Serial modem add-on.&lt;/p&gt;
[quote user="Alex Looi"]Thanks for the reference to the guidelines. I believe this requires a bit of customization to set a particular GPIO pin as the wakeup pin. With the context of just using the standard serial modem hex file, is there currently a pin that is already configured for this purposes? Is it&amp;nbsp;DTR, P0.31 (active low, pull-up)?[/quote]
&lt;p&gt;I don&amp;#39;t think that by default, there are any wake-up pins configured. The DTR pin can wake the chip up when it is in low power mode, but cannot wake it up when it is in &amp;quot;System OFF&amp;quot; mode. For the DTR part, it is documented in &lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html#controlling_the_uart_power_state"&gt;here&lt;/a&gt;.&lt;/p&gt;
[quote user="Alex Looi"]I am a bit confused on all the different AT commands. I believe each of the type of commands are for different use scenarios or hosts. Considering the use case of external MCU sending commands to the nRF9151 as Serial Modem, what is the exact commands that the external MCU needs to send? Will it be something like&amp;nbsp;AT+CFUN? Or&amp;nbsp; AT%.... Or AT#.... Or just the command without AT, like&amp;nbsp;&lt;span&gt;ATE1?&lt;/span&gt;[/quote]
&lt;p&gt;I would recommend you taking our &amp;quot;&lt;a href="https://academy.nordicsemi.com/courses/cellular-iot-fundamentals/"&gt;Cellular IoT Fundamentals&lt;/a&gt;&amp;quot; course on &lt;a href="https://academy.nordicsemi.com/"&gt;DevAcademy&lt;/a&gt;. It explains most of what you are asking here in the &lt;a href="https://academy.nordicsemi.com/courses/cellular-iot-fundamentals/lessons/lesson-2-cellular-fundamentals/"&gt;Lesson 2&lt;/a&gt;.&lt;/p&gt;
[quote user="Alex Looi"]&lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_generic.html"&gt;https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_generic.html&lt;/a&gt;
&lt;ol&gt;
&lt;li&gt;For the commands listed in the above link, is it application to my use case? (i.e. standard serial modem using AT commands from external MCU).&lt;/li&gt;
&lt;li&gt;I tried sending commands like ATE1, ATE0 to the DK from the PC serial terminal but it didn&amp;#39;t wake. Does the debugger (U3 - nRF5340) interpret these commands?&lt;/li&gt;
&lt;li&gt;If I send these commands directly to nRF9151 instead of through the debugger, will it work? If not, how do I use these commands.&lt;/li&gt;
&lt;li&gt;Similar questions for AT commands starting with &amp;#39;#&amp;#39;. Does the debugger interpret these commands? Will it work if I send these command directly to nRF9151 instead of going through the debugger, will it work? And what are these &amp;#39;#&amp;#39; commands for and how are these command being used?&lt;/li&gt;&lt;/ol&gt;[/quote]
&lt;p&gt;When you connect to the Serial terminal, you can consider the debugger as a USB-UART converter. It does not look at what is being sent, it acts as a pass-through. So, when you&amp;#39;ll connect directly to the nRF9151 UART it will be the exact same.&lt;/p&gt;
&lt;p&gt;Most of your question about AT commands are explained in the DevAcademy course I recommended you earlier. Try to take the course, you should get a better understanding of how to use AT commands. If you still have question after that, feel free to ask them. Also, you can ask our AI assistant (&lt;em&gt;blue circle bottom left of your screen&lt;/em&gt;), It works very well for questions that we documented.&lt;/p&gt;
[quote user="Alex Looi"]&lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html"&gt;https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html&lt;/a&gt;. In this link, under &amp;#39;Serial Modem application (nRF9151)&amp;#39;, there are &amp;#39;USB UART with PC host&amp;#39; and &amp;#39;external MCU as host&amp;#39;.
&lt;ol&gt;
&lt;li&gt;Are these applicable for the Serial Modem application of the DK? From the DK schematic &amp;#39;PCA10171_Schematic_And_PCB&amp;#39;, the pin assignment does not match those defined in the above link.&lt;/li&gt;&lt;/ol&gt;[/quote]
&lt;p&gt;I&amp;#39;m not sure to follow you here, I believe they are matching...&lt;/p&gt;
[quote user="Alex Looi"]If I want to use the pins allocated for USB UART with PC Host in my final design, can it be done?[/quote]
&lt;p&gt;If you do your own board, yes, you can use these pins. But even if, from what I understood, you don&amp;#39;t really want to do any programming, I would still recommend you to make some modification to the application at least to map the pins like you want. And to build your own version of the application.&lt;/p&gt;
[quote user="Alex Looi"]This link says: &lt;em&gt;The nRF9151 System in Package (SiP) can be enabled by pulling pin 101 high or disabled by pulling pin 101 low. By default, the enable signal is pulled high by resistor R1.&lt;/em&gt;&amp;nbsp;Where is pin 101? The schematic of the DK shows it is connected to pin 10 of nRF9151.[/quote]
&lt;p&gt;Oh, good catch! The documentation is wrong here, it has most likely been copied from the nRF9161 or the nRF9160, which both have the &amp;quot;ENABLE&amp;quot; pin on pin 101. &lt;strong&gt;For the nRF9151,&amp;nbsp;It is indeed pin 10 on the chip that has to be used&lt;/strong&gt;.&lt;/p&gt;
[quote user="Alex Looi"]Also, the DK seems to be going into sleep/active mode by pressing Switch 1, and based on the schematic, switch 1 is connected to the DK connector P10 pin 1, so I guess 101 = P10.1? Assuming switch 1 is connected to the ENABLE pin of nRF9151, the behavior is not as per the datasheet. The nRF9151 datasheet mentioned this pin is level triggered, but on the DK, it seems to be edge triggered. I need to press and release switch 1 in order to toggle between active and sleep mode. So should it be a edge or level trigger pin to switch between Enable and Disable mode?[/quote]
&lt;p&gt;No, this is not the ENABLE pin. The button is connected to a normal GPIO. All the power management done with this pin is done and configured in the application firmware.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon D-M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/559846?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 03:03:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:118c000e-84f3-43c3-b64a-90b84ed6ff33</guid><dc:creator>Medical Device</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;Thanks for your reply.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#39;Yes it is possible, we have a version already compiled with the &amp;quot;overlay-external-mcu.overlay&amp;quot; on the&amp;nbsp;&lt;a href="https://github.com/nrfconnect/ncs-serial-modem/releases"&gt;Github page of the application&lt;/a&gt;.&amp;#39;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Great that there is an &amp;#39;off the shelf&amp;#39; hex file that we can use immediately without any coding and compilation required.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Is this hex file the same one used in nRF Connect Desktop, Serial Modem? i.e. Is the one used in the quick start in nRF Connect Desktop, serial modem, compiled with &lt;span&gt;&amp;quot;overlay-external-mcu.overlay&amp;quot;?&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Is this hex file for the application MCU only? Or does it also includes the modem firmware/stack? Do I need a separate hex file, i.e. 1 for application MCU and another for modex?&lt;/li&gt;
&lt;li&gt;Can I use this hex file in the DK? Will it have any hardware conflict?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;#39;I believe that every GPIO pins can trigger the wake-up action. There is more information about this in the&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/nwp_056/page/WP/nwp_054/intro.html"&gt;hardware design guidelines for the nRF9151.&lt;/a&gt;&amp;#39;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Thanks for the reference to the guidelines. I believe this requires a bit of customization to set a particular GPIO pin as the wakeup pin. With the context of just using the standard serial modem hex file, is there currently a pin that is already configured for this purposes? Is it&amp;nbsp;DTR, P0.31 (active low, pull-up)?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Additional questions:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I am a bit confused on all the different AT commands. I believe each of the type of commands are for different use scenarios or hosts. Considering the use case of external MCU sending commands to the nRF9151 as Serial Modem, what is the exact commands that the external MCU needs to send? Will it be something like&amp;nbsp;AT+CFUN? Or&amp;nbsp; AT%.... Or AT#.... Or just the command without AT, like&amp;nbsp;&lt;span&gt;ATE1?&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a id="" href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_generic.html"&gt;https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_generic.html&lt;/a&gt;
&lt;ol&gt;
&lt;li&gt;For the commands listed in the above link, is it application to my use case? (i.e. standard serial modem using AT commands from external MCU).&lt;/li&gt;
&lt;li&gt;I tried sending commands like ATE1, ATE0 to the DK from the PC serial terminal but it didn&amp;#39;t wake. Does the debugger (U3 - nRF5340) interpret these commands?&lt;/li&gt;
&lt;li&gt;If I send these commands directly to nRF9151 instead of through the debugger, will it work? If not, how do I use these commands.&lt;/li&gt;
&lt;li&gt;Similar questions for AT commands starting with &amp;#39;#&amp;#39;. Does the debugger interpret these commands? Will it work if I send these command directly to nRF9151 instead of going through the debugger, will it work? And what are these &amp;#39;#&amp;#39; commands for and how are these command being used?&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a id="" href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html"&gt;https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html&lt;/a&gt;. In this link, under &amp;#39;Serial Modem application (nRF9151)&amp;#39;, there are &amp;#39;USB UART with PC host&amp;#39; and &amp;#39;external MCU as host&amp;#39;.
&lt;ol&gt;
&lt;li&gt;Are these applicable for the Serial Modem application of the DK? From the DK schematic &amp;#39;PCA10171_Schematic_And_PCB&amp;#39;, the pin assignment does not match those defined in the above link.&lt;/li&gt;
&lt;li&gt;If I want to use the pins allocated for USB UART with PC Host in my final design, can it be done?&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a id="" href="https://docs.nordicsemi.com/bundle/ug_nrf9151_dk/page/UG/nrf91_DK/hw_description/sip_enable.html"&gt;https://docs.nordicsemi.com/bundle/ug_nrf9151_dk/page/UG/nrf91_DK/hw_description/sip_enable.html&lt;/a&gt;.
&lt;ol&gt;
&lt;li&gt;This link says: &lt;em&gt;The nRF9151 System in Package (SiP) can be enabled by pulling pin 101 high or disabled by pulling pin 101 low. By default, the enable signal is pulled high by resistor R1.&lt;/em&gt;&amp;nbsp;Where is pin 101? The schematic of the DK shows it is connected to pin 10 of nRF9151.&lt;/li&gt;
&lt;li&gt;Also, the DK seems to be going into sleep/active mode by pressing Switch 1, and based on the schematic, switch 1 is connected to the DK connector P10 pin 1, so I guess 101 = P10.1? Assuming switch 1 is connected to the ENABLE pin of nRF9151, the behavior is not as per the datasheet. The nRF9151 datasheet mentioned this pin is level triggered, but on the DK, it seems to be edge triggered. I need to press and release switch 1 in order to toggle between active and sleep mode. So should it be a edge or level trigger pin to switch between Enable and Disable mode?&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Alex.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/559798?ContentTypeID=1</link><pubDate>Wed, 28 Jan 2026 14:48:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d9db934-0afc-4fd9-aa63-d46eb14a35d7</guid><dc:creator>Simon D-M</dc:creator><description>&lt;p&gt;Hi Alex,&lt;/p&gt;
[quote user="Alex Looi"]I have a external host MCU that will communicate with nRF9151 using AT commands. I want to use nRF9151 as a Serial LTE Modem. Meaning I do not want to modify any of the firmware (application and modem). I will just program whatever production-certified modem firmware and application firmware without any recompilation, which means I won&amp;#39;t need to use overlay-external-mcu.overlay. Is this possible?[/quote]
&lt;p&gt;Yes it is possible, we have a version already compiled with the &amp;quot;overlay-external-mcu.overlay&amp;quot; on the &lt;a href="https://github.com/nrfconnect/ncs-serial-modem/releases"&gt;Github page of the application&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/2026_2D00_01_2D00_28_2D00_145457_5F00_hyprshot.png" alt=" " /&gt;&lt;/p&gt;
[quote user="Alex Looi"]I am able to get the modem to PSM but the current is not low enough as the application MCU is still operating. Based on my use case, I won&amp;#39;t be able to modify any nRF9151 internal registers directly, unless it is accessible through AT commands. Are there AT commands that set nRF9151 to deep sleep? I understand I can wake it up from deep sleep using some GPIOs. Which GPIOs have the wake up function besides the DTR pin and Enable pin?[/quote]
&lt;p&gt;All the AT commands usable with the Serial modem add-on are split between the &amp;quot;&lt;a href="https://docs.nordicsemi.com/bundle/ref_at_commands_nrf91x1/page/REF/at_commands/intro_nrf91x1.html"&gt;normal AT commands&lt;/a&gt;&amp;quot; and the &amp;quot;&lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_commands.html"&gt;custom AT commands&lt;/a&gt;&amp;quot;.&lt;/p&gt;
&lt;p&gt;The command to get into different power modes are &lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_generic.html#power-saving-xsleep"&gt;%XSLEEP&lt;/a&gt; and &lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/app/at_generic.html#power-off-xshutdown"&gt;%XSHUTDOWN&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I believe that every GPIO pins can trigger the wake-up action. There is more information about this in the &lt;a href="https://docs.nordicsemi.com/bundle/nwp_056/page/WP/nwp_054/intro.html"&gt;hardware design guidelines for the nRF9151. &lt;/a&gt;&lt;/p&gt;
[quote user="Alex Looi"]Also I need your advise on the power saving. If my device only transmit once a day, will setting the nRF9151 to deep sleep be more power efficiency, or disabling it using the ENABLE pin be better? I am not sure what is the overhead and the extra current required to initialize nRF9151 when I toggle the ENABLE pin to wake it up.[/quote]
&lt;p&gt;I believe that if your data sending frequency is only once a day, it might be better to disabling the chip using the ENABLE pin. However, it is very much a case to case scenario. You probably want to try and measure multiple solutions and compare them to see what is actually better.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon D-M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/559716?ContentTypeID=1</link><pubDate>Tue, 27 Jan 2026 16:30:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f4ff1f04-f798-410f-a01b-d6a984edf98e</guid><dc:creator>Medical Device</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;Thanks for your reply.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have a external host MCU that will communicate with nRF9151 using AT commands. I want to use nRF9151 as a Serial LTE Modem. Meaning I do not want to modify any of the firmware (application and modem). I will just program whatever production-certified modem firmware and application firmware without any recompilation, which means I won&amp;#39;t need to use overlay-external-mcu.overlay. Is this possible?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I am able to get the modem to PSM but the current is not low enough as the application MCU is still operating. Based on my use case, I won&amp;#39;t be able to modify any nRF9151 internal registers directly, unless it is accessible through AT commands. Are there AT commands that set nRF9151 to deep sleep? I understand I can wake it up from deep sleep using some GPIOs. Which GPIOs have the wake up function besides the DTR pin and Enable pin?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Also I need your advise on the power saving. If my device only transmit once a day, will setting the nRF9151 to deep sleep be more power efficiency, or disabling it using the ENABLE pin be better? I am not sure what is the overhead and the extra current required to initialize nRF9151 when I toggle the ENABLE pin to wake it up.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For the error, let me try to record the steps to reproduce it and post it here.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Alex.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 Low Power Mode.</title><link>https://devzone.nordicsemi.com/thread/559685?ContentTypeID=1</link><pubDate>Tue, 27 Jan 2026 13:27:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1e83a414-f375-4bb7-8e7a-2e13dd0289f5</guid><dc:creator>Simon D-M</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user=""]Is this the product code that I should be using for my final product?[/quote]
&lt;p&gt;I&amp;#39;m not sure to understand what you are asking here... If you are asking if the serial modem add-on (previously called &amp;quot;Serial LTE Modem (SLM)&amp;quot;) is the right firmware to flash on the nRF9151 if you want to use as a modem-only solution; &lt;strong&gt;yes&lt;/strong&gt; it is. However, if you want to use it with a host MCU, you probably want to use the devicetree overlay &amp;quot;&lt;code&gt;overlay-external-mcu.overlay&lt;/code&gt;&amp;quot; file.&lt;/p&gt;
[quote user=""]What does button 1 do exactly? Any documents that describe exactly what it does?[/quote]
&lt;p&gt;The button is connected to the UART DTR pin. All the documentation about the UART is &lt;a href="https://docs.nordicsemi.com/bundle/addon-serial_modem-latest/page/uart_configuration.html"&gt;here&lt;/a&gt;.&lt;/p&gt;
[quote user=""]What is the proper way to go into deep power save mode, assuming I am using this Serial LTE Modem firmware in my final product?[/quote]
&lt;p&gt;All our normal power saving techniques (&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/lte/psm.html"&gt;link&lt;/a&gt;) still applies for the Serial Modem add-on.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I don&amp;#39;t know how relevant it is but the nRF9151 is not only a modem, it has an application MCU. If the embedded MCU of the nRF9151 is enough for your needs you don&amp;#39;t need a host MCU which can help you save power.&lt;/em&gt;&lt;/p&gt;
[quote user=""]Is there a even lower power mode that the button 1 method? i.e. average current &amp;lt; 1uA maybe?[/quote]
&lt;p&gt;There are the &amp;quot;System OFF&amp;quot; and &amp;quot;System Disabled&amp;quot; mode, but it greatly depends on your application, as with &amp;quot;System OFF&amp;quot;, the core system functionality is powered down and ongoing tasks terminated, and only the&amp;nbsp;reset and the wake-up functions are available and responsive. And with&amp;nbsp;&amp;quot;System Disabled&amp;quot; the chip is basically fully shut down. You can find the documentation about these modes &lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf9151/page/chapters/pmu/doc/operationmodes/frontpage.html"&gt;here&lt;/a&gt;.&lt;/p&gt;
[quote user=""]There are some instances, when I leave the DK alone for maybe 10 mins, then I tried to send a AT command, the DK is not responsive in the sense it did not send back &amp;quot;OK&amp;quot; or network messages. However, my AT command was executed (based on the current profile of the Power Profiler II). Is this a know issue? Below image shows this error. In the image, bottom right, a few AT commands are sent but there were not response received.[/quote]
&lt;p&gt;This is not an issue that I know of. I wasn&amp;#39;t able to replicate it. Can you please document what you did a bit better so that I can try to replicate it?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon D-M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>