<?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>Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/113169/multiple-irq-registration-build-error-when-migrating-from-ncs-2-5-0-to-2-7-0</link><description>Hello, 
 I am encountering the following multi registration error when migrating from 2.5.0 to 2.7.0. I don&amp;#39;t really have any good way to debug this as the application was able to compile successfully using the 2.5.0 SDK. Any help or pointers would be</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 27 Sep 2024 15:28:59 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/113169/multiple-irq-registration-build-error-when-migrating-from-ncs-2-5-0-to-2-7-0" /><item><title>RE: Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/thread/504210?ContentTypeID=1</link><pubDate>Fri, 27 Sep 2024 15:28:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d7a40312-f476-4b43-aa8e-56fd28333a22</guid><dc:creator>PuffinEgg</dc:creator><description>&lt;p&gt;&lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/d9bf4fb4e36e9dec123f4043b5580e55053c89b5/subsys/mpsl/init/mpsl_init.c#L41"&gt;github.com/.../mpsl_init.c&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/thread/504163?ContentTypeID=1</link><pubDate>Fri, 27 Sep 2024 12:21:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0cfe2bc7-afc7-4bcf-9d1c-94b9b8f99253</guid><dc:creator>li tong</dc:creator><description>&lt;p&gt;Hi Taspon,&lt;/p&gt;
&lt;p&gt;Thank you for shearing your experience.&lt;/p&gt;
&lt;p&gt;I would like to ask where can we find the information of the EGU used by&amp;nbsp;&lt;span&gt;MPSL?&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/thread/495707?ContentTypeID=1</link><pubDate>Thu, 25 Jul 2024 21:05:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7642fe7b-e4a3-4b14-aab8-21ad9b3a6972</guid><dc:creator>PuffinEgg</dc:creator><description>&lt;p&gt;&lt;span&gt;I was able to finally resolve the issue. Turns out there is an anomaly behavior for PWM (Anomaly 109) that somehow causes the nRF52832 to enter the IDLE state and stops the 64Mhz clock at the same time the PWM starts using the DMA which causes the wrong data to get sent. To resolve this issue, it appears nordic have been using a software interrupt in the past to wake up the CPU to start the DMA transfer. the option&amp;nbsp;&lt;/span&gt;&lt;code class="c-mrkdwn__code" data-stringify-type="code"&gt;NRF52_ANOMALY_109_WORKAROUND_EGU_INSTANCE&lt;/code&gt;&lt;span&gt;&amp;nbsp;is currently default to EGU instance 4 (used to be 5) in the recent 2.6.0 since the multiprotocol service layer libraries (MPSL) is currently using EGU5. This explains why there wasn&amp;#39;t any conflict with the zephyr BLE LL driver in 2.5.0. I changed the EGU setting back to 5 (&lt;/span&gt;&lt;code class="c-mrkdwn__code" data-stringify-type="code"&gt;CONFIG_NRF52_ANOMALY_109_WORKAROUND_EGU_INSTANCE = 5&lt;/code&gt;&lt;span&gt;) and that seem to resolve the conflict.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/thread/495279?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2024 16:46:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:50983da2-45d0-4bdf-83af-729af14e8f2b</guid><dc:creator>PuffinEgg</dc:creator><description>&lt;p&gt;&lt;span&gt;I haven&amp;#39;t changed any configuration when migrating to 2.7.0. The conflict seems to be due to the Zephyr implementation of the software BLE link layer and the PWM driver. T&lt;/span&gt;&lt;span&gt;urning off&amp;nbsp;&lt;/span&gt;&lt;code class="c-mrkdwn__code" data-stringify-type="code"&gt;CONFIG_BT_LL_SW_SPLIT=y&lt;/code&gt;&lt;span&gt;&amp;nbsp;and using the nordic LL driver fixes the issue but with the drawback of RAM demand also getting increased by another 1kB. Is there perhaps a way to fix this since I would like to use the&amp;nbsp;NRF PWM driver for the CAF LED module&amp;nbsp;along with the Zephyr BLE stack.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/thread/494823?ContentTypeID=1</link><pubDate>Fri, 19 Jul 2024 13:09:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6c1b819b-8b6d-41b2-99d3-a582612dee3b</guid><dc:creator>Naeem Maroof</dc:creator><description>&lt;p&gt;This error typically happens when something is getting configured twice, once under/from zephyr, and other manually / intentionally.&lt;/p&gt;
&lt;p&gt;I am not sure what your application is, but have you changed it (maybe you added some configuration etc) while migrating?&lt;/p&gt;
&lt;p&gt;Nonetheless, good to know that it is solved using this config.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Multiple IRQ registration build error when migrating from NCS 2.5.0 to 2.7.0</title><link>https://devzone.nordicsemi.com/thread/494440?ContentTypeID=1</link><pubDate>Wed, 17 Jul 2024 22:03:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c6e79901-0929-4acf-be39-7755400edeb1</guid><dc:creator>PuffinEgg</dc:creator><description>&lt;p&gt;Setting&amp;nbsp;&lt;span&gt;CONFIG_SHARED_INTERRUPTS&lt;/span&gt;&lt;span&gt;=y fixes the issue although I am unsure what underlying SDK modules are using the same interrupt.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>