<?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>Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/101397/enabling-config_bootloader_mcuboot-y-and-or-config_bt-y-breaks-unrelated-modules</link><description>We are attempting to add various modules to our project. For simplicity we&amp;#39;ve reduced our system to a toy setup closely mimicking the structure of our project and are trying to run the tensorflow lite micro module. 
 The state of the code here: flite_main_proj</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 03 Aug 2023 17:47:58 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/101397/enabling-config_bootloader_mcuboot-y-and-or-config_bt-y-breaks-unrelated-modules" /><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/439770?ContentTypeID=1</link><pubDate>Thu, 03 Aug 2023 17:47:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5abebeb-ec78-4df2-be78-a47e44a20b94</guid><dc:creator>janb37896796</dc:creator><description>&lt;p&gt;We&amp;#39;ve resolved our issue by adding an additional config in the sub-project kconfig&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;config TFLITE_SUBPROJECT
    bool &amp;quot;Tensorflow Lite subproject.&amp;quot;
    help
      Tensorflow Lite subproject.&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;And using it to gait the sub-project CmakeLists.txt&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;add_subdirectory_ifdef(CONFIG_TFLITE_SUBPROJECT lib)

# Include headers
zephyr_include_directories_ifdef(CONFIG_TFLITE_SUBPROJECT inc)&lt;/pre&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Config is enabled along with the other tflite configs in the main project .conf files&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;##Tensor Flow Lit Micro
CONFIG_CPP=y
CONFIG_STD_CPP17=y
CONFIG_TENSORFLOW_LITE_MICRO=y
CONFIG_TFLITE_SUBPROJECT=y&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;For anyone with similar problems, the snapshot at&amp;nbsp;&lt;a href="https://github.com/janfari/tflite_main_proj/commit/fac5eb11fe0cce85e4c80de5dd49ba00512b3abe"&gt;github.com/.../tflite_main_proj at fac5eb11&lt;/a&gt; should be a working toy project with both multi image support enabled and tflite hello world running on the nrf5340dk.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/437700?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 14:12:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:faad3bda-2896-4de0-b067-d64f76eb9b6e</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>[quote user="janb37896796"]Is there something to sysbuild you think may help or hurt the issue?[/quote]
&lt;p&gt;For now, I would suggest not using sysbuild, for two reasons:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I have heard that sysbuild does not yet fully support the Partition Manager yet, so there may be some issues there.&lt;/li&gt;
&lt;li&gt;We in techincal support are not yet as familiar with sysbuild, as it is a new feature. We should in theory provide the same support, as sysbuild is being introduced, but it takes time to build experience in practice.&lt;/li&gt;
&lt;/ol&gt;
[quote user="janb37896796"]1) Why does enabling the tflite configs not automatically import the module?[/quote]
&lt;p&gt;I do not know this one. Could sound like a design choice from whomever added tflite.&lt;/p&gt;
[quote user="janb37896796"]2) Why would the child images be looking for files in the tflite module?[/quote]
&lt;p&gt;I do not know how sysbuild would handle this yet.&lt;/p&gt;
&lt;p&gt;Without sysbuild the child images should not inherit the configuration from the application.&lt;br /&gt;There are two possibilities to why this happens as I see it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Either you have enabled tflite in your board files, as these apply to all child images as well as the app.&lt;/li&gt;
&lt;li&gt;Part of the build system detects tflite configurations and apply it in a way that makes it effect child images as well. &lt;br /&gt;I know some other configurations in the application can make changes to child images, such as CONFIG_SB_SIGNING_KEY_FILE.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So that we are on the same page, can you tell me what you do to disable/enable sysbuild in your project?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/437688?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 13:36:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3296a481-db7e-4237-98e9-53c00dad17e2</guid><dc:creator>janb37896796</dc:creator><description>&lt;p&gt;We have tried both with and without sysbuild. With sysbuild the children inherit the configs without any additional configurations on our side. This compiles but causes the bootlooping issue. Without sysbuild we have tried manually adding the configs to the children, again this compiles but causes the bootlooping issue. We&amp;#39;ve also tried B) described above without sysbuild. Is there something to sysbuild you think may help or hurt the issue?&lt;/p&gt;
&lt;p&gt;Two great specific question for the developers could be 1) Why does enabling the tflite configs not automatically import the module? 2) Why would the child images be looking for files in the tflite module? Having insight into those would help us have some more direction in debugging.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/437641?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 11:20:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:170099e3-5507-492d-a585-71373a9312a0</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Looking into why the child images try to use tflite, I see that you are using sysbuild. Is that correct?&lt;br /&gt;Do you have anything you need sysbuild for at this point?&lt;/p&gt;
[quote user="janb37896796"]I understand many folks are on summer vacation, but perhaps there is a build system developer available we could escalate this to?[/quote]
&lt;p&gt;It is generally hard for me to get help from our developers with complex projects like this.&lt;br /&gt;That is more for specific problems. For example: &amp;quot;Is sysbuild ready yet?&amp;quot; or &amp;quot;Why would sysbuild inherit configurations from the app?&amp;quot;&lt;/p&gt;
&lt;p&gt;Alternatively, you have to ask sales if you want to escalate stuff.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/437535?ContentTypeID=1</link><pubDate>Thu, 20 Jul 2023 16:56:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:03e9b724-5458-4814-8587-5018218dc9ff</guid><dc:creator>janb37896796</dc:creator><description>&lt;p&gt;Hi Siguard,&lt;br /&gt;Thank you for following up and attempting to build our project. The goal of our project here is to&amp;nbsp;include and use the tensorflow module so removing it is pointless.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;We&amp;#39;ve been digging in to this problem more while you were away. The problem seems to be stemming from the fact that the three children images (mcuboot, hci_rpmsg hcirpmsg/b0n) are looking for the tflite code. We&amp;#39;ve tried two approaches here: &lt;br /&gt;A) including the tflite configs in the three children image configs - this compiles but the code does not actually run (we would need to open a private ticket to share this particular failing code). From looking at the debugger, we get stuck in a bootloop in the mcuboot&amp;nbsp;portion of the code. We can only assume this is due to the odd addition of the tflite configs. This seems like the wrong approach.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;and B) attempting to exclude the tflite code from the children images. We&amp;#39;ve been unsuccessful in this. even with all function calls to tflite removed from our code, the children images are still searching for the tflite module as it is included in the west.yml as a module. Perhaps this approach of manually including tflite from the west.yml is the root of our issues but otherwise we have found to way to make the tflite module appear in the zephyr modules directory as it is not part of the &amp;quot;name-allowlist&amp;quot; in the nrf/west.yml.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I understand many folks are on summer vacation, but perhaps there is a build system developer available we could escalate this to?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/437411?ContentTypeID=1</link><pubDate>Thu, 20 Jul 2023 08:48:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:94c2c626-9476-4f56-a39f-947924b975cd</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;I have been able to build your project now.&lt;/p&gt;
&lt;p&gt;Maybe the easiest solution could be to just remove&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;tensorflow/lite/micro/all_ops_resolver.h&amp;gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;from tflite_sub_proj/lib/main_functions.cpp&lt;/p&gt;
&lt;p&gt;Do you need this file to be included in your project?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/437288?ContentTypeID=1</link><pubDate>Wed, 19 Jul 2023 14:08:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e12a0a45-f0d2-4a0b-b5ec-74cbb3c097ca</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;We are low on staffing due to the summer vacation.&lt;br /&gt;Due to this, it takes longer than normal to answer cases.&lt;br /&gt;This is especially true for reproduction of issues.&lt;/p&gt;
&lt;p&gt;Thank you for your patience.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/436014?ContentTypeID=1</link><pubDate>Wed, 12 Jul 2023 13:58:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:698fb69c-bd71-4dc4-939e-40b6fb409334</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;I got some more unfortunate news.&lt;/p&gt;
&lt;p&gt;I am traveling now, and I am somehow not able to run west update insde the folder on my current PC.&lt;br /&gt;It is just stuck on getting sdk-nrf.&lt;/p&gt;
&lt;p&gt;I will try this again on Monday when I am back in the office.&lt;/p&gt;
&lt;p&gt;Normally, I would ask a collegua for help to reproduce this, but due to the summer vacation we are low on staff, so longer waiting times are expected&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/435791?ContentTypeID=1</link><pubDate>Tue, 11 Jul 2023 15:16:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:46e28571-53d7-4357-9bf8-af76fb872170</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Ah, I have not. That is probably why I can not build.&lt;/p&gt;
&lt;p&gt;I wll do this tomorrow and test the project then.&lt;br /&gt;Sorry for the delay&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/435534?ContentTypeID=1</link><pubDate>Mon, 10 Jul 2023 14:40:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b254450c-4f37-49d5-8fd9-93269831137a</guid><dc:creator>janb37896796</dc:creator><description>&lt;p&gt;Hi Siguard,&lt;br /&gt;Thank you for looking in to this issue. And thank you &lt;a href="https://devzone.nordicsemi.com/members/guido"&gt;Guido&lt;/a&gt;&amp;nbsp;for helping support.&lt;br /&gt;&lt;br /&gt;Siguard, can you confirm that you&amp;#39;ve&amp;nbsp;followed the step in the readme to update the .west/config file to point to the west.yml in tflite_main_proj?&amp;nbsp;&lt;br /&gt;&lt;br /&gt;The contents of the config should look like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[manifest]
path = tflite_main_proj
file = west.yml

[zephyr]
base = zephyr&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;If you run `west update` after updating this it should pull down the folder tflite_sub_proj repo which contains the inc and src directories&amp;nbsp;&lt;br /&gt;&lt;br /&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/pastedimage1689000023964v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/435500?ContentTypeID=1</link><pubDate>Mon, 10 Jul 2023 12:42:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4467e34d-bc78-4480-b29f-d089f2b56ac5</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;This is how my tflite_main_proj folder looks after &amp;quot;west update&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;tflite]$ tree tflite_main_proj/
tflite_main_proj/
├── app
│&amp;#160;&amp;#160; ├── child_image
│&amp;#160;&amp;#160; │&amp;#160;&amp;#160; └── mcuboot
│&amp;#160;&amp;#160; │&amp;#160;&amp;#160;     ├── boards
│&amp;#160;&amp;#160; │&amp;#160;&amp;#160;     │&amp;#160;&amp;#160; └── nrf5340dk_nrf5340_cpuapp.overlay
│&amp;#160;&amp;#160; │&amp;#160;&amp;#160;     └── mcuboot.conf
│&amp;#160;&amp;#160; ├── CMakeLists.txt
│&amp;#160;&amp;#160; ├── Kconfig
│&amp;#160;&amp;#160; ├── prj.conf
│&amp;#160;&amp;#160; ├── sample.yaml
│&amp;#160;&amp;#160; └── src
│&amp;#160;&amp;#160;     └── main.c
├── CMakeLists.txt
├── Kconfig
├── README.md
├── west.yml
└── zephyr
    └── module.yml
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Also, the &amp;quot;inc&amp;quot; folder is not to be seen in &lt;a href="https://github.com/janfari/tflite_main_proj"&gt;https://github.com/janfari/tflite_main_proj&lt;/a&gt; either.&lt;/p&gt;
&lt;p&gt;Nor reffered to in &lt;a href="https://github.com/janfari/tflite_main_proj/blob/main/west.yml"&gt;https://github.com/janfari/tflite_main_proj/blob/main/west.yml&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And for the west folder which I inited:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;ls
tflite_main_proj  zephyr  bootloader  tools  modules
&lt;/pre&gt;&lt;/p&gt;
[quote user="Sigurd Hellesvik"]I got the west project set up, but get the error:[/quote]
&lt;p&gt;The error is from the build btw.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/435334?ContentTypeID=1</link><pubDate>Fri, 07 Jul 2023 19:51:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b6219eba-da7f-4e16-9eea-a6033ee72f7f</guid><dc:creator>Guido</dc:creator><description>&lt;p&gt;I can&amp;#39;t reproduce that error.&lt;br /&gt;That file is in a project in the west manifest.&lt;br /&gt;It should be in&amp;nbsp;&lt;span style="color:#ff0000;"&gt;tflite_sub_proj/inc/main_functions.h&lt;/span&gt;&amp;nbsp;after running&amp;nbsp;&lt;span style="color:#0000ff;"&gt;west update&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/434854?ContentTypeID=1</link><pubDate>Thu, 06 Jul 2023 07:55:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4ea6568a-487e-4a35-bd83-845961053aae</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;I got the west project set up, but get the error:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;fatal error: main_functions.h: No such file or directory
   18 | #include &amp;lt;main_functions.h&amp;gt;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Looks like I am missing some files?&lt;/p&gt;
&lt;p&gt;Also, I suggest that you rename your .c files to .cpp to use C++. This will make Zephyr detect some stuff automatically.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/434800?ContentTypeID=1</link><pubDate>Wed, 05 Jul 2023 20:15:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:962fe47e-bfd7-4985-8f91-464acde8deae</guid><dc:creator>Guido</dc:creator><description>&lt;p&gt;Hi Sigurd,&lt;br /&gt;&lt;br /&gt;Thank you for your support. I&amp;#39;m&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/janb37896796"&gt;janb37896796&lt;/a&gt;&amp;nbsp;&amp;#39;s co-worker,&amp;nbsp;they asked me to follow the issue for this week.&lt;br /&gt;&lt;br /&gt;The original post provides a github link with a minimal project. I&amp;#39;ll re submit:&amp;nbsp;&lt;a id="" href="https://github.com/janfari/tflite_main_proj"&gt;https://github.com/janfari/tflite_main_proj&lt;/a&gt;&lt;br /&gt;We are trying to mimic our current configuration where we use &lt;span style="text-decoration:underline;"&gt;west&lt;/span&gt; to pull individual repositories with drivers and libraries. The readme explains the setup, it&amp;#39;s a zephyr workspace (workspace folder, clone/west init and west update).&lt;br /&gt;Under &lt;a href="https://github.com/janfari/tflite_main_proj/blob/main/app/prj.conf"&gt;tflite_main_proj/app/prj.conf&lt;/a&gt;&amp;nbsp;look for:&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;# # # # BAD
# CONFIG_BOOTLOADER_MCUBOOT=y
# CONFIG_BT=y 
# # # # BAD&lt;/pre&gt;&lt;br /&gt;Uncomment any of those to replicate.&lt;br /&gt;&lt;br /&gt;We are aware of the &lt;span style="text-decoration:underline;"&gt;multi image build&lt;/span&gt; and &lt;span style="text-decoration:underline;"&gt;partition manager&lt;/span&gt; being enabled when using this with the&amp;nbsp;ncs/zephy. We have used them for the project and&amp;nbsp;they worked without problems until now.&lt;br /&gt;&lt;br /&gt;To give you another angle: what&amp;#39;s new is that we are looking on using zephyr&amp;#39;s tensorflow-lite(tflite) module, which requires C++ to be enabled.&lt;br /&gt;What we have tried:&lt;br /&gt;- tflite and C++ work fine on their own with the nRF5340.&lt;br /&gt;- Enabling tflite and C++ with our current project which resulted in compile time errors.&lt;br /&gt;- After reconstructing the configs from scratch&lt;a href="https://devzone.nordicsemi.com/members/janb37896796"&gt;janb37896796&lt;/a&gt;&amp;nbsp;was able to single out those 2 configs to be the breaking ones when in combination with tflite and C++.&lt;br /&gt;- The original post shows that we tried some solutions that we found on the devzone.&lt;br /&gt;&lt;br /&gt;I appreciate you taking the time to review this.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Guido&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Enabling CONFIG_BOOTLOADER_MCUBOOT=y and/or CONFIG_BT=y breaks unrelated modules</title><link>https://devzone.nordicsemi.com/thread/434196?ContentTypeID=1</link><pubDate>Mon, 03 Jul 2023 11:51:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b5c36768-86d3-41fa-b6d1-9befe7c019a9</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The common factor for CONFIG_BT (specifically for 5340) and CONFIG_BOOTLOADER_MCUBOOT is that they both enable &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/config_and_build/multi_image.html"&gt;multi imahe builds&amp;nbsp; &lt;/a&gt;which also enable the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/scripts/partition_manager/partition_manager.html#partition-manager"&gt;partition manager&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;From your error message, I can not say exactly how this is related yet.&lt;/p&gt;
&lt;p&gt;Is it an option for you to send me your minimal project to reproduce this error?&lt;br /&gt;If not, I will give you some tips on how you can debug this yourself.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>