<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: freeRTOS hello world example is not working in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1810011#M220018</link>
    <description>Thanks, &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/186731"&gt;@EdwinHz&lt;/a&gt;, I thought it would spawn some console. But when I opened the terminal it was running.</description>
    <pubDate>Fri, 16 Feb 2024 13:40:42 GMT</pubDate>
    <dc:creator>bpanneer</dc:creator>
    <dc:date>2024-02-16T13:40:42Z</dc:date>
    <item>
      <title>freeRTOS hello world example is not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1804141#M219803</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Board: EVK-MIMXRT595&lt;/P&gt;&lt;P&gt;SDK Version: 2.15.0&lt;/P&gt;&lt;P&gt;MCUXpresso IDE Version: 11.9.0&lt;/P&gt;&lt;P&gt;I am using the above-mentioned setup and building the freertos Hello World example. I made sure that the RT595 board was connected to my laptop.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;int&lt;/SPAN&gt; &lt;SPAN&gt;main&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;void&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/* &lt;/SPAN&gt;&lt;SPAN&gt;Init&lt;/SPAN&gt;&lt;SPAN&gt; board hardware. */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BOARD_InitBootPins&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BOARD_InitBootClocks&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BOARD_InitBootPeripherals&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#ifndef&lt;/SPAN&gt;&lt;SPAN&gt; BOARD_INIT_DEBUG_CONSOLE_PERIPHERAL&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/* &lt;/SPAN&gt;&lt;SPAN&gt;Init&lt;/SPAN&gt;&lt;SPAN&gt; FSL debug console. */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BOARD_InitDebugConsole&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#endif&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PRINTF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"Hello World\r\n"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/* Force the counter to be placed into memory. */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;volatile&lt;/SPAN&gt; &lt;SPAN&gt;static&lt;/SPAN&gt; &lt;SPAN&gt;int&lt;/SPAN&gt; &lt;SPAN&gt;i&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt; &lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/* Enter an infinite loop, just incrementing a counter. */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;i&lt;/SPAN&gt;&lt;SPAN&gt;++&lt;/SPAN&gt; &lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/* 'Dummy' NOP to allow source level single stepping of&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tight while() loop */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;__asm&lt;/SPAN&gt; &lt;SPAN&gt;volatile&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;nop&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&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;return&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt; &lt;SPAN&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;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;I ran the application with the Debug option. The main function was invoked but I cannot see the PRINTF message anywhere on the screen.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suspected that a new terminal/console window would pop up and view this PRINTF message. Can somebody help me here and let me know the right way to run this application?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 14:13:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1804141#M219803</guid>
      <dc:creator>bpanneer</dc:creator>
      <dc:date>2024-02-08T14:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: freeRTOS hello world example is not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1805576#M219898</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/229322"&gt;@bpanneer&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The serial terminal does not open by default on MCUXpresso, but you can easily open it by selecting the Terminal window on the bottom part of the IDE, then clicking the "Open a Terminal Button" (or pressing Ctl+Alt+Shift+T on your keyboard), then selecting "Serial Terminal" and the Serial port of the i.MX RT before clicking OK:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="EdwinHz_0-1707787938911.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/262893iDA3C01C47B6DE638/image-size/medium?v=v2&amp;amp;px=400" role="button" title="EdwinHz_0-1707787938911.png" alt="EdwinHz_0-1707787938911.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Once you do this, you can run the demo again or reset the device and you should be able to the the message printed on the Terminal window.&lt;/P&gt;
&lt;P&gt;BR,&lt;BR /&gt;Edwin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 01:34:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1805576#M219898</guid>
      <dc:creator>EdwinHz</dc:creator>
      <dc:date>2024-02-13T01:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: freeRTOS hello world example is not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1810011#M220018</link>
      <description>Thanks, &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/186731"&gt;@EdwinHz&lt;/a&gt;, I thought it would spawn some console. But when I opened the terminal it was running.</description>
      <pubDate>Fri, 16 Feb 2024 13:40:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/freeRTOS-hello-world-example-is-not-working/m-p/1810011#M220018</guid>
      <dc:creator>bpanneer</dc:creator>
      <dc:date>2024-02-16T13:40:42Z</dc:date>
    </item>
  </channel>
</rss>

