<?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: LPUART_RS485</title>
    <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891536#M4290</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to enable local echo within terminal tool or you should send receive byte back to display it on terminal window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding&amp;nbsp;LPUART_DRV_IRQHandler; seems you are using some older SDk version as in the latest SDK RTM 3.0.0 the&amp;nbsp;LPUART_DRV_ReceiveData is not called from interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 May 2019 05:54:25 GMT</pubDate>
    <dc:creator>PetrS</dc:creator>
    <dc:date>2019-05-15T05:54:25Z</dc:date>
    <item>
      <title>LPUART_RS485</title>
      <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891534#M4288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing uart tx and rx using RS485,In that i can able to tx and rx but in putty entering char is not displayed.What is the problem??like if i press 'a' its receiving in debug session , but it not dispalyed in putty.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 May 2019 06:58:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891534#M4288</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-14T06:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: LPUART_RS485</title>
      <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891535#M4289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why LPUART_RECEIVE function is also used in driver code,what is the reason???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void LPUART_DRV_IRQHandler(uint32_t instance)&lt;BR /&gt;{&lt;BR /&gt; DEV_ASSERT(instance &amp;lt; LPUART_INSTANCE_COUNT);&lt;/P&gt;&lt;P&gt;lpuart_state_t * lpuartState = (lpuart_state_t *)s_lpuartStatePtr[instance];&lt;BR /&gt; LPUART_Type * base = s_lpuartBase[instance];&lt;/P&gt;&lt;P&gt;/* Exit the ISR if no transfer is happening for this instance. */&lt;BR /&gt; if (!lpuartState-&amp;gt;isTxBusy)&lt;BR /&gt; {&lt;BR /&gt; if (!lpuartState-&amp;gt;isRxBusy)&lt;BR /&gt; {&lt;BR /&gt; return;&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle receive data full interrupt */&lt;BR /&gt; if (LPUART_GetIntMode(base, LPUART_INT_RX_DATA_REG_FULL))&lt;BR /&gt; {&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_RX_DATA_REG_FULL))&lt;BR /&gt; {&lt;BR /&gt; /* Invoke callback if there is one */&lt;BR /&gt; if (lpuartState-&amp;gt;rxCallback != NULL)&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;rxCallback(lpuartState, UART_EVENT_RX_FULL, lpuartState-&amp;gt;rxCallbackParam);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; /* Get data and put in receive buffer */&lt;BR /&gt; LPUART_DRV_GetData(instance);&lt;/P&gt;&lt;P&gt;/* Update the internal state */&lt;BR /&gt; if (lpuartState-&amp;gt;bitCountPerChar == LPUART_8_BITS_PER_CHAR)&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; --lpuartState-&amp;gt;rxSize;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; lpuartState-&amp;gt;rxSize -= 2U;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Finish reception if this was the last byte received */&lt;BR /&gt; if (lpuartState-&amp;gt;rxSize == 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Complete transfer, will disable rx interrupt */&lt;BR /&gt; LPUART_DRV_CompleteReceiveDataUsingInt(instance);&lt;BR /&gt; &lt;STRONG&gt;LPUART_DRV_ReceiveData(1,&amp;amp;rxbuff,1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle transmitter data register empty interrupt */&lt;BR /&gt; if (LPUART_GetIntMode(base, LPUART_INT_TX_DATA_REG_EMPTY))&lt;BR /&gt; {&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_TX_DATA_REG_EMPTY))&lt;BR /&gt; {&lt;BR /&gt; /* Check if there are any more bytes to send */&lt;BR /&gt; if (lpuartState-&amp;gt;txSize &amp;gt; 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Invoke callback if there is one */&lt;BR /&gt; if (lpuartState-&amp;gt;txCallback != NULL)&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;txCallback(lpuartState, UART_EVENT_TX_EMPTY, lpuartState-&amp;gt;txCallbackParam);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; /* Transmit the data */&lt;BR /&gt; LPUART_DRV_PutData(instance);&lt;/P&gt;&lt;P&gt;/* Update the internal state */&lt;BR /&gt; if (lpuartState-&amp;gt;bitCountPerChar == LPUART_8_BITS_PER_CHAR)&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; --lpuartState-&amp;gt;txSize;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; lpuartState-&amp;gt;txSize -= 2U;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Finish the transmission if this was the last byte */&lt;BR /&gt; if (lpuartState-&amp;gt;txSize == 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Complete transfer, will disable tx interrupt */&lt;BR /&gt; LPUART_DRV_CompleteSendDataUsingInt(instance);&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle receive overrun interrupt */&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_RX_OVERRUN))&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;receiveStatus = STATUS_UART_RX_OVERRUN;&lt;BR /&gt; /* Clear the flag, OR the rxDataRegFull will not be set any more */&lt;BR /&gt; (void)LPUART_ClearStatusFlag(base, LPUART_RX_OVERRUN);&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;void LPUART_DRV_IRQHandler(uint32_t instance)&lt;BR /&gt;{&lt;BR /&gt; DEV_ASSERT(instance &amp;lt; LPUART_INSTANCE_COUNT);&lt;/P&gt;&lt;P&gt;lpuart_state_t * lpuartState = (lpuart_state_t *)s_lpuartStatePtr[instance];&lt;BR /&gt; LPUART_Type * base = s_lpuartBase[instance];&lt;/P&gt;&lt;P&gt;/* Exit the ISR if no transfer is happening for this instance. */&lt;BR /&gt; if (!lpuartState-&amp;gt;isTxBusy)&lt;BR /&gt; {&lt;BR /&gt; if (!lpuartState-&amp;gt;isRxBusy)&lt;BR /&gt; {&lt;BR /&gt; return;&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle receive data full interrupt */&lt;BR /&gt; if (LPUART_GetIntMode(base, LPUART_INT_RX_DATA_REG_FULL))&lt;BR /&gt; {&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_RX_DATA_REG_FULL))&lt;BR /&gt; {&lt;BR /&gt; /* Invoke callback if there is one */&lt;BR /&gt; if (lpuartState-&amp;gt;rxCallback != NULL)&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;rxCallback(lpuartState, UART_EVENT_RX_FULL, lpuartState-&amp;gt;rxCallbackParam);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; /* Get data and put in receive buffer */&lt;BR /&gt; LPUART_DRV_GetData(instance);&lt;/P&gt;&lt;P&gt;/* Update the internal state */&lt;BR /&gt; if (lpuartState-&amp;gt;bitCountPerChar == LPUART_8_BITS_PER_CHAR)&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; --lpuartState-&amp;gt;rxSize;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; lpuartState-&amp;gt;rxSize -= 2U;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Finish reception if this was the last byte received */&lt;BR /&gt; if (lpuartState-&amp;gt;rxSize == 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Complete transfer, will disable rx interrupt */&lt;BR /&gt; LPUART_DRV_CompleteReceiveDataUsingInt(instance);&lt;BR /&gt; LPUART_DRV_ReceiveData(1,&amp;amp;rxbuff,1);&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle transmitter data register empty interrupt */&lt;BR /&gt; if (LPUART_GetIntMode(base, LPUART_INT_TX_DATA_REG_EMPTY))&lt;BR /&gt; {&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_TX_DATA_REG_EMPTY))&lt;BR /&gt; {&lt;BR /&gt; /* Check if there are any more bytes to send */&lt;BR /&gt; if (lpuartState-&amp;gt;txSize &amp;gt; 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Invoke callback if there is one */&lt;BR /&gt; if (lpuartState-&amp;gt;txCallback != NULL)&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;txCallback(lpuartState, UART_EVENT_TX_EMPTY, lpuartState-&amp;gt;txCallbackParam);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; /* Transmit the data */&lt;BR /&gt; LPUART_DRV_PutData(instance);&lt;/P&gt;&lt;P&gt;/* Update the internal state */&lt;BR /&gt; if (lpuartState-&amp;gt;bitCountPerChar == LPUART_8_BITS_PER_CHAR)&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; --lpuartState-&amp;gt;txSize;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; lpuartState-&amp;gt;txSize -= 2U;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Finish the transmission if this was the last byte */&lt;BR /&gt; if (lpuartState-&amp;gt;txSize == 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Complete transfer, will disable tx interrupt */&lt;BR /&gt; LPUART_DRV_CompleteSendDataUsingInt(instance);&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle receive overrun interrupt */&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_RX_OVERRUN))&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;receiveStatus = STATUS_UART_RX_OVERRUN;&lt;BR /&gt; /* Clear the flag, OR the rxDataRegFull will not be set any more */&lt;BR /&gt; (void)LPUART_ClearStatusFlag(base, LPUART_RX_OVERRUN);&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;void LPUART_DRV_IRQHandler(uint32_t instance)&lt;BR /&gt;{&lt;BR /&gt; DEV_ASSERT(instance &amp;lt; LPUART_INSTANCE_COUNT);&lt;/P&gt;&lt;P&gt;lpuart_state_t * lpuartState = (lpuart_state_t *)s_lpuartStatePtr[instance];&lt;BR /&gt; LPUART_Type * base = s_lpuartBase[instance];&lt;/P&gt;&lt;P&gt;/* Exit the ISR if no transfer is happening for this instance. */&lt;BR /&gt; if (!lpuartState-&amp;gt;isTxBusy)&lt;BR /&gt; {&lt;BR /&gt; if (!lpuartState-&amp;gt;isRxBusy)&lt;BR /&gt; {&lt;BR /&gt; return;&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle receive data full interrupt */&lt;BR /&gt; if (LPUART_GetIntMode(base, LPUART_INT_RX_DATA_REG_FULL))&lt;BR /&gt; {&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_RX_DATA_REG_FULL))&lt;BR /&gt; {&lt;BR /&gt; /* Invoke callback if there is one */&lt;BR /&gt; if (lpuartState-&amp;gt;rxCallback != NULL)&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;rxCallback(lpuartState, UART_EVENT_RX_FULL, lpuartState-&amp;gt;rxCallbackParam);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; /* Get data and put in receive buffer */&lt;BR /&gt; LPUART_DRV_GetData(instance);&lt;/P&gt;&lt;P&gt;/* Update the internal state */&lt;BR /&gt; if (lpuartState-&amp;gt;bitCountPerChar == LPUART_8_BITS_PER_CHAR)&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; --lpuartState-&amp;gt;rxSize;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; ++lpuartState-&amp;gt;rxBuff;&lt;BR /&gt; lpuartState-&amp;gt;rxSize -= 2U;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Finish reception if this was the last byte received */&lt;BR /&gt; if (lpuartState-&amp;gt;rxSize == 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Complete transfer, will disable rx interrupt */&lt;BR /&gt; LPUART_DRV_CompleteReceiveDataUsingInt(instance);&lt;BR /&gt; LPUART_DRV_ReceiveData(1,&amp;amp;rxbuff,1);&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle transmitter data register empty interrupt */&lt;BR /&gt; if (LPUART_GetIntMode(base, LPUART_INT_TX_DATA_REG_EMPTY))&lt;BR /&gt; {&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_TX_DATA_REG_EMPTY))&lt;BR /&gt; {&lt;BR /&gt; /* Check if there are any more bytes to send */&lt;BR /&gt; if (lpuartState-&amp;gt;txSize &amp;gt; 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Invoke callback if there is one */&lt;BR /&gt; if (lpuartState-&amp;gt;txCallback != NULL)&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;txCallback(lpuartState, UART_EVENT_TX_EMPTY, lpuartState-&amp;gt;txCallbackParam);&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; /* Transmit the data */&lt;BR /&gt; LPUART_DRV_PutData(instance);&lt;/P&gt;&lt;P&gt;/* Update the internal state */&lt;BR /&gt; if (lpuartState-&amp;gt;bitCountPerChar == LPUART_8_BITS_PER_CHAR)&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; --lpuartState-&amp;gt;txSize;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; ++lpuartState-&amp;gt;txBuff;&lt;BR /&gt; lpuartState-&amp;gt;txSize -= 2U;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Finish the transmission if this was the last byte */&lt;BR /&gt; if (lpuartState-&amp;gt;txSize == 0U)&lt;BR /&gt; {&lt;BR /&gt; /* Complete transfer, will disable tx interrupt */&lt;BR /&gt; LPUART_DRV_CompleteSendDataUsingInt(instance);&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;/* Handle receive overrun interrupt */&lt;BR /&gt; if (LPUART_GetStatusFlag(base, LPUART_RX_OVERRUN))&lt;BR /&gt; {&lt;BR /&gt; lpuartState-&amp;gt;receiveStatus = STATUS_UART_RX_OVERRUN;&lt;BR /&gt; /* Clear the flag, OR the rxDataRegFull will not be set any more */&lt;BR /&gt; (void)LPUART_ClearStatusFlag(base, LPUART_RX_OVERRUN);&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 04:47:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891535#M4289</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-15T04:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: LPUART_RS485</title>
      <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891536#M4290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to enable local echo within terminal tool or you should send receive byte back to display it on terminal window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding&amp;nbsp;LPUART_DRV_IRQHandler; seems you are using some older SDk version as in the latest SDK RTM 3.0.0 the&amp;nbsp;LPUART_DRV_ReceiveData is not called from interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 05:54:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891536#M4290</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2019-05-15T05:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: LPUART_RS485</title>
      <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891537#M4291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks , but if i use LPUART_RECVE function in driver code then only receiving data is working . if i remove that function in driver code only in main function its not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 06:18:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891537#M4291</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-15T06:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPUART_RS485</title>
      <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891538#M4292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the SDK version you use? I would strongly recommend to use the latest one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 06:36:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891538#M4292</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2019-05-15T06:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: LPUART_RS485</title>
      <link>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891539#M4293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I m using&amp;nbsp;S32SDK_S32K14x_EAR_0.8.6 (S32K144_64)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 09:14:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/LPUART-RS485/m-p/891539#M4293</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-15T09:14:21Z</dc:date>
    </item>
  </channel>
</rss>

