<?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>nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/92617/nrfxlib-softdevice-controller-crashes-hardfault-on-nrf52832-but-not-on-nrf52840-without-zephyr-baremetal</link><description>Hi, We are trying to work with nrfxlib directly baremetal without Zephyr. Were able to do advertising with it. On nRF52832 the SDC crashes when we tried to set new advertising data by calling 
 sdc_hci_cmd_le_set_adv_data 
 On the nRF52840, everything</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 10 Oct 2022 18:14:00 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/92617/nrfxlib-softdevice-controller-crashes-hardfault-on-nrf52832-but-not-on-nrf52840-without-zephyr-baremetal" /><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/390100?ContentTypeID=1</link><pubDate>Mon, 10 Oct 2022 18:14:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a583b115-80f2-43e6-bbec-f6c26fd949f2</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;Newer update of the nrfxlib no longer crashes. &amp;nbsp;Everything works fine so far. &amp;nbsp;Advertisement implementation works both legacy 31 bytes and extended adv 255 byte. &amp;nbsp;Moving on to connections stuff.&lt;/p&gt;
&lt;p&gt;For interested parties who want to know how this works. &amp;nbsp;Full source code available here :&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://github.com/IOsonata/IOsonata/blob/master/ARM/Nordic/nRF52/src/ble_app_sdc.cpp"&gt;https://github.com/IOsonata/IOsonata/blob/master/ARM/Nordic/nRF52/src/ble_app_sdc.cpp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;examples firmware to advertise a counter in private data :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://github.com/IOsonata/IOsonata/blob/master/ARM/Nordic/exemples/BleAdvertiser.cpp"&gt;https://github.com/IOsonata/IOsonata/blob/master/ARM/Nordic/exemples/BleAdvertiser.cpp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This example works with both new SDC and old nRF5_SDK17.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389937?ContentTypeID=1</link><pubDate>Mon, 10 Oct 2022 07:20:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2789109-c572-4b4e-92d2-76db0f5dca27</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Any chance you could provide me a minimal version of your project so I can try to replicate this here? I&amp;#39;m not trying to be difficult with you, but I need to have something more concrete to go on before I can involve the developers.&lt;/p&gt;
[quote user="hnhoan"]In this case is a hardfault[/quote]
&lt;p&gt;All fault events detected by the processor will trigger the hardfault exception unless you have enabled the other fault handlers in your code (i.e. Usage fault, memory managment fault, and Bus fault).&lt;/p&gt;
[quote user="hnhoan"]see the LDR into an unaligned address in R3[/quote]
&lt;p&gt;I do not see where the unaligned access is. The ldrb instruction shown in your screenshot is just loading a byte from memory (&lt;span style="text-decoration:line-through;"&gt;RAM&lt;/span&gt;) into r3, so this operation can&amp;#39;t be unaligned, at least.&lt;/p&gt;
&lt;p&gt;From the Cortex M4 Generic user Guide:&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/2570.pastedimage1665386299055v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;(&lt;a href="https://developer.arm.com/documentation/dui0553/latest/"&gt;https://developer.arm.com/documentation/dui0553/latest/&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Edit: &lt;/strong&gt;I can&amp;#39;t tell from the screenshots you posted what the r1 value was when the ldrb instruction was executed. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389857?ContentTypeID=1</link><pubDate>Fri, 07 Oct 2022 14:27:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e0bb4ac8-1fb3-4058-b781-ca15e478fe25</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;THose bits are relevant only when you get a Memfault. &amp;nbsp;In this case is a hardfault. Nonetheless, it is the cause by an unalign access and have proved to you. &amp;nbsp;Please stop arguing and do a code review on your side or you can send me the code. &amp;nbsp;I will fix it for you.&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/Screen-Shot-2022_2D00_10_2D00_07-at-8.27.58-AM.png" /&gt;&lt;/p&gt;
&lt;p&gt;see the LDR into an unaligned address in R3&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389755?ContentTypeID=1</link><pubDate>Fri, 07 Oct 2022 07:22:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2b2f71f-430c-402c-8fcb-7e1eb62da242</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;I&amp;#39;m familiar with alignment problems, but I don&amp;#39;t see any clear indication of that being the problem here. That said, I&amp;#39;m not sure if I read the byte order here correctly: &lt;/p&gt;
[quote user="vibe"]So it appears that none of the usage fault bits are set, which means the fault is triggered by something else.[/quote]
&lt;p&gt;The most significant bits belong to the usage fault status register as shown here: &lt;a href="https://interrupt.memfault.com/blog/cortex-m-fault-debug#cfsr"&gt;https://interrupt.memfault.com/blog/cortex-m-fault-debug#cfsr&lt;/a&gt; &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389707?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 18:34:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7b0ccd2d-a02a-4f03-aa4e-783818c2283e</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>[quote userid="4240" url="~/f/nordic-q-a/92617/nrfxlib-softdevice-controller-crashes-hardfault-on-nrf52832-but-not-on-nrf52840-without-zephyr-baremetal/389692"]I don’t quite understand how this can be an alignment issue. Did you check the usage fault register after the fault exception was raised?[/quote]
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;FYI&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://exchangetuts.com/unaligned-access-causes-error-on-arm-cortex-m4-1640371864183643"&gt;https://exchangetuts.com/unaligned-access-causes-error-on-arm-cortex-m4-1640371864183643&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The crash was from a ldr instruction. &amp;nbsp;Again this is an unaligned access fault problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389705?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 18:16:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:429e8693-9b5b-4b2c-b634-2bb9cfd2e137</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;that doesn&amp;#39;t solve the problem. &amp;nbsp;you can provide me the source I&amp;#39;ll fix it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389704?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 18:13:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ef2f05c3-3c6c-4aff-ac71-43398dd6518f</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;I suggest you go through the blog post I linked to above and try to determine what exactly triggered the the fault exception in this case. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389703?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 18:09:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9a766781-968d-4845-9742-13fc5dd87998</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;This crash only happens when optimization is enabled. When compiled with no optimization all works well. &amp;nbsp;I write library code too. &amp;nbsp;By experiences this type of crash always caused by un align access to global variable within a static lib.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389702?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 18:05:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:541094ae-b1ec-48df-965b-cbbbb8068c0b</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;So it appears that none of the usage fault bits are set, which means the fault is triggered by something else.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389701?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 18:02:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:94fd8d8f-7d02-469b-9d37-7ecccc60162c</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&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/Screen-Shot-2022_2D00_10_2D00_06-at-2.00.28-PM.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389700?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 17:54:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a37dd5da-7175-4ab6-80fa-84946361c135</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;I meant this register described here: &lt;a href="https://interrupt.memfault.com/blog/cortex-m-fault-debug#ufsr"&gt;https://interrupt.memfault.com/blog/cortex-m-fault-debug#ufsr&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389694?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 17:30:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5bf2e785-276e-489f-8fa5-dbe38354504f</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;This where it crashes&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/Screen-Shot-2022_2D00_10_2D00_06-at-1.23.28-PM.png" /&gt;&lt;/p&gt;
&lt;p&gt;This is the registers at crash&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/Screen-Shot-2022_2D00_10_2D00_06-at-1.26.54-PM.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;This is register at HardFault interrupt&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/Screen-Shot-2022_2D00_10_2D00_06-at-1.26.30-PM.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389692?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 17:18:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c4aa0f91-8da2-4bc1-a823-1636af874e85</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;I don&amp;rsquo;t quite understand how this can be an alignment issue. Did you check the usage fault register after the fault exception was raised?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389690?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 17:11:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0f9c04d3-6bdb-48c4-b0e2-6b22049dddf6</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;It is not compiler version. &amp;nbsp;I recompiled using 9.2020-q2 for you. &amp;nbsp;Same problem.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve worked with with Nordic SDK for 10 years already. &amp;nbsp;I&amp;#39;ve fixed many bugs from the SDK. &amp;nbsp;This time I cannot do that for you because source code is not available.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389680?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 15:37:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:29c3850e-0d26-4130-89ab-8a9b6e86af26</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user="hnhoan"]We use GCC 10.3. [/quote]
&lt;p&gt;Can you use&amp;nbsp;&lt;span&gt;GCC ARM Embedded 9.2020-q2.major this version? And you said it only happen with the optimization.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
[quote user=""]Compile my code by disabling all optimization works but not when optimization is enable. &amp;nbsp;The different is that when no optimization all global vars are word aligned while optimization will pack all global on a byte align.&amp;nbsp;[/quote]
&lt;p&gt;So I would suspect the GCC version issue. Since we havent&amp;#39;t tested and verified with GCC 10.3, I would suggest you use the supported GCC version.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;-Amanda&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389671?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 14:46:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c8d395a2-1f6a-43da-8d4a-af318ff6b2e4</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;We are not using SES. &amp;nbsp;We use GCC 10.3. &amp;nbsp;It is not compiler version or IDE issue. &amp;nbsp;This is in your code. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can fix this by forcing alignment on all variable that are not unit8_t or char type or you can also enable the compiler option to allow unaligned access. &amp;nbsp;By default unaligned access is not allow. &amp;nbsp;That why it causes the hardfault. The draw back is that generating unaligned access the code will be slow. &amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389669?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 14:45:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc61fe51-d7c5-4785-91ba-7ae7d08dcef1</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Which version of Segger Embedded Studio are you using? Seems like&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/88389/sd_ble_gap_ppcp_set-return-error/370151"&gt;others&lt;/a&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;have gotten similar errors when using too new SES version.&lt;/p&gt;
&lt;p&gt;We always recommend using the IDE/compiler version that the SDK was tested with, this is mentioned in the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/index.html"&gt;SDK release notes&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;pre&gt;nRF5 SDK v17.1.0
------------------------
Release Date: August, 2021
 
The following toolchains/devices have been used for testing and verification:
 
 - ARM: MDK-ARM version 5.25   
 - GCC: GCC ARM Embedded 9.2020-q2.major
 - IAR: IAR Workbench 7.80.4
 - SES: SES 5.42a&lt;br /&gt;&lt;br /&gt;
&lt;/pre&gt;
&lt;p&gt;Regards,&lt;br /&gt;Amanda&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389665?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 14:32:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d1b390c2-b59c-413b-b688-a612f97c4254</guid><dc:creator>Nguyen Hoan Hoang</dc:creator><description>&lt;p&gt;The ones in the nRF5_SDK 17.1&lt;/p&gt;
&lt;p&gt;&lt;span&gt;s132_nrf52_7.2.0_softdevice.hex&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;s140_nrf52_7.2.0_softdevice.hex&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;The problem isn&amp;#39;t the Softdevice.&lt;/p&gt;
&lt;p&gt;I believe there are global variables that need aligned access but are not aligned using __ALIGN(x). &amp;nbsp;So when compiled with optimization. &amp;nbsp;Those variables become unaligned due to optimization compacting all global on a byte boundary. So you need to force those variables to be word aligned with __ALIGN(x). &amp;nbsp;That was the cause of the crash inside MPSL &amp;amp; SDC.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrfxlib Softdevice Controller crashes (hardfault) on nRF52832 but not on nRF52840 without Zephyr (baremetal)</title><link>https://devzone.nordicsemi.com/thread/389664?ContentTypeID=1</link><pubDate>Thu, 06 Oct 2022 14:28:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c9b886d4-5804-4347-8ec1-1bd9df23542b</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hii,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Which version of s132 and s140 you are using? or from which version of NCS?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Amanda&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>