<?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: Send Data using Blocking method  within FreeRTOS Fail in S32 SDK</title>
    <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426479#M2437</link>
    <description>&lt;P&gt;hi, you means re-initialize the&amp;nbsp;&lt;SPAN&gt;LPUART driver? I made the initialization of&amp;nbsp;LPUART driver within the&amp;nbsp; function&amp;nbsp;prvSetupHardware() by following code before&amp;nbsp; TaskStartScheduler():&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;/* Initialize PINS */
DrvInitRult += PINS_DRV_Init(NUM_OF_CONFIGURED_PINS, g_pin_mux_InitConfigArr);

/* Initialize LPUART */
LPUART_DRV_Init(INST_LPUART1, &amp;amp;lpuart1_State, &amp;amp;lpuart1_InitConfig0);

(void) LPUART_DRV_InstallRxCallback(INST_LPUART1, LPUART1_RxCallback_ISR, NULL);
(void) LPUART_DRV_InstallTxCallback(INST_LPUART1, LPUART1_TxCallback_ISR, NULL);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I can make a test as you said!&lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2022 02:25:54 GMT</pubDate>
    <dc:creator>issta</dc:creator>
    <dc:date>2022-03-11T02:25:54Z</dc:date>
    <item>
      <title>Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1425999#M2433</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use FreeRTOS component and FlexCAN and LPUART, in order to communicated with HOST!&lt;BR /&gt;The MCU is S32K148 and SDK version is V3.0.3, IDE is S32 Design Studio for ARM v2.2.&lt;/P&gt;&lt;P&gt;I found that using &lt;STRONG&gt;XXXX_SendDataBlocking()&lt;/STRONG&gt; &lt;U&gt;will let the program stay where it called, and the function never get return. &lt;/U&gt;No matter I use CAN module Blocking method (LPUART_DRV_&lt;STRONG&gt;SendDataBlocking&lt;/STRONG&gt;(....)) or LPUAR module Blocking method (FLEXCAN_DRV_&lt;STRONG&gt;SendBlocking&lt;/STRONG&gt;(...)), the result is same!&lt;/P&gt;&lt;P&gt;It seems that within the XXXX_SendDataBlocking() function :&lt;/P&gt;&lt;P&gt;&lt;EM&gt;syncStatus = &lt;STRONG&gt;OSIF_SemaWait&lt;/STRONG&gt;(&amp;amp;lpuartState-&amp;gt;txComplete, timeout);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;function OSIF_SemaWait() never get a return Sema-signal, so the program 'die' and wait forever there..&lt;/P&gt;&lt;P&gt;Below testing shows that: the character send successfully by LPUART, but the program still 'die'!&lt;/P&gt;&lt;P&gt;By the way ,the non-blocking method LPUART_DRV_&lt;STRONG&gt;SendDataPolling&lt;/STRONG&gt;(....) and FLEXCAN_DRV_&lt;STRONG&gt;Send&lt;/STRONG&gt;(.....) works fine!&lt;/P&gt;&lt;P&gt;Maybe the way of function calling I used under FreeRTOS is warong, or something else wrong! But I have no way...&lt;/P&gt;&lt;P&gt;Anyone who can Help me ?&lt;/P&gt;&lt;P&gt;&lt;U&gt;The key function used is :&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;/*-----------------------------------------------------------*/

void rtos_start( void )
{
prvSetupHardware();
prvSetupSoftware();

printf("\n[2]: System Task Creating ...\n");
fflush((void*)stdout);

xTaskCreate(prvMasterRootTask, "RootStrt", configRTOS_BASIC_STACK_SIZE, NULL, mainROOT_START_TSK_PRIORITY, &amp;amp;RootStrtTask_TskHdl);

vTaskStartScheduler();

for (;; );
}

/*-----------------------------------------------------------*/

static void prvMasterRootTask(void* pvParameters)
{
/* Casting pvParameters to void because it is unused */
(void)pvParameters;

printf("\n[3]: Task Scheduler Is Now Running...\n");
fflush((void*)stdout);


uint8_t txBuff[40];
uint32_t nLen;

for( ;; )
{
nLen = snprintf((char*)txBuff, sizeof(txBuff), "\nh\n\r");

/* LPUART_DRV_SendDataPolling(INST_LPUART1, txBuff, nLen); */
LPUART_DRV_SendDataBlocking(INST_LPUART1, txBuff, nLen, 8000);

vTaskDelay(300 / portTICK_PERIOD_MS);

}

}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;the Host can get the flowing result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;[0]: Hardware Initialize Completed...

[1]: App. Init. Finished!...

[2]: System Task Creating ...

[3]: Task Scheduler Is Now Running...
h&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 09:07:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1425999#M2433</guid>
      <dc:creator>issta</dc:creator>
      <dc:date>2022-03-10T09:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426141#M2435</link>
      <description>&lt;P&gt;the same question:&amp;nbsp;&lt;A href="https://community.nxp.com/t5/S32K/S32K-Flexio-Uart-freertos/m-p/1026503" target="_blank"&gt;https://community.nxp.com/t5/S32K/S32K-Flexio-Uart-freertos/m-p/1026503&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 12:43:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426141#M2435</guid>
      <dc:creator>issta</dc:creator>
      <dc:date>2022-03-10T12:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426221#M2436</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/197968"&gt;@issta&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Can you please initialize the LPUART driver within the prvMasterRootTask?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;BR, Daniel&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 14:43:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426221#M2436</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2022-03-10T14:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426479#M2437</link>
      <description>&lt;P&gt;hi, you means re-initialize the&amp;nbsp;&lt;SPAN&gt;LPUART driver? I made the initialization of&amp;nbsp;LPUART driver within the&amp;nbsp; function&amp;nbsp;prvSetupHardware() by following code before&amp;nbsp; TaskStartScheduler():&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;/* Initialize PINS */
DrvInitRult += PINS_DRV_Init(NUM_OF_CONFIGURED_PINS, g_pin_mux_InitConfigArr);

/* Initialize LPUART */
LPUART_DRV_Init(INST_LPUART1, &amp;amp;lpuart1_State, &amp;amp;lpuart1_InitConfig0);

(void) LPUART_DRV_InstallRxCallback(INST_LPUART1, LPUART1_RxCallback_ISR, NULL);
(void) LPUART_DRV_InstallTxCallback(INST_LPUART1, LPUART1_TxCallback_ISR, NULL);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I can make a test as you said!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 02:25:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426479#M2437</guid>
      <dc:creator>issta</dc:creator>
      <dc:date>2022-03-11T02:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426490#M2438</link>
      <description>&lt;P&gt;Hello, here is the result : program still "die" there&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/173136i59E257214FC336A9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 02:46:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1426490#M2438</guid>
      <dc:creator>issta</dc:creator>
      <dc:date>2022-03-11T02:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1429308#M2450</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/197968"&gt;@issta&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I'm sorry for the delay.&lt;/P&gt;
&lt;P&gt;I'm not sure why it does not work when the derivers is initialized after the scheduler is started.&lt;/P&gt;
&lt;P&gt;Anyway, is there a reason to use the blocking function?&lt;/P&gt;
&lt;P&gt;The below code does basically the same thing&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;LPUART_DRV_SendData(INST_LPUART1, txBuff, length);
while(LPUART_DRV_GetTransmitStatus(INST_LPUART1, &amp;amp;bytes) == STATUS_BUSY);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 12:42:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1429308#M2450</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2022-03-16T12:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1433006#M2458</link>
      <description>&lt;P&gt;hello, thanks for your replay! If have conditions, would you please create a project using the same way to find the reason ? This problem troubled some person not just me. Although I can using other method, we want to see whether it's a software-bug of SDK released by the official.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 01:40:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1433006#M2458</guid>
      <dc:creator>issta</dc:creator>
      <dc:date>2022-03-24T01:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1434729#M2472</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/197968"&gt;@issta&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I'm waiting for feedback from the SDK SW team.&lt;/P&gt;
&lt;P&gt;It may take some additional time to resolve it.&lt;/P&gt;
&lt;P&gt;I'm sorry for the inconvenience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 09:32:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1434729#M2472</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2022-03-28T09:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1446347#M2500</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/197968"&gt;@issta&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I'm sorry fo the delay.&lt;/P&gt;&lt;P&gt;I just wanted to let you know that the issue is still being investigated by the SDK SW team.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your patience and understanding,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 10:28:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1446347#M2500</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2022-04-20T10:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1447821#M2509</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/197968"&gt;@issta&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The root cause seems to be in misconfigured interrupt priorities.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Test provided by the SDK team.&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Configure the maximum system call interrupt priority value is 1 and enable configASSERT() function to validate the interrupt priority.&lt;/LI&gt;
&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="danielmartynek_0-1650626915848.jpeg" style="width: 409px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/177735iF86C7708553A2F64/image-dimensions/409x497?v=v2" width="409" height="497" role="button" title="danielmartynek_0-1650626915848.jpeg" alt="danielmartynek_0-1650626915848.jpeg" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;UL&gt;
&lt;LI&gt;Inside the task, call the LPUART_DRV_SendDataBlocking() to transmit data, and the interrupt priority value of LPUART interrupt is zero (as the default value).&lt;/LI&gt;
&lt;LI&gt;If the application in sun in the debug mode, we can see that at the end of transmission the OSIF_SemaPost() function is called to signal the synchronous completion object. This invoke to the funtion vPortValidateInterruptPriority() to check validity of the priority.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="danielmartynek_1-1650626967791.png" style="width: 673px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/177736iC953C7F106CE466A/image-dimensions/673x542?v=v2" width="673" height="542" role="button" title="danielmartynek_1-1650626967791.png" alt="danielmartynek_1-1650626967791.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Currently executing interrupt have exception number 49, it belongs to LPUART1_IRQ and the numerical priority is 0 while the numerical priority of the system call is 16 (it equals to 1 &amp;lt;&amp;lt; 4).&lt;/LI&gt;
&lt;LI&gt;Because we do not call FreeRTOS API functions from any interrupt that has a higher priority level than the system call priority level (higher logical priority is lower numerical priority), so the current configured priorities lead to false condition inside configASSERT() function and infinite loop occur.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="danielmartynek_2-1650627001632.png" style="width: 694px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/177737iA3D1B90669B39400/image-dimensions/694x174?v=v2" width="694" height="174" role="button" title="danielmartynek_2-1650627001632.png" alt="danielmartynek_2-1650627001632.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Conclusion&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The user should configure interrupt priorities correctly, following:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;When configASSERT() function is disabled, the validity checking of priorities will be removed.&lt;/LI&gt;
&lt;LI&gt;The maximum system call interrupt priority value must not be set to 0.&lt;/LI&gt;
&lt;LI&gt;When configASSERT() function is enabled, please make sure that the interrupts that call to FreeRTOS API must have priority level equal or lower than the system call interrupt priority level by calling INT_SYS_SetPriority() function to set priority value before running the task.(e.g call INT_SYS_SetPriority(LPUART1_RxTx_IRQn, 1), where “1” is the priority value).&lt;/LI&gt;
&lt;LI&gt;For more detail about interrupt priority value that are used to FreeRTOS context, please refer to here: &lt;A href="https://www.freertos.org/RTOS-Cortex-M3-M4.html" target="_blank" rel="noopener"&gt;https://www.freertos.org/RTOS-Cortex-M3-M4.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 22 Apr 2022 11:39:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1447821#M2509</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2022-04-22T11:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Send Data using Blocking method  within FreeRTOS Fail</title>
      <link>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1453863#M2518</link>
      <description>&lt;P&gt;Sorry for reply so late ！Actually the setting&amp;nbsp; of&amp;nbsp;&lt;SPAN&gt;interrupt priority used by FreeRTOS in Project is OK!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="issta_0-1651804463537.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/178959iA9B20972E799D86A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="issta_0-1651804463537.png" alt="issta_0-1651804463537.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;But&amp;nbsp;enable configASSERT() function maybe the sources of the error! I need some more times to check or prove it...&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 02:41:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/Send-Data-using-Blocking-method-within-FreeRTOS-Fail/m-p/1453863#M2518</guid>
      <dc:creator>issta</dc:creator>
      <dc:date>2022-05-06T02:41:35Z</dc:date>
    </item>
  </channel>
</rss>

