<?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>Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/48114/do-i-need-to-buy-a-segger-external-debugger-to-get-debug-trace-in-segger-embedded-studio</link><description>Hello Nordic, 
 I hope you can help me. I&amp;#39;m using an NRF52840 DK development board. 
 I followed the instructions on this video to enable debug trace in Segger embedded studio ( https://www.youtube.com/watch?v=uP8RYgYGRvI ) 
 When I debug I do not see</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 11 Jun 2019 21:27:18 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/48114/do-i-need-to-buy-a-segger-external-debugger-to-get-debug-trace-in-segger-embedded-studio" /><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/192172?ContentTypeID=1</link><pubDate>Tue, 11 Jun 2019 21:27:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d19851ec-05d6-4035-a50b-97306c50d12c</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;At this point I&amp;#39;d really suggest going back to basics. Write a hello world program using the SES template which if I remember correctly imports all the RTT headers for you and you can call RTT directly. Just have it print, wait (you can use a simple loop) then print again. If it doesn&amp;#39;t, just pull them in yourself and do it. See if that works with the debug terminal. If not, load up the code and connect up the JLink RTT viewer and see if you can get that to work.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When you get to the point you can see RTT output, next thing is to find the RTT calls buried under the NRF macros, put a breakpoint in them and ensure they are actually being called.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That thread Johannes linked to mentioned the RTT tab on the JLink control panel as another place you can see raw RTT output - have you looked there?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/192158?ContentTypeID=1</link><pubDate>Tue, 11 Jun 2019 17:58:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:94bed684-54cd-443b-9c2e-0ad9ff0f0867</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;I&amp;#39;ve just tried this but I still see nothing in the Debug Terminal, even using printf.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I tried putting this at the top of my sdk_config.h&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;#define NRF_PRINTF_FLAG_AUTOMATIC_CR_ON_LF_ENABLED 0&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;and when that didn&amp;#39;t work I tried changing&amp;nbsp;the sdk_config.h to&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;#ifndef NRF_FPRINTF_FLAG_AUTOMATIC_CR_ON_LF_ENABLED&lt;br /&gt;#define NRF_FPRINTF_FLAG_AUTOMATIC_CR_ON_LF_ENABLED 0&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;When I look in my subversion diffs for that file, this is the only line that is changed. This is for&amp;nbsp;&lt;/p&gt;
&lt;p&gt;C:\nRF5_SDK_15.3.0_59ac345\examples\ble_peripheral\ble_app_uart&lt;/p&gt;
&lt;p&gt;The example uses both of these lines just before advertising_start() (line 738)&lt;/p&gt;
&lt;p&gt;printf(&amp;quot;\r\nUART started.\r\n&amp;quot;);&lt;br /&gt; NRF_LOG_INFO(&amp;quot;Debug logging for UART over RTT started.&amp;quot;);&lt;/p&gt;
&lt;p&gt;If I type some text into the Debug Terminal by pressing keys on my keyboard then they appear in the window. So it&amp;#39;s not because of editor colours or something silly. When I step the debugger I see nothing from printf or&amp;nbsp;NRF_LOG_INFO&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I also checked my solution options but they look fine.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1560275503512v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Being paranoid cant hurt so I also changed the printf to&amp;nbsp;printf(&amp;quot;UART started.&amp;quot;); to remove the escaped characters entirely but it still shows nothing. I then repeated the line 20 times to see if it was some weird buffering thing.&lt;/p&gt;
&lt;p&gt;My J-Link control panel looks like this&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1560275802491v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;All of this is running on Windows 10 but I had the same problem with Win7&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/192105?ContentTypeID=1</link><pubDate>Tue, 11 Jun 2019 13:42:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2356230a-9b7b-4acc-9e34-5d112db48151</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Thanks for the clarification.&amp;nbsp;I&amp;#39;ll report this as bug internally.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Vidar&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/192041?ContentTypeID=1</link><pubDate>Tue, 11 Jun 2019 11:50:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:01962374-9295-4b06-afd5-c968c6a39ddf</guid><dc:creator>SEGGER - Johannes</dc:creator><description>&lt;p&gt;Hi Vidar,&lt;/p&gt;
&lt;p&gt;This is only related to Embedded Studio, not the J-Link Firmware or Software.&lt;br /&gt;RTT viewer might behave differently then Embedded Studio.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know if there is a difference between your nRF52840 and nRF52832 projects.&lt;br /&gt;ES will always behave this way with \r\r\n and from our point of view this is an issue in the SDK.&lt;/p&gt;
&lt;p&gt;Regards&lt;br /&gt;Johannes&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/192026?ContentTypeID=1</link><pubDate>Tue, 11 Jun 2019 11:28:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:98aeae73-dcf1-4ad7-9d54-f6dad0bca177</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Thanks Johannes, it solved the problem on my side at least. However, is this expected to happen after updating the Segger driver? Also, the same FW (before applying workaround) worked with RTT viewer and&amp;nbsp;was only able to reproduce it on 52840, not nrf52832.&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191961?ContentTypeID=1</link><pubDate>Tue, 11 Jun 2019 08:41:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f66be44-df64-4c12-8dc2-4570d10a8b2a</guid><dc:creator>SEGGER - Johannes</dc:creator><description>&lt;p&gt;Hi Jason,&lt;/p&gt;
&lt;p&gt;There is an issue with the SDK that transforms \r\n into \r\r\n, which clears a line before doing a line break in the Debug Terminal.&lt;/p&gt;
&lt;p&gt;See this thread:&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/45985/nrf_log-not-working-on-segger-embedded-studio?ReplyFilter=Answers&amp;amp;ReplySortBy=Answers&amp;amp;ReplySortOrder=Descending"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/45985/nrf_log-not-working-on-segger-embedded-studio?ReplyFilter=Answers&amp;amp;ReplySortBy=Answers&amp;amp;ReplySortOrder=Descending&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Is this the issue in your case, too?&lt;/p&gt;
&lt;p&gt;Regards&lt;br /&gt;Johannes&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191718?ContentTypeID=1</link><pubDate>Fri, 07 Jun 2019 20:59:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2c6d31c1-209b-43a6-b514-220c0860f06f</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;Thank you, I have now sent them an email&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191472?ContentTypeID=1</link><pubDate>Thu, 06 Jun 2019 21:05:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0223fa82-da2c-4702-ae4c-cd7e668fabc9</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;You may also want to go to the Segger forums and ask there. They support JLink and SES and even if they aren&amp;#39;t Nordic experts and can&amp;#39;t probably comment on the code, if you&amp;#39;re running a standard example right out of the SDK which ought to log and doesn&amp;#39;t, they may be able to help. The entire RTT logging component is all Segger and they (well Rowley who makes SES) integrated it with the debug terminal several years ago. Especially if you&amp;#39;re having version mismatch issues they can often help get that straightened out.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191469?ContentTypeID=1</link><pubDate>Thu, 06 Jun 2019 20:57:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3198c43e-c333-4154-a59d-d72b64342e35</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;OK thanks, I tried to uninstall everything but I had problems with missing uninstallers (see pic below) I installed 622g but when I tested again I still didn&amp;#39;t see anything in the&amp;nbsp;debug terminal. I used Revo uninstaller to forcibly remove the broken stuff. I then reinstalled Segger Embedded Studio and made sure I didn&amp;#39;t install the latest J-Link driver. I then installed 622g again. But it still didn&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;When I look in the J-Link Control panel it still shows the version as 6.44d&lt;/p&gt;
&lt;p&gt;I also tried manually copying the&amp;nbsp;JLink_x64.dll into the&amp;nbsp;C:\Program Files\SEGGER\SEGGER Embedded Studio for ARM 4.16\bin folder but it seems to stop the J-Link control panel from launching.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll give up for tonight! Thanks for your help&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1559844759437v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1559844824228v2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1559845620740v3.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191350?ContentTypeID=1</link><pubDate>Thu, 06 Jun 2019 12:24:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6cf2e9cd-e995-4e3b-b552-dacdc505b54b</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Ok, so I see the same problem after updating the latest Segger driver (v.6.46C). Please try to uninstall the version you installed, then install an older version, 622g for instance. The antivirus SW is preventing me from downgrading for some reason so couldn&amp;#39;t verify this on my side.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The log should be displayed in the debug terminal.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191200?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 21:06:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8849e050-755b-4b73-83d6-133b3c55ebb8</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;reinstalled j-link driver but it didn&amp;#39;t fix it. Then I reinstalled Segger embedded studio for ARM V4.16 (64-bit) Hobbyist license. It&amp;#39;s still the same. I can see from my Subversion diff that my&amp;nbsp;nRF5_SDK_15.3.0_59ac345 has no diffs in that example.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When I do &amp;quot;Build and Debug&amp;quot; I can see it pop up the progress bars. I know it&amp;#39;s updating the software because I&amp;#39;ve been able to develop various examples.&amp;nbsp;I press F5 to run in the debugger and nothing appears in the &amp;quot;Debug Terminal&amp;quot;. When it&amp;nbsp;breakpoints at 3 minutes I still see nothing in the &amp;quot;Debug Terminal&amp;quot;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Am I looking at the wrong window? Is it called &amp;quot;Debug Terminal&amp;quot;?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191173?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 15:38:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0cc4d03e-8edc-45d3-94d1-26cc5fe77bd3</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;Yes, 3 minutes sounds right. Latest SES I think. I moved from Windows 7 to Windows 10 last night so tonight I&amp;#39;ll try testing again and reinstalling jlink and maybe SES. Thanks for your excellent help&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f600.svg" title="Grinning"&gt;&amp;#x1f600;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/191129?ContentTypeID=1</link><pubDate>Wed, 05 Jun 2019 13:21:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8e4a76aa-e53f-4643-a403-c63f27f5a3d6</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Thanks for testing this. It indicates that it&amp;#39;s not a FW problem at least. What version of SES and which OS are you using? You can try to update to the latest J-link driver and see if that helps. Link:&amp;nbsp;&lt;a href="https://www.segger.com/downloads/jlink/"&gt;https://www.segger.com/downloads/jlink/&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
[quote user="JasonR"]&lt;span&gt;And after about a minute or something I noticed that it had&amp;nbsp;stopped here &lt;/span&gt;&lt;span&gt;(with id=16385 which is&amp;nbsp;NRF_FAULT_ID_SDK_ERROR)&lt;/span&gt;[/quote]
&lt;p&gt;Sure it&amp;#39;s not 3 minutes? Then it would be expected as the app attempts to enter deep sleep (system OFF) after 3 minutes of inactivity, which is not possible in debug mode.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/190910?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 19:16:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ce44105f-2c20-403b-8117-21517a24309b</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;Ok so I tried running &lt;span&gt;ble_app_uart&amp;nbsp;with a debug build and I still get no trace output. And after about a minute or something I noticed that it had&amp;nbsp;stopped here &lt;/span&gt;&lt;span&gt;(with id=16385 which is&amp;nbsp;NRF_FAULT_ID_SDK_ERROR)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1559675605993v1.png" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;As you can see there is&amp;nbsp;still nothing printed in the Debug Terminal window in the lower right of the display.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/190776?ContentTypeID=1</link><pubDate>Tue, 04 Jun 2019 12:26:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fbe1cae7-5f86-48c4-ab49-3775719922b1</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;It should be sufficient to change the logger backend to RTT. To narrow down the issue, please try the ble_app_uart example which has logging over RTT enabled by default and see if you get the same result.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/190630?ContentTypeID=1</link><pubDate>Mon, 03 Jun 2019 22:46:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:243c47af-fc5e-436b-a0d2-1c35cf9956a2</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;Do you mean logging macros like&amp;nbsp;&lt;span&gt;NRF_LOG_ERROR for example?&amp;nbsp;&lt;/span&gt;Because I do not see those lines&amp;nbsp;(or any others) appearing in my Debug Terminal window.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Running in the debugger, debug build. v15.3. Connected to my PC with USB.&lt;/p&gt;
&lt;p&gt;If I set a breakpoint or step through the code I can see that it is asserting with&amp;nbsp;NRF_FAULT_ID_SDK_ERROR.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1559601836371v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Thanks again for your help.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Do I need to buy a Segger external debugger to get debug trace in Segger embedded studio?</title><link>https://devzone.nordicsemi.com/thread/190628?ContentTypeID=1</link><pubDate>Mon, 03 Jun 2019 21:45:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c6d5403c-0550-48f5-a619-3eabe72d0db6</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;Yes if you want to use actual trace you need a Segger external debugger which supports trace. Trace uses a separate set of lines from the ARM microprocessor. Not many people actually need to use trace however.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Your second quote has nothing to do with the first, note that doesn&amp;#39;t even mention &amp;#39;trace&amp;#39;. You can program it using the onboard JLink just as it says you can but the onboard debugger does not support the trace outputs just as your first quote says.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;None of that has anything at all to do with what you have enabled in your sdk_config.h, RTT, which is Real Time Terminal which allows a log output via any JLink device which then appears in the terminal pane of SES. It doesn&amp;#39;t use the trace pins, it has nothing to do with trace. This is probably what you actually wanted in the first place, just use the logging macros with those defines enabled and the log will go to SES.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>