<?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>nRF54L15 BM - how to disable MCUMGR log</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126045/nrf54l15-bm---how-to-disable-mcumgr-log</link><description>Hi, 
 
 I am developing on nRF54L15-DK BM (bare metal) for another board with a different pinout. 
 I need to disable the the MCUMGR log that prints to UART TX pin 1. 04. 
 
 The printout mentioned is: 
 
 
 Thank you! 
 
 Regards, 
 Aryeh</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 11 Dec 2025 07:54:39 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126045/nrf54l15-bm---how-to-disable-mcumgr-log" /><item><title>RE: nRF54L15 BM - how to disable MCUMGR log</title><link>https://devzone.nordicsemi.com/thread/556759?ContentTypeID=1</link><pubDate>Thu, 11 Dec 2025 07:54:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2853e548-40bc-4af8-ac8c-7c6156d26c4d</guid><dc:creator>Aryeh Eiderman</dc:creator><description>&lt;p&gt;Hello Vidar,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Thank You very much!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;It works!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Aryeh&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 BM - how to disable MCUMGR log</title><link>https://devzone.nordicsemi.com/thread/556756?ContentTypeID=1</link><pubDate>Thu, 11 Dec 2025 07:00:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d6049a44-0bac-41d8-a437-089343b47c39</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello&amp;nbsp;&lt;span&gt;Aryeh,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;You can also use the same approach as you did with mcuboot, just create a new file named firmware_loader.conf in the sysbuild folder and add the same configuration settings. Note: when adding new files in the sysbuild folder, you must do a pristine build for the new file to be detected by the build system.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Vidar&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 BM - how to disable MCUMGR log</title><link>https://devzone.nordicsemi.com/thread/556576?ContentTypeID=1</link><pubDate>Tue, 09 Dec 2025 14:53:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2854e8f-d4df-41cf-8674-4c596531d7fd</guid><dc:creator>Aryeh Eiderman</dc:creator><description>&lt;p&gt;Hello Vidar,&lt;/p&gt;
&lt;p&gt;Thank You!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If I understand right, this is a global change, in&lt;/p&gt;
&lt;p&gt;&lt;span&gt;C:\ncs\nrf-bm\v0.9.0\nrf-bm\samples\mcumgr\ble_mcumgr\prj.conf&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I am looking for a portable, local project only solution.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, for the &lt;strong&gt;app&lt;/strong&gt; I added the setting in CMakeLists.txt to redirect the pin&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;add_compile_definitions(BOARD_CONSOLE_UARTE_PIN_TX=43) # default 36=P1.04&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;before the line&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;and for the &lt;strong&gt;mcuboot&lt;/strong&gt; I added in sysbuild/mcuboot.conf&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:&amp;#39;courier new&amp;#39;, courier;"&gt;CONFIG_LOG=n&lt;br /&gt;CONFIG_LOG_BACKEND_BM_UARTE=n&lt;br /&gt;CONFIG_CONSOLE=n&lt;br /&gt;CONFIG_BM_UARTE_CONSOLE=n&lt;br /&gt;CONFIG_UART_CONSOLE=n&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;and it does the job.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Now I am looking for a portable solution for the &lt;strong&gt;MCUmgr (firmware_loader)&lt;/strong&gt; as well.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Is it exists?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Aryeh&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 BM - how to disable MCUMGR log</title><link>https://devzone.nordicsemi.com/thread/556571?ContentTypeID=1</link><pubDate>Tue, 09 Dec 2025 14:17:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:186fe501-fdba-4038-b0fe-9688abe5873c</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello&amp;nbsp;&lt;span&gt;Aryeh,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;It should be sufficient to change the project configuration to disable the LOG and CONSOLE:&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/pastedimage1765289816353v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Vidar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>