<?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 Issue  with FreeRTOS  priorities in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907828#M136833</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;I am developing my application on FreeRTOS port from NXP for ImX8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am creating just as demo 2 simple task. The first (loop_task) contains just a while(1) with a counter++. The second (uart_task) a while(1) with the API UART_RTOS_Send.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void loop_task()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;static int counter;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;counter++;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void uart_task()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;UART_RTOS_Send(handle, &amp;amp;out_buffer, strlen(out_buffer));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following behaviors in the following cases:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;case 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#define configUSE_PREEMPTION&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(loop_task, "loop_task", 200, NULL, 3, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(uart_task, "uart_task", 200, NULL, 4, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The uart task send the first time the buffer and then correctly yields. The scheduler put the loop_task in running. So far so good.&lt;/P&gt;&lt;P&gt;Then (depending on my tick configuration), when the &lt;EM&gt;uart_tas&lt;/EM&gt;k is ready, the scheduler should put loop_task in ready and uart_task in running. But this does not happens. After the first "send" the &lt;EM&gt;uart_task&lt;/EM&gt; starves. The situation I encounter should occur with&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;#define configUSE_PREEMPTION&amp;nbsp; &amp;nbsp;&amp;nbsp;0&lt;/EM&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;case 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#define configUSE_PREEMPTION&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(loop_task, "loop_task", 200, NULL, 2, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(uart_task, "uart_task", 200, NULL, 4, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Just changing the loop_task from 3 to 2 made the application work as expected. Where is the trick? is it a bug of FreeRTOS port or what?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 May 2019 13:24:32 GMT</pubDate>
    <dc:creator>luca_corna</dc:creator>
    <dc:date>2019-05-10T13:24:32Z</dc:date>
    <item>
      <title>Issue  with FreeRTOS  priorities</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907828#M136833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;I am developing my application on FreeRTOS port from NXP for ImX8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am creating just as demo 2 simple task. The first (loop_task) contains just a while(1) with a counter++. The second (uart_task) a while(1) with the API UART_RTOS_Send.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void loop_task()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;static int counter;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;counter++;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void uart_task()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;UART_RTOS_Send(handle, &amp;amp;out_buffer, strlen(out_buffer));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following behaviors in the following cases:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;case 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#define configUSE_PREEMPTION&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(loop_task, "loop_task", 200, NULL, 3, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(uart_task, "uart_task", 200, NULL, 4, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The uart task send the first time the buffer and then correctly yields. The scheduler put the loop_task in running. So far so good.&lt;/P&gt;&lt;P&gt;Then (depending on my tick configuration), when the &lt;EM&gt;uart_tas&lt;/EM&gt;k is ready, the scheduler should put loop_task in ready and uart_task in running. But this does not happens. After the first "send" the &lt;EM&gt;uart_task&lt;/EM&gt; starves. The situation I encounter should occur with&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;#define configUSE_PREEMPTION&amp;nbsp; &amp;nbsp;&amp;nbsp;0&lt;/EM&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;case 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#define configUSE_PREEMPTION&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(loop_task, "loop_task", 200, NULL, 2, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xTaskCreate(uart_task, "uart_task", 200, NULL, 4, NULL);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Just changing the loop_task from 3 to 2 made the application work as expected. Where is the trick? is it a bug of FreeRTOS port or what?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 May 2019 13:24:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907828#M136833</guid>
      <dc:creator>luca_corna</dc:creator>
      <dc:date>2019-05-10T13:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue  with FreeRTOS  priorities</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907829#M136834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not directly related, but your tasks should be of the form&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;myTask&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;pv&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You actually are not giving back any CPU time, so they are starving any lower prio tasks.&lt;/P&gt;&lt;P&gt;So your task should be something like this:&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;loop_task&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;pv&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
   &lt;SPAN class="keyword token"&gt;static&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt; counter&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

   &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
     counter&lt;SPAN class="operator token"&gt;++&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
     &lt;SPAN class="token function"&gt;vTaskDelay&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;pdMS_TO_TICKS&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;uart_task&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;pv&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
   &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
   &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
      &lt;SPAN class="token function"&gt;UART_RTOS_Send&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;handle&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;out_buffer&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;strlen&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;out_buffer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
      &lt;SPAN class="token function"&gt;vTaskDelay&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;pdMS_TO_TICKS&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In your first case you have the uart_task running with the highest prio: if he does not give back time or is not suspended by any RTOS API calls, it will just consume all the CPU time.&lt;/P&gt;&lt;P&gt;I'm not sure what your UART_RTOS_Send() does (blocking or not?), but this will be an issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing the priorities as in your case 2 does not change anything. But keep in mind that there is at least the IDLE task running (at prio 0) and the timer task (at a higher prio, if you have enabled it). And other tasks can play into this too. At the end, I think it really depends what your UART_RTOS_Send() is exactly doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 May 2019 17:52:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907829#M136834</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2019-05-10T17:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Issue  with FreeRTOS  priorities</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907830#M136835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;UART_RTOS_Send is NXP API provided with SDK. It transmits and then (waiting for the transfer callback) it yields.&lt;/P&gt;&lt;P&gt;In my case 1. it is the higher priority task that starves!&lt;/P&gt;&lt;P&gt;In case 2 everything works perfectly: the uart task sends the messages, then it yields. In that moment the loop task can run untile the uart unblocks.&lt;/P&gt;&lt;P&gt;These 2 cases should perform in the same way but they don't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 May 2019 08:21:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907830#M136835</guid>
      <dc:creator>luca_corna</dc:creator>
      <dc:date>2019-05-13T08:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue  with FreeRTOS  priorities</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907831#M136836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I discovered that that &lt;SPAN style="color: #202020; background-color: #ffffff; font-size: 14px;"&gt;configTIMER_TASK_PRIORITY&lt;/SPAN&gt;&amp;nbsp;was set to 2, exactly the value that, assigned to the loop_task, made my application work. To prove it, I set&amp;nbsp;&lt;SPAN style="color: #202020; background-color: #ffffff; font-size: 14px;"&gt;configTIMER_TASK_PRIORITY&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;to the maximum. This made the application work as expected in every situation.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So the question is: why should it be put to the maximum? it is not something that is requested in the manuals.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2019 14:06:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907831#M136836</guid>
      <dc:creator>luca_corna</dc:creator>
      <dc:date>2019-05-14T14:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue  with FreeRTOS  priorities</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907832#M136837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using FreeRTOS timers, it is recommended to give it the (configMAX_PRIORITIES-1U) priority.&lt;/P&gt;&lt;P&gt;For more about how timers work, see&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://mcuoneclipse.com/2018/05/27/tutorial-understanding-and-using-freertos-software-timers/" title="https://mcuoneclipse.com/2018/05/27/tutorial-understanding-and-using-freertos-software-timers/"&gt;Tutorial: Understanding and Using FreeRTOS Software Timers | MCU on Eclipse&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2019 18:11:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Issue-with-FreeRTOS-priorities/m-p/907832#M136837</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2019-05-14T18:11:46Z</dc:date>
    </item>
  </channel>
</rss>

