<?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: Receiving multiple bytes with LPUART0 interrupt</title>
    <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724646#M1749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jing Yin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestions work!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Fri, Feb 15, 2019 at 11:07 AM jingyinwong &amp;lt;admin@community.nxp.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Feb 2019 17:22:41 GMT</pubDate>
    <dc:creator>klau</dc:creator>
    <dc:date>2019-02-15T17:22:41Z</dc:date>
    <item>
      <title>Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724642#M1745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi NXP Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am developing an application that is able to receive multiple bytes with variable length randomly through LPUART0. I modified the LPUART sample code as follows. Baud rate is 115200 with interrupt enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;void LPUART0_RxTx_IRQHandler (void) {&lt;/STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;uint8_t recieve;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Clear interrupt flag */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART0-&amp;gt;STAT = LPUART0-&amp;gt;STAT | 0x40000000;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;while((LPUART0-&amp;gt;STAT &amp;amp; LPUART_STAT_RDRF_MASK)&amp;gt;&amp;gt;LPUART_STAT_RDRF_SHIFT==0);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;/* Wait for received buffer to be full */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;recieve= LPUART0-&amp;gt;DATA; /* Read received data*/&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; }&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;int main(void) {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Configure PTC2 and PTC3 as LPUART0 RX and TX */&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;PINS_DRV_Init(NUM_OF_CONFIGURED_PINS, g_pin_mux_InitConfigArr);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;INT_SYS_EnableIRQ(LPUART0_RxTx_IRQn);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;INT_SYS_SetPriority(LPUART0_RxTx_IRQn, 10U);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;STRONG&gt;PCC-&amp;gt;PCCn[PCC_LPUART0_INDEX] &amp;amp;= ~PCC_PCCn_CGC_MASK; /* Ensure clk disabled for config */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;PCC-&amp;gt;PCCn[PCC_LPUART0_INDEX] |= PCC_PCCn_PCS(0b001) /* Clock Src= 1 (SOSCDIV2_CLK) */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;| PCC_PCCn_CGC_MASK; /* Enable clock for LPUART1 regs */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART0-&amp;gt;BAUD = 0x16000003;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART0-&amp;gt;CTRL=0x02C0000; /* Enable receive interrupt */&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;for(;;){&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;/* Wait for the receive interrupt to get triggered */&lt;/STRONG&gt;&lt;BR /&gt; &lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found that the interrupt could be triggered but I couldn't receive the right number of bytes with such implementation. For example, if 6 bytes were sent, I could only receive 2 bytes. That means "LPUART0_RxTx_IRQHandler" triggered 2 times continuously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The API code (LPUART_DRV_ReceiveDataBlocking) was able to receive all the data sent but it requires a fix buffer size as an input parameter. Also, as the timing of receiving the data is random, I could not simply call "&lt;SPAN&gt;LPUART_DRV_ReceiveDataBlocking" function in my program and I have to write another function with interrupt enabled.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please advice on how to receive multiple bytes (register settings etc.) with LPUART0 interrupt enabled. For example,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;void LPUART0_RxTx_IRQHandler (void) {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp;/* receive 1st byte */&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;first_byte = LPUART0-&amp;gt;DATA;&amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp;if (first_byte == 1) {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; /* receive the remaining 1 bytes */&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;} else if (first_byte == 2) {&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; /* receive the remaining 2 bytes */&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jing Yin&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2018 02:24:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724642#M1745</guid>
      <dc:creator>jingyinwong</dc:creator>
      <dc:date>2018-04-12T02:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724643#M1746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt;Could you check error flags like STAT[OR] Receiver Overrun Flag.&lt;BR /&gt;Have you considered using FIFO (FIFO[RXFE]). The interrupt is then called when a certain number of datawords (specified in WATER[RXWATER]) has been already received. &lt;BR /&gt;Unfortunately, we don’t have any example for this use case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2018 13:14:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724643#M1746</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2018-04-19T13:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724644#M1747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jing,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not make RxIsr() on UART0 work. Here is my post,&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/495613"&gt;LPUART0_RxTx_IRQHandler&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you give me hint(s) or share some codes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2019 16:46:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724644#M1747</guid>
      <dc:creator>klau</dc:creator>
      <dc:date>2019-02-14T16:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724645#M1748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you try the following?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;void LPUART0_NVIC_init_IRQs(void)&lt;BR /&gt;{&lt;BR /&gt;S32_NVIC-&amp;gt;ICPR[1] = 1 &amp;lt;&amp;lt; (31 % 32); /* IRQ31: clr any pending IRQ*/&lt;BR /&gt;S32_NVIC-&amp;gt;ISER[1] = 1 &amp;lt;&amp;lt; (31 % 32); /* IRQ31: enable IRQ */&lt;BR /&gt;S32_NVIC-&amp;gt;IP[31] = 0xA; /* IRQ31: priority 10 of 0-15*/&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;}&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Change "&lt;SPAN&gt;ICPR[1]" to "&lt;SPAN style="background-color: #ffffff;"&gt;ICPR[0]" and "ISER[1]" to "ISER[0]".&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/72306i28E18C4B9769022F/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;2. LPUART0 control register setting for your reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;LPUART0-&amp;gt;CTRL=0x002C0000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;Hope this helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;Thanks and regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background-color: #ffffff; "&gt;Jing Yin&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2019 00:49:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724645#M1748</guid>
      <dc:creator>jingyinwong</dc:creator>
      <dc:date>2019-02-15T00:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724646#M1749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jing Yin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestions work!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Fri, Feb 15, 2019 at 11:07 AM jingyinwong &amp;lt;admin@community.nxp.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2019 17:22:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724646#M1749</guid>
      <dc:creator>klau</dc:creator>
      <dc:date>2019-02-15T17:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724647#M1750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/jingyinwong"&gt;jingyinwong&lt;/A&gt;‌&lt;A href="https://community.nxp.com/space/11492"&gt;S32K&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;CAN you share your project with LPUART INTURRUPT . I&amp;nbsp;have the same problem。&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2019 05:44:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724647#M1750</guid>
      <dc:creator>liuweiliang</dc:creator>
      <dc:date>2019-03-04T05:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724648#M1751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/liuweiliang"&gt;liuweiliang&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to the attachment named "LPUART.ZIP" that can be found in the following thread.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/463166"&gt;https://community.nxp.com/thread/463166&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Jing Yin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2019 09:00:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724648#M1751</guid>
      <dc:creator>jingyinwong</dc:creator>
      <dc:date>2019-03-04T09:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724649#M1752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;3q very much!&lt;/P&gt;&lt;P&gt;I tried the link you provided.it's can work.&lt;/P&gt;&lt;P&gt;I want to develop based on the SDK model. In my proram ,it can send,But can't receive data by interrupt . &lt;/P&gt;&lt;P&gt;Do your have SDK-based project about LPUART?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2019 09:55:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724649#M1752</guid>
      <dc:creator>liuweiliang</dc:creator>
      <dc:date>2019-03-04T09:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Receiving multiple bytes with LPUART0 interrupt</title>
      <link>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724650#M1753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you provide me with the name of the SDK model?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2019 02:00:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Receiving-multiple-bytes-with-LPUART0-interrupt/m-p/724650#M1753</guid>
      <dc:creator>jingyinwong</dc:creator>
      <dc:date>2019-03-05T02:00:13Z</dc:date>
    </item>
  </channel>
</rss>

