<?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>S32KのトピックRe: s32k312 uart</title>
    <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2090300#M48367</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/238047"&gt;@fengba_360&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;No worries! I'm glad the issue was resolved.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
    <pubDate>Wed, 30 Apr 2025 15:18:51 GMT</pubDate>
    <dc:creator>Julián_AragónM</dc:creator>
    <dc:date>2025-04-30T15:18:51Z</dc:date>
    <item>
      <title>s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084782#M48009</link>
      <description>&lt;P&gt;Dear NXP engineer, I have a few questions about using the serial port on the S32K312 microcontroller. In my scenario, the host computer continuously sends multiple bytes of varying lengths. When I receive data in the serial port interrupt, should I receive byte by byte or multiple bytes at a time? Is the serial port receive interrupt triggered when the FIFO receives 1 byte or when the FIFO is full? How should I design my software buffer? Please help guide me. Below is my code within the interrupt：&lt;/P&gt;&lt;DIV&gt;void UART_event_cbk(const uint8 HwInstance, const Lpuart_Uart_Ip_EventType Event, void *UserData)&lt;/DIV&gt;&lt;DIV&gt;{&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(void) UserData;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;uint32_t remainingBytes;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;uint8_t status;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if(HwInstance == UART_LPUART_INTERNAL_CHANNEL_4)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if(Lpuart_Uart_Ip_GetReceiveStatus(HwInstance, &amp;amp;remainingBytes)!= LPUART_UART_IP_STATUS_BUSY )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;status = Lpuart_Uart_Ip_GetReceiveStatus(HwInstance, &amp;amp;remainingBytes); //串口数据接收成功&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if(status == LPUART_UART_IP_STATUS_SUCCESS)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/* 为接收到的字符串添加终止符 */&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;bufferIdx++;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;uart_triger = 1;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;rx_data_uart[bufferIdx] = 0U;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/* 将接收缓存文件复制到rxdata数组 */&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;memcpy(rxdata,rx_data_uart,bufferIdx);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;memset(rx_data_uart,0,sizeof(rx_data_uart));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/* Reset the buffer index to start a new reception */&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;bufferIdx = 0U;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;/*完成操作后清除中断标志位并重新开始接收串口数据*/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Lpuart_Uart_Ip_AsyncReceive(HwInstance, (uint8_t*)rx_data_uart, 1u);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;else&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//error handle&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; Lpuart_Uart_Ip_AsyncReceive(HwInstance, (uint8_t*)rx_data_uart, 1u);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; bufferIdx = 0;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; /*串口接收缓存满事件*/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if(Event==LPUART_UART_IP_EVENT_RX_FULL)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 检查是否为换行符且缓冲区未满&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (rx_data_uart[bufferIdx] == '\n')&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 触发立即处理&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; uart_triger = 1;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if (bufferIdx &amp;lt; (sizeof(rx_data_uart) - 2)) // 预留空间给终止符&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bufferIdx++;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Lpuart_Uart_Ip_SetRxBuffer(HwInstance, &amp;amp;rx_data_uart[bufferIdx], 1);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 缓冲区满但未收到换行符，处理或重置&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; uart_triger = 1; // 强制处理&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bufferIdx = 0;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;</description>
      <pubDate>Tue, 22 Apr 2025 15:52:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084782#M48009</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-22T15:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084918#M48018</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/238047"&gt;@fengba_360&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;When I receive data in the serial port interrupt, should I receive byte by byte or multiple bytes at a time?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;This is based on your implementation. You can either wait for a multiple byte reception or receive byte by byte.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt; Is the serial port receiving interrupt triggered when the FIFO receives 1 byte or when the FIFO is full? How should I design my software buffer?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The uart callback is entered whenever the FIFO receives 1 byte, but you can wait until the FIFO is full with the events (&lt;SPAN&gt;LPUART_UART_IP_EVENT_RX_FULL). When the buffer is full, you can use&amp;nbsp;Lpuart_Uart_Ip_SetRxBuffer() to update the buffer and keep receiving.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please look at the attached example. It configures UART6 to receive 1 byte at a time and waits for the end line character ('\n') or until the buffer is full to echo the received characters to the terminal.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 22:17:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084918#M48018</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-04-22T22:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084962#M48023</link>
      <description>When 1 byte is received, which event is triggered to invoke the callback?</description>
      <pubDate>Wed, 23 Apr 2025 01:09:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084962#M48023</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-23T01:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084963#M48024</link>
      <description>&lt;P&gt;When 1 byte is received, which event is triggered to invoke the callback?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 01:13:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2084963#M48024</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-23T01:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2085577#M48071</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/238047"&gt;@fengba_360&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I apologize; I got confused. The callback is only entered when the buffer is full. I configured the buffer for 1 byte and thus entered the callback on 1 byte only.&lt;/P&gt;
&lt;P&gt;You can see the events declared in the Lpuart_Uart_Ip_Types.h file:&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;LPUART_UART_IP_EVENT_RX_FULL = 0x00U, /**&amp;lt; @brief Rx buffer is full */&lt;/LI&gt;
&lt;LI&gt;LPUART_UART_IP_EVENT_TX_EMPTY = 0x01U, /**&amp;lt; @brief Tx buffer is empty */&lt;/LI&gt;
&lt;LI&gt;LPUART_UART_IP_EVENT_END_TRANSFER = 0x02U, /**&amp;lt; @brief The current transfer is ending */&lt;/LI&gt;
&lt;LI&gt;LPUART_UART_IP_EVENT_ERROR = 0x03U, /**&amp;lt; @brief An error occured during transfer */&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 15:45:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2085577#M48071</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-04-23T15:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2086080#M48084</link>
      <description>&lt;P&gt;Where is this 1-byte buffer configured? Is it in this function: Lpuart_Uart_Ip_AsyncReceive(UART_LPUART_INTERNAL_CHANNEL, buffer, 1U)? For example, if I configure it as 2 bytes here, will receiving 2 bytes trigger the callback due to the PUART_UART_IP_EVENT_RX_FULL event? Or does it involve the FIFO exceeding 4 bytes? I'm a bit confused about this.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 01:32:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2086080#M48084</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-24T01:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2086794#M48135</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/238047"&gt;@fengba_360&lt;/a&gt;.,&lt;/P&gt;
&lt;P&gt;You are correct, it is configured inside the AsyncReceive function with the&amp;nbsp;&lt;SPAN&gt;1U parameter.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;if I configure it as 2 bytes here, will receiving 2 bytes trigger the callback due to the PUART_UART_IP_EVENT_RX_FULL event?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Yes. You can see in the project I've shared, when configured for 1 byte, the callback is entered with event RX_FULL when 1 byte is received.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 17:14:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2086794#M48135</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-04-24T17:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2087749#M48200</link>
      <description>&lt;P&gt;When I initialize using the following code, the MCU enters a HardFault. Could this be caused by an incorrect initialization method?&lt;/P&gt;&lt;P&gt;void lpuart_Init(void)&lt;BR /&gt;{&lt;BR /&gt;Lpuart_Uart_Ip_Init(UART_LPUART_INTERNAL_CHANNEL_4, &amp;amp;Lpuart_Uart_Ip_xHwConfigPB_4);&lt;BR /&gt;IntCtrl_Ip_EnableIrq(LPUART4_IRQn);&lt;BR /&gt;IntCtrl_Ip_InstallHandler(LPUART4_IRQn, LPUART_UART_IP_4_IRQHandler, NULL_PTR);&lt;BR /&gt;Lpuart_Uart_Ip_AsyncReceive(UART_LPUART_INTERNAL_CHANNEL_4, (uint8_t*)rx_data_uart, 1u);&lt;BR /&gt;}&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="微信图片_20250427171343.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335051iCF5764CC7E3B679C/image-size/large?v=v2&amp;amp;px=999" role="button" title="微信图片_20250427171343.png" alt="微信图片_20250427171343.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="微信图片_20250427171303.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335050iE0C0093205B986A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="微信图片_20250427171303.png" alt="微信图片_20250427171303.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Apr 2025 09:14:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2087749#M48200</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-27T09:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2087754#M48201</link>
      <description>&lt;P&gt;When I debugged, the system enters a HardFault error upon executing this specific line of code.&lt;/P&gt;&lt;P&gt;/* Clear the error/interrupt flags */&lt;BR /&gt;Base-&amp;gt;STAT = LPUART_FEATURE_STAT_REG_FLAGS_MASK;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Apr 2025 09:26:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2087754#M48201</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-27T09:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2088710#M48255</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/238047"&gt;@fengba_360&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I can see you have the POWER module included in your project. Do you have the LPUART4 peripheral clock enabled for the mode you are using?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julin_AragnM_0-1745877820293.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335335iCF9EE9E0A2154156/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_0-1745877820293.png" alt="Julin_AragnM_0-1745877820293.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Julin_AragnM_1-1745877835100.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/335336i5B9B9F157B426CAB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Julin_AragnM_1-1745877835100.png" alt="Julin_AragnM_1-1745877835100.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 22:04:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2088710#M48255</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-04-28T22:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2089962#M48334</link>
      <description>&lt;P&gt;You're absolutely right—it's indeed not enabled here. My apologies, I’ve been tied up with the project over the past few days and didn’t reply in a timely manner.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 07:29:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2089962#M48334</guid>
      <dc:creator>fengba_360</dc:creator>
      <dc:date>2025-04-30T07:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: s32k312 uart</title>
      <link>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2090300#M48367</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/238047"&gt;@fengba_360&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;No worries! I'm glad the issue was resolved.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 15:18:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k312-uart/m-p/2090300#M48367</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-04-30T15:18:51Z</dc:date>
    </item>
  </channel>
</rss>

