<?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>RTT loging</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/124859/rtt-loging</link><description>Hi, I got my nrf54L15 DK, but i can&amp;#39;t start RTT logging. I set this configs: 
 
 CONFIG_PRINTK =y 
 CONFIG_CONSOLE =y 
 CONFIG_RTT_CONSOLE =y 
 CONFIG_UART_CONSOLE =n 
 CONFIG_USE_SEGGER_RTT =y 
 
 CONFIG_LOG =y 
 CONFIG_LOG_DEFAULT_LEVEL =3 
 CONFIG_LOG_BACKEND_RTT</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 09 Oct 2025 12:50:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/124859/rtt-loging" /><item><title>RE: RTT loging</title><link>https://devzone.nordicsemi.com/thread/551017?ContentTypeID=1</link><pubDate>Thu, 09 Oct 2025 12:50:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:da124c5f-5806-454f-9d3b-c5dfeda3852b</guid><dc:creator>sefel08</dc:creator><description>&lt;p&gt;Thanks for all advises. I figured it out.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RTT loging</title><link>https://devzone.nordicsemi.com/thread/550952?ContentTypeID=1</link><pubDate>Wed, 08 Oct 2025 22:53:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5af2ca43-dca2-450b-96dc-fe0dbed123ba</guid><dc:creator>nordicator_prim3</dc:creator><description>&lt;p&gt;I haven&amp;#39;t messed with my 54l devkit yet so I just tried the below code with your config and was able to see the logging messages on the &amp;quot;Debug In / Trace&amp;quot; header on the DK. Make sure you aren&amp;#39;t using &amp;quot;Debug Out&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;zephyr/kernel.h&amp;gt;
#include &amp;lt;zephyr/logging/log.h&amp;gt;

LOG_MODULE_REGISTER(main, LOG_LEVEL_INF);

int main(void)
{
        for (;;)
        {
                LOG_INF(&amp;quot;Hello World! %s&amp;quot;, CONFIG_BOARD);
                k_sleep(K_SECONDS(1));
        }
        return 0;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Also, I usually have to connect on RTT again after each programming. It didn&amp;#39;t used to be that way but it is now on my system.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RTT loging</title><link>https://devzone.nordicsemi.com/thread/550950?ContentTypeID=1</link><pubDate>Wed, 08 Oct 2025 22:37:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f1e90f9-e42f-4a8b-9a63-ca1a7b1f6876</guid><dc:creator>nordicator_prim3</dc:creator><description>&lt;p&gt;It seems like all your config is there so it should be working.&lt;/p&gt;
&lt;p&gt;Try doing that log message in a loop with a one second delay each loop. You would have to get lucky to connect via RTT fast enough after programming to see that first log message.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>