<?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 modem lock up, can&amp;#39;t reprogram</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/127158/nrf9151-modem-lock-up-can-t-reprogram</link><description>While working on debugging our application firmware using the nRF9151, we ran into issues that we hypothesized as being caused by an incorrect modem clock leading to validation issues with TLS certificates. As part of looking into this, we added some</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 19 Mar 2026 13:15:56 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/127158/nrf9151-modem-lock-up-can-t-reprogram" /><item><title>RE: nRF9151 modem lock up, can't reprogram</title><link>https://devzone.nordicsemi.com/thread/563683?ContentTypeID=1</link><pubDate>Thu, 19 Mar 2026 13:15:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:75c9a508-2386-45e0-8783-8fd377c0ca49</guid><dc:creator>Carl Richard</dc:creator><description>&lt;p&gt;Hi again!&lt;br /&gt;&lt;br /&gt;Have you had any progress on your issue? I&amp;#39;ve had a discussion with the developers on this and it was mentioned that this behaviour can be related to a HW-issue. Specifically a faulty clock source (TCXO for example). Could this be the case for you?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Carl Richard&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 modem lock up, can't reprogram</title><link>https://devzone.nordicsemi.com/thread/562225?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 14:08:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9553d098-54a9-45ed-afc9-db08cdca95b8</guid><dc:creator>Carl Richard</dc:creator><description>&lt;p&gt;Thanks.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve tried to reproduce the issue here using the https_client sample, without success. A couple of things you can try while we wait for a response from the developers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Recovering the DK &lt;a href="https://docs.nordicsemi.com/bundle/nrfutil/page/nrfutil-device/guides/programming_recovery.html"&gt;as described here&lt;/a&gt; to ensure that it&amp;#39;s not an issue with the application processor.&lt;/li&gt;
&lt;li&gt;After this, try to test the AT Client sample to see if you can communicate with the modem at all. You can also try programming the MFW again.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also: are you using a custom board or a nRF9151 DK? In the latter case, which version?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Carl Richard&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 modem lock up, can't reprogram</title><link>https://devzone.nordicsemi.com/thread/562157?ContentTypeID=1</link><pubDate>Thu, 26 Feb 2026 14:23:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7340d3c1-e324-4828-b5a4-b7f3213e20d7</guid><dc:creator>Redrield</dc:creator><description>&lt;p&gt;Our firmware is a lot more expansive that the part that triggered the bug, so I&amp;#39;ll summarize it here.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;1. init modem library, connect to lte. We do this in the same way as samples, lte_lc_connect_async with a semaphore given in the callback when the device is connected&lt;br /&gt;2. Set up socket to connect over TLS to some server. Target shouldn&amp;#39;t matter&lt;br /&gt;3. Before the calls to `socket` and `connect`, I added the following&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;struct tm tm = {&lt;br /&gt;&amp;nbsp; &amp;nbsp; .tm_sec = 0,&lt;br /&gt;&amp;nbsp; &amp;nbsp; .tm_min = 0,&lt;br /&gt;&amp;nbsp; &amp;nbsp; .tm_hour = 0,&lt;br /&gt;&amp;nbsp; &amp;nbsp; .tm_mon = 0,&lt;br /&gt;&amp;nbsp; &amp;nbsp; .tm_mday = 1,&lt;br /&gt;&amp;nbsp; &amp;nbsp; .tm_year = 115,&lt;br /&gt;}; // Defined above the function call, timestamp of 2015-01-01T00:00:00Z&lt;br /&gt;&lt;br /&gt;date_time_set(&amp;amp;tm);&lt;br /&gt;sock = socket(...);&lt;br /&gt;...&lt;br /&gt;date_time_set(&amp;amp;tm);&lt;br /&gt;connect(sock, ...);&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;With kconfig definitions CONFIG_DATE_TIME=y, CONFIG_DATE_TIME_MODEM=y (To ensure the timestamp update is sent to the modem)&lt;br /&gt;&lt;br /&gt;The 2 calls to date_time_set completed successfully, and the modem panic occurred almost immediately after.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 modem lock up, can't reprogram</title><link>https://devzone.nordicsemi.com/thread/562143?ContentTypeID=1</link><pubDate>Thu, 26 Feb 2026 12:45:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c9440182-27f6-423a-9855-c5c17ce4d2e1</guid><dc:creator>Carl Richard</dc:creator><description>&lt;p&gt;Hi again!&lt;br /&gt;&lt;br /&gt;Thanks. Could you also share the&amp;nbsp;program that triggered this issue? I want to try to reproduce it.&lt;br /&gt;&lt;br /&gt;We can make the ticket private if you don&amp;#39;t want to share this publicly.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Carl Richard&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 modem lock up, can't reprogram</title><link>https://devzone.nordicsemi.com/thread/562066?ContentTypeID=1</link><pubDate>Wed, 25 Feb 2026 14:24:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:23c803c9-850e-4b4a-8a9f-85d223c9b482</guid><dc:creator>Redrield</dc:creator><description>&lt;p&gt;Hi Carl,&lt;br /&gt;&lt;br /&gt;I tried to program the modem with `nrfutil device program --firmware mfw_nrf91x1_2.0.4.zip`&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF9151 modem lock up, can't reprogram</title><link>https://devzone.nordicsemi.com/thread/562037?ContentTypeID=1</link><pubDate>Wed, 25 Feb 2026 12:53:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce7217bc-ce92-40a3-a2bb-161b87f2b873</guid><dc:creator>Carl Richard</dc:creator><description>&lt;p&gt;Hi Redrield!&lt;br /&gt;&lt;br /&gt;Thanks for reaching out. The modem should not behave like this. I&amp;#39;ve reached out to the developers to see if they can provide som insight.&lt;br /&gt;&lt;br /&gt;Could you share the exact nrfutil-command you used to program the modem firmware?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Carl Richard&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>