<?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>About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125519/about-ncs3-1-x-mpsl-assert</link><description>Cause of the issue Earlier, when I were producing products ( around 600 units with 2025.9 ), about 30% of the chips had difficulty connecting. Later, it was found that the boards that disconnected immediately after connecting were stuck at &amp;quot;MPSL ASSERT</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 21 Nov 2025 08:38:24 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125519/about-ncs3-1-x-mpsl-assert" /><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/555003?ContentTypeID=1</link><pubDate>Fri, 21 Nov 2025 08:38:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:53156e76-6579-40f0-96f8-ac05afbbc730</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;It is only the default value that is increased as we have seen problems on several custom boards with higher value, and quite a few user use the DK board files without adapting properly to their needs. You are free to optimize the value to match your hardware. (The value 1650 is also what was used previously for many years for older devices when this was not configurable.)&lt;/p&gt;
&lt;p&gt;Yes. the latency should ideally be set based on the actual crystal you are using. This way, you can find a sweet spot that allows lower power consumption by not starting the crystal too early, while at the same time making sure it is started early enough for your specific crystal that you do not run into problems. Note the recommendation of multiplying the measured value by two (as explained in the &lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/kconfig/index.html#CONFIG_MPSL_HFCLK_LATENCY"&gt;API doc&lt;/a&gt;), as there are variations from crystal to crystal, and other factors like the temperature also affect startup time.&lt;/p&gt;
&lt;p&gt;EDIT: I read your post again now. I am not suggesting you do this dynamically. I suggest you test the startup time on your bench in room temperature on a typical device. Then use this as a basis for the static configuration.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554998?ContentTypeID=1</link><pubDate>Fri, 21 Nov 2025 08:18:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9df74f67-0052-4907-870d-fe68711079f7</guid><dc:creator>bevis</dc:creator><description>&lt;p&gt;Increasing CONFIG_MPSL_HFCLK_LATENCY to 1650 is a very bad decision. I strongly urge the SDK not to do so. This will significantly increase the system&amp;#39;s static power consumption, including the power consumption of the RF oscillator. Increasing this value will negate the efficiency of the high - end manufacturing process of NRF54.&lt;/p&gt;
&lt;p&gt;Regarding the code you provided, are you suggesting that I measure the 32M crystal oscillator at startup and dynamically set CONFIG_MPSL_HFCLK_LATENCY based on the obtained value?&lt;/p&gt;
&lt;div id="__j__luna-bot-ai-popup" style="display:none;"&gt;&lt;/div&gt;
&lt;div id="__j__luna-bot-ai-context-menu" style="display:none;height:auto;position:absolute;width:auto;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554994?ContentTypeID=1</link><pubDate>Fri, 21 Nov 2025 08:10:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e42bfb53-b2e6-473f-b1d2-ebd4c968d928</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you. Did you try a higher value for&amp;nbsp;&lt;code&gt;CONFIG_MPSL_HFCLK_LATENCY&lt;/code&gt;? It could be good to set this to&amp;nbsp;1650 and also update or&amp;nbsp;the config for your board files if you set it there, similarly to what was done in the for he DK in &lt;a href="https://github.com/zephyrproject-rtos/zephyr/commit/9e52df023482739045cd2c927be24d567a368b77"&gt;this commit&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It could also be useful to test the startup time of the 32 MHz crystal oscillator (HFXO).&amp;nbsp;That can be done using this code snippet (put into for instance the hello_world sample project, and adjust the &lt;code&gt;OUTPUT_PIN&lt;/code&gt; definition to a pin you can access on your hardware):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;hal/nrf_gpio.h&amp;gt;
#include &amp;lt;zephyr/kernel.h&amp;gt;

#define OUTPUT_PIN NRF_GPIO_PIN_MAP(2,6)

int main(void)
{
	printf(&amp;quot;Measuring HFXO startup time on %s\n&amp;quot;, CONFIG_BOARD_TARGET);

	// Coinfigure output pin
	nrf_gpio_cfg_output(OUTPUT_PIN);
	nrf_gpio_pin_clear(OUTPUT_PIN);

	// Sleep for a seconds to avoid confusion. Only last pulse on the logic analyzer will then be relevant.
	k_sleep(K_MSEC(1000));

	NRF_CLOCK-&amp;gt;EVENTS_XOTUNED = 0;
	nrf_gpio_pin_set(OUTPUT_PIN);
	NRF_CLOCK-&amp;gt;TASKS_XOSTART = 1;
	while (NRF_CLOCK-&amp;gt;EVENTS_XOSTARTED == 0) {}
	nrf_gpio_pin_clear(OUTPUT_PIN);
	NRF_CLOCK-&amp;gt;EVENTS_XOTUNED = 0;

  return 0;
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Measure the last pulse, and the duration of that is the time from starting the HFXO until it is calibrated and ready for use with the radio. Then multiply this by two, and use that value with &lt;code&gt;CONFIG_MPSL_HFCLK_LATENCY&lt;/code&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554497?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 10:02:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:35fe1517-413b-449d-aad2-76faade3cc99</guid><dc:creator>bevis</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/EPSON_2D00_FC1610AN_5F00_Brief.pdf"&gt;devzone.nordicsemi.com/.../EPSON_2D00_FC1610AN_5F00_Brief.pdf&lt;/a&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/FA1210AN_5F00_X1E0004110008_5F00_en.pdf"&gt;devzone.nordicsemi.com/.../FA1210AN_5F00_X1E0004110008_5F00_en.pdf&lt;/a&gt;&lt;/p&gt;
&lt;div id="__j__luna-bot-ai-popup" style="display:none;"&gt;&lt;/div&gt;
&lt;div id="__j__luna-bot-ai-context-menu" style="display:none;height:auto;position:absolute;width:auto;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554491?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 09:18:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4e84753a-002f-4478-845a-d9c8fcd8aaa8</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;I see&amp;nbsp;&amp;nbsp;this looks good. Can you le me know which 32.768 kHz and&amp;nbsp;32 MHz crystals you have? (exact part numbers so that I can see the datasheet)?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554486?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 09:05:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6008b6be-752a-4639-9edd-eaadf02d4620</guid><dc:creator>bevis</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=".config" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/Snipaste_5F00_2025_2D00_11_2D00_17_5F00_17_2D00_04_2D00_43.png" /&gt;&lt;/p&gt;
&lt;p&gt;and I found they all set&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="batchfile"&gt;CONFIG_DT_HAS_NORDIC_NRF54L_HFXO_ENABLED=y
CONFIG_DT_HAS_NORDIC_NRF54L_LFXO_ENABLED=y&lt;/pre&gt;&lt;/p&gt;
&lt;div id="__j__luna-bot-ai-popup" style="display:none;"&gt;&lt;/div&gt;
&lt;div id="__j__luna-bot-ai-context-menu" style="display:none;height:auto;position:absolute;width:auto;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554484?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 08:56:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9e43a7d6-0306-44f6-81ae-5c1f9eabf33f</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I see. Can you also let me know the which clock source is being used in the build for both the application and bootloader by checking the generated .config for both? Do you have&amp;nbsp;&lt;code&gt;CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC&lt;/code&gt; or&amp;nbsp;&lt;code&gt;CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL&lt;/code&gt; enabled there, and is it the same in both cases? If you have any other special use or interesting findings around he clock configuration or clock usage that could also be useful.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554449?ContentTypeID=1</link><pubDate>Sun, 16 Nov 2025 09:02:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:484ad98e-a66e-4003-a5e3-c0674a633e71</guid><dc:creator>bevis</dc:creator><description>&lt;p&gt;During the early stages of the project, external matching capacitors were added in the PCB design. However, during later production, it was discovered that there was a significant frequency deviation, and even setting the calibration parameters to their maximum values could not achieve the target value. At that time, the test results showed a very low connection rate, with the measured frequency deviation exceeding 30K.&lt;/p&gt;
&lt;p&gt;Later, the oscillator circuit design was changed to match the EVB, without using external matching capacitors. The internal capacitor calibration value was used on the DTS, and each motherboard was calibrated during the production process. The target value was less than 15K. The DTS parameter 16250 indicates the default value. During the application initialization, I will use the calibration value set in production before initializing bt_enable.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="batchfile"&gt;// Mcuboot Zephyr.dts
clocks {

		/* node &amp;#39;/clocks/pclk&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:52 */
		pclk: pclk {
			compatible = &amp;quot;fixed-clock&amp;quot;;     /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:53 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;         /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:54 */
			clock-frequency = &amp;lt; 0xf42400 &amp;gt;; /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:55 */
			phandle = &amp;lt; 0xe &amp;gt;;              /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:579 */
		};

		/* node &amp;#39;/clocks/lfxo&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:58 */
		lfxo: lfxo {
			compatible = &amp;quot;nordic,nrf54l-lfxo&amp;quot;;        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:59 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;                   /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:60 */
			clock-frequency = &amp;lt; 0x8000 &amp;gt;;             /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:61 */
			load-capacitors = &amp;quot;internal&amp;quot;;             /* in zephyr/boards/nordic/nrf54l15dk/nrf54l_05_10_15_cpuapp_common.dtsi:35 */
			load-capacitance-femtofarad = &amp;lt; 0x4268 &amp;gt;; /* in zephyr/boards/nordic/nrf54l15dk/nrf54l_05_10_15_cpuapp_common.dtsi:36 */
			phandle = &amp;lt; 0xd &amp;gt;;                        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:579 */
		};

		/* node &amp;#39;/clocks/hfxo&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:64 */
		hfxo: hfxo {
			compatible = &amp;quot;nordic,nrf54l-hfxo&amp;quot;;        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:65 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;                   /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:66 */
			clock-frequency = &amp;lt; 0x1e84800 &amp;gt;;          /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:67 */
			startup-time-us = &amp;lt; 0x356 &amp;gt;;              /* in zephyr/boards/nordic/nrf54l15dk/nrf54l15dk_common.dtsi:112 */
			load-capacitors = &amp;quot;internal&amp;quot;;             /* in ../../shrm2/shrm_2/suunto/sysbuild/mcuboot/boards/nrf54l15dk_nrf54l15_cpuapp.overlay:29 */
			load-capacitance-femtofarad = &amp;lt; 0x3f7a &amp;gt;; /* in ../../shrm2/shrm_2/suunto/sysbuild/mcuboot/boards/nrf54l15dk_nrf54l15_cpuapp.overlay:30 */
			phandle = &amp;lt; 0x6 &amp;gt;;                        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:226 */
		};

		/* node &amp;#39;/clocks/hfpll&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:71 */
		hfpll: hfpll {
			compatible = &amp;quot;fixed-clock&amp;quot;;      /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:72 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;          /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:73 */
			clock-frequency = &amp;lt; 0x7a12000 &amp;gt;; /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:74 */
			phandle = &amp;lt; 0x1 &amp;gt;;               /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:30 */
		};
	};



// application Zephyr.dts
	clocks {
		/* node &amp;#39;/clocks/pclk&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:52 */
		pclk: pclk {
			compatible = &amp;quot;fixed-clock&amp;quot;;     /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:53 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;         /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:54 */
			clock-frequency = &amp;lt; 0xf42400 &amp;gt;; /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:55 */
			phandle = &amp;lt; 0xe &amp;gt;;              /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:579 */
		};

		/* node &amp;#39;/clocks/lfxo&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:58 */
		lfxo: lfxo {
			compatible = &amp;quot;nordic,nrf54l-lfxo&amp;quot;;        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:59 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;                   /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:60 */
			clock-frequency = &amp;lt; 0x8000 &amp;gt;;             /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:61 */
			load-capacitors = &amp;quot;internal&amp;quot;;             /* in zephyr/boards/nordic/nrf54l15dk/nrf54l_05_10_15_cpuapp_common.dtsi:35 */
			load-capacitance-femtofarad = &amp;lt; 0x4268 &amp;gt;; /* in zephyr/boards/nordic/nrf54l15dk/nrf54l_05_10_15_cpuapp_common.dtsi:36 */
			phandle = &amp;lt; 0xd &amp;gt;;                        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:579 */
		};

		/* node &amp;#39;/clocks/hfxo&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:64 */
		hfxo: hfxo {
			compatible = &amp;quot;nordic,nrf54l-hfxo&amp;quot;;        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:65 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;                   /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:66 */
			clock-frequency = &amp;lt; 0x1e84800 &amp;gt;;          /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:67 */
			startup-time-us = &amp;lt; 0x356 &amp;gt;;              /* in zephyr/boards/nordic/nrf54l15dk/nrf54l15dk_common.dtsi:112 */
			load-capacitors = &amp;quot;internal&amp;quot;;             /* in ../../shrm2/shrm_2/suunto/boards/nrf54l15dk_nrf54l15_cpuapp.overlay:148 */
			load-capacitance-femtofarad = &amp;lt; 0x3f7a &amp;gt;; /* in ../../shrm2/shrm_2/suunto/boards/nrf54l15dk_nrf54l15_cpuapp.overlay:149 */
			phandle = &amp;lt; 0x6 &amp;gt;;                        /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:226 */
		};

		/* node &amp;#39;/clocks/hfpll&amp;#39; defined in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:71 */
		hfpll: hfpll {
			compatible = &amp;quot;fixed-clock&amp;quot;;      /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:72 */
			#clock-cells = &amp;lt; 0x0 &amp;gt;;          /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:73 */
			clock-frequency = &amp;lt; 0x7a12000 &amp;gt;; /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:74 */
			phandle = &amp;lt; 0x1 &amp;gt;;               /* in zephyr/dts/vendor/nordic/nrf54l_05_10_15.dtsi:30 */
		};
	};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div id="__j__luna-bot-ai-popup" style="display:none;"&gt;&lt;/div&gt;
&lt;div id="__j__luna-bot-ai-context-menu" style="display:none;height:auto;position:absolute;width:auto;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554248?ContentTypeID=1</link><pubDate>Thu, 13 Nov 2025 10:39:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0d21a909-592d-48d6-8faf-9a76ee1e482f</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I see. But what about the low frequency clock source configuration? Can you share that for both the bootloader and application? (I ask because of a known issue that can be triggered by a mismatch here, and this can then affect the HFXO as that is used to calibrate the LFRC). The workaround for that is to make sure that the same clock source is used in the bootloader and application.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/554206?ContentTypeID=1</link><pubDate>Thu, 13 Nov 2025 06:12:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f94d0f25-b6c2-4df8-bd57-409714848751</guid><dc:creator>bevis</dc:creator><description>&lt;p&gt;Yes, I have mcuboot, and all set the HFXO&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;hfxo {
	load-capacitors = &amp;quot;internal&amp;quot;;
	load-capacitance-femtofarad = &amp;lt;16250&amp;gt;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;div id="__j__luna-bot-ai-popup" style="display:none;"&gt;&lt;/div&gt;
&lt;div id="__j__luna-bot-ai-context-menu" style="display:none;height:auto;position:absolute;width:auto;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: About NCS3.1.X MPSL ASSERT</title><link>https://devzone.nordicsemi.com/thread/553918?ContentTypeID=1</link><pubDate>Tue, 11 Nov 2025 08:22:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4154b454-91fd-48ef-83d6-53e7f59b8ca1</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Do you have a bootloader in the device? If so, can you double check that the LF clock source you have configured is the same in the bootloader and application? We have seen this assert before when the bootloader used LFXO and application used LFRC.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>