<?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>S32 SDKのトピックRe: S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
    <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873554#M883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Rx callback installed with DMA receive and transfer,&amp;nbsp; use RTM 3.0.0 SDK&amp;nbsp;&amp;nbsp; lpuart0. &amp;nbsp; but&amp;nbsp; in work ,&amp;nbsp; always&amp;nbsp; triggers a STATUS_UART_FRAME_ERROR interrupt,&amp;nbsp; and Stop&amp;nbsp; DMA receive,&amp;nbsp;&amp;nbsp; so&amp;nbsp; the&amp;nbsp; application receive data length have a errror。&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Nov 2019 05:25:49 GMT</pubDate>
    <dc:creator>wjandsq</dc:creator>
    <dc:date>2019-11-29T05:25:49Z</dc:date>
    <item>
      <title>S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
      <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873549#M878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a interrupt driven UART inplementation (code is running on S32K144EVB-Q100, SDK version is 2.0.0 and I'm using regular lpuart driver, not pal or flexio) in which I need to look at each received byte, as they arrive. Thus, I use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Get last transfer status */&lt;BR /&gt;result = LPUART_DRV_GetReceiveStatus(INST_UART, NULL);&lt;BR /&gt;if (STATUS_SUCCESS == result)&lt;BR /&gt;{&lt;BR /&gt;/* Execute send non-blocking */&lt;BR /&gt;LPUART_DRV_ReceiveData(INST_UART, inst_datum, 1U);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...where "inst_datum" is a one-byte buffer.&lt;/P&gt;&lt;P&gt;Also, I have a Rx callback installed which retrieves the content o inst_datum and calls the Rx code above for next byte reception.&lt;/P&gt;&lt;P&gt;It works, as far as the bytes arrival rate is not too high. If bytes arrival gets too fast, lpuart triggers a STATUS_UART_NOISE_ERROR interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both clock and lpuart configurations are default, as suggested suggested by S32DS for ARM&amp;nbsp;2018.R1 / SDK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any hints?&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Joao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2019 13:34:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873549#M878</guid>
      <dc:creator>Joao_Roscoe</dc:creator>
      <dc:date>2019-03-20T13:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
      <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873550#M879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Joao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked the lpuart_echo example. The example used by default the SIRCDIV2_CLK&amp;nbsp;as the clock source.&lt;/P&gt;&lt;P&gt;You can try to select the fastest clock source for the LPUART and set the higher priority of LPUART interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is your Baudrate setting?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I would like to mention that the new SDK version is available:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-342805"&gt;S32 Design Studio for ARM 2018.R1 - Update 9 available&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2019 12:34:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873550#M879</guid>
      <dc:creator>dianabatrlova</dc:creator>
      <dc:date>2019-03-21T12:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
      <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873551#M880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, changing the clock source improved the BAUD rate gereration accuracy, and I'm not getting errors anymore, thank you.&lt;/P&gt;&lt;P&gt;About that: what would be the advantage of keeping with the slower, default clock source? Lower power consumption?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I took the opportunity to update S32DS, to get the new SDK version, since it's now a RTM version. Next step would be updating project properties, to use the new SDK, right?&lt;/P&gt;&lt;P&gt;Do you have any hints about how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Joao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2019 17:40:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873551#M880</guid>
      <dc:creator>Joao_Roscoe</dc:creator>
      <dc:date>2019-04-12T17:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
      <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873552#M881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Joao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to apologize for the delay.&lt;/P&gt;&lt;P&gt;Yes, with a slower clock source will be lower power consumption.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to use new SDK version in the project the fastest way is to create a new application project and there choose the newest SDK version.&lt;/P&gt;&lt;P&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/73043iA9E046D44E037779/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 16:23:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873552#M881</guid>
      <dc:creator>dianabatrlova</dc:creator>
      <dc:date>2019-04-17T16:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
      <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873553#M882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;"...t&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;he fastest way is to create a new application project and there choose the newest SDK version"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nice.&lt;/P&gt;&lt;P&gt;Is there any easy way to import project settings, like port settings, paths, and so on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Joao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 May 2019 18:34:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873553#M882</guid>
      <dc:creator>Joao_Roscoe</dc:creator>
      <dc:date>2019-05-02T18:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 interrupt based UART: STATUS_UART_NOISE_ERROR</title>
      <link>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873554#M883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Rx callback installed with DMA receive and transfer,&amp;nbsp; use RTM 3.0.0 SDK&amp;nbsp;&amp;nbsp; lpuart0. &amp;nbsp; but&amp;nbsp; in work ,&amp;nbsp; always&amp;nbsp; triggers a STATUS_UART_FRAME_ERROR interrupt,&amp;nbsp; and Stop&amp;nbsp; DMA receive,&amp;nbsp;&amp;nbsp; so&amp;nbsp; the&amp;nbsp; application receive data length have a errror。&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Nov 2019 05:25:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/S32K144-interrupt-based-UART-STATUS-UART-NOISE-ERROR/m-p/873554#M883</guid>
      <dc:creator>wjandsq</dc:creator>
      <dc:date>2019-11-29T05:25:49Z</dc:date>
    </item>
  </channel>
</rss>

