<?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>softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/79398/softdevice-hard-fault-advertising-flash-contents-on-extended-advertising</link><description>On the latest master of https://github.com/nrfconnect/sdk-nrf (v1.7.0-rc1), swapping between extended and standard advertising will result in reads/ attempted writes to address 0x00. 
 Depending on the application configuration, this will result in either</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 03 Dec 2021 12:36:00 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/79398/softdevice-hard-fault-advertising-flash-contents-on-extended-advertising" /><item><title>RE: softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/thread/341871?ContentTypeID=1</link><pubDate>Fri, 03 Dec 2021 12:36:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5ef4d9c6-0961-4ed2-9bd8-404593fffa83</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;We can confirm there is a bug in SDC in v1.7.0-rc1 (and v1.7.1 as well). The module that allocates adv buffers seems to have a bug so it returns NULL pointer when it should have not. That module was completely redone in v1.8.0-rc1 and the bug is gone. It is not reproducible in v1.8.0-rc1.&lt;/p&gt;
&lt;p&gt;Thank you for reporting this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/thread/340618?ContentTypeID=1</link><pubDate>Wed, 24 Nov 2021 23:47:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ac55a5ac-b1da-4131-b387-e0b542dedb99</guid><dc:creator>JordanYates</dc:creator><description>&lt;p&gt;I don&amp;#39;t believe it&amp;#39;s a stack overflow. I can manually trigger a stack overflow with the following function and `&lt;span&gt;CONFIG_STACK_SENTINEL&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;`, which outputs logs like:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;void stack_overflow(void)
{
	uint8_t *stack_pointer = (uint8_t *)(_current-&amp;gt;stack_info.start + _current-&amp;gt;stack_info.size / 2);

	/* Write over complete stack */
	while ((uintptr_t)stack_pointer &amp;gt; _current-&amp;gt;stack_info.start) {
		(*stack_pointer)++;
		stack_pointer--;
	}
	/* Sleep to force context switch, triggering exception */
	k_sleep(K_MSEC(100));
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;Starting Fault Demo
Bluetooth initialized
[00:00:01.011,932] &amp;lt;err&amp;gt; os: r0/a1:  0x00000002  r1/a2:  0x00008e54  r2/a3:  0xf0f0f0f0
[00:00:01.011,932] &amp;lt;err&amp;gt; os: r3/a4:  0x20004da0 r12/ip:  0x20001af8 r14/lr:  0x0001df5d
[00:00:01.011,932] &amp;lt;err&amp;gt; os:  xpsr:  0x61000000
[00:00:01.011,932] &amp;lt;err&amp;gt; os: Faulting instruction address (r15/pc): 0x0001c886
[00:00:01.011,932] &amp;lt;err&amp;gt; os: &amp;gt;&amp;gt;&amp;gt; ZEPHYR FATAL ERROR 2: Stack overflow on CPU 0
[00:00:01.011,962] &amp;lt;err&amp;gt; os: Current thread: 0x20001e98 (unknown)
[00:00:01.056,732] &amp;lt;err&amp;gt; os: Halting system&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Removing the manual stock overflow still outputs the &amp;quot;MPU FAULT&amp;quot; error.&lt;/p&gt;
&lt;p&gt;Unless I misunderstand how the SoftDevice asserts are generated, attempting to write to 0x00 in the SoftDevice would still generate an MPU FAULT, not a SoftDevice assert. Unlike the binary blob variant of the Softdevice, I don&amp;#39;t think the static library version intercepts the vector table.&lt;/p&gt;
&lt;p&gt;Furthermore, more than doubling the stack size of the thread which the assert occurs in with `&lt;span&gt;CONFIG_BT_HCI_TX_STACK_SIZE&lt;/span&gt;&lt;span&gt;=4096` does not change the behaviour.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/thread/340540?ContentTypeID=1</link><pubDate>Wed, 24 Nov 2021 12:54:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a364541f-7f91-4064-9d5f-86fbff967538</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;This seems to be an application thread overflow, it is not a SoftDevice assert. It is an MPU fault. &lt;/p&gt;
&lt;p&gt;Please check the thread with address &lt;tt&gt;0x20001f38&lt;/tt&gt; as indicated in the log below. You can check the map file (&lt;tt&gt;build/zephyr/zephyr.map&lt;/tt&gt;) or alternatively enable &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/kconfig/CONFIG_THREAD_NAME.html" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;tt&gt;CONFIG_THREAD_NAME=y&lt;/tt&gt;&lt;/a&gt;&lt;/p&gt;
&lt;table style="color:rgba(0, 0, 0, 1);font-size:1em;font-style:normal;font-weight:normal;" border="0" cellpadding="0" cellspacing="0" width="100%"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:10px 10px 0;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;028&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os: ***** MPU FAULT *****&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;059&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os:   Data Access Violation&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;059&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os:   MMFAR Address: &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x0&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;059&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os: r0/a1:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x00000000&lt;/span&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;  r1/a2:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x20008ec1&lt;/span&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;  r2/a3:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x0000000d&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;059&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os: r3/a4:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0xffffffff&lt;/span&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt; r12/ip:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x00000002&lt;/span&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt; r14/lr:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x0001a955&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;059&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os:  xpsr:  &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x01000000&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;059&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os: Faulting instruction address (r15/pc): &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x000166f2&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;089&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os: &amp;gt;&amp;gt;&amp;gt; ZEPHYR FATAL ERROR &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0&lt;/span&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;: CPU exception on CPU &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0&lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="padding:0;vertical-align:top;"&gt;
&lt;pre style="font-size:1em;margin:0 10px 10px;padding:0;width:auto;"&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt;[&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;00&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;:&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;02.017&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;,&lt;/span&gt;&lt;span style="color: rgba(0, 153, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;089&lt;/span&gt;&lt;span style="color: rgba(0, 0, 0, 1); font-family: &amp;quot;Consolas&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important"&gt;] &amp;lt;err&amp;gt; os: Current thread: &lt;/span&gt;&lt;span style="color:rgba(0, 153, 0, 1);"&gt;0x20001f38&lt;/span&gt;&lt;span style="color:rgba(0, 0, 0, 1);"&gt; (unknown) &lt;/span&gt;&lt;/pre&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The reason for the assert to occur after updating NCS (SoftDevice controller) may have to do with a change in stack usage between versions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/thread/328964?ContentTypeID=1</link><pubDate>Fri, 10 Sep 2021 09:16:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9af634d2-d803-4381-987d-d5f35e182cfd</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Jordan, thank you very much for reporting this. I have notified the software team who will look into this issue.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&amp;nbsp;&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: softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/thread/328899?ContentTypeID=1</link><pubDate>Thu, 09 Sep 2021 22:46:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2edc5b35-6af1-4fe5-a3ac-744a703b395f</guid><dc:creator>JordanYates</dc:creator><description>&lt;p&gt;Not specifically, but the issue only appeared when updating the softdevice from&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrfxlib/commit/1a894638c438ce738c101b2c35894c9ffa2beb95"&gt;https://github.com/nrfconnect/sdk-nrfxlib/commit/1a894638c438ce738c101b2c35894c9ffa2beb95&lt;/a&gt;&amp;nbsp;to the v1.7.0-rc1 commit.&lt;/p&gt;
&lt;p&gt;If I had to guess I would think its related to the fix for:&lt;/p&gt;
&lt;table class="diff-table js-diff-table tab-size  "&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td class="blob-code blob-code-addition"&gt;&lt;/td&gt;
&lt;td class="blob-code blob-code-addition"&gt;&lt;span class="blob-code-inner blob-code-marker"&gt;* Fixed an issue where an assert may occur when legacy advertiser is used after &amp;quot;HCI LE Clear Advertising Sets&amp;quot; (DRGN-15993).&lt;/span&gt;&lt;/td&gt;
&lt;td class="blob-num blob-num-addition empty-cell"&gt;&lt;/td&gt;
&lt;td class="blob-num blob-num-addition js-linkable-line-number" id="diff-794dbd2613fe781e716b96b313b0fe1528ab53a619a9bce0472999878c513fcbR41"&gt;&lt;/td&gt;
&lt;td class="blob-code blob-code-addition"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;In&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrfxlib/commit/f8c4cbb42dbacd2a8b2ac62d7a26b42d0dc32b7c"&gt;https://github.com/nrfconnect/sdk-nrfxlib/commit/f8c4cbb42dbacd2a8b2ac62d7a26b42d0dc32b7c&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: softdevice: Hard Fault / Advertising flash contents on extended advertising</title><link>https://devzone.nordicsemi.com/thread/328887?ContentTypeID=1</link><pubDate>Thu, 09 Sep 2021 18:45:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0eb99c7b-1484-452f-8fcc-c532dfd972b7</guid><dc:creator>helsing</dc:creator><description>&lt;p&gt;Hi Jordan,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you for the detailed description and sorry for the delayed reply.&lt;/p&gt;
&lt;p&gt;Have you tried this with nRF Connect SDK v1.6.1?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Håkon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>