<?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: Does KEA128 support DMA, I need a UART DMA sample in Kinetis Design Studio</title>
    <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725281#M9366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yang, I think it's not practical which PE does is that OnBlockReceived event require we have to know that the number to be receive. And the polling method may lost frame if receiving loop slow.&lt;/P&gt;&lt;P&gt;What I need is that:&lt;/P&gt;&lt;P&gt;1, if block sending finished, there's interrupt to notify me, then I can set transmit finish flag(or call it transmit idle).&lt;/P&gt;&lt;P&gt;2, when receiving, I want to avoid RX interrupt on each receive byte in interrupt mode which is low efficient, OR receiving byte maybe lost in polling mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 May 2018 08:37:13 GMT</pubDate>
    <dc:creator>vaughn</dc:creator>
    <dc:date>2018-05-29T08:37:13Z</dc:date>
    <item>
      <title>Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725277#M9362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's no DMA description on KEA128 RM, is this mean no DMA support on KEA128?&lt;/P&gt;&lt;P&gt;If it support DMA, do anybody give an UART DMA transmit/receive sample? I want to implement a receive with an idle interrupt, transmit with any length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2018 00:57:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725277#M9362</guid>
      <dc:creator>vaughn</dc:creator>
      <dc:date>2018-05-28T00:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725278#M9363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Yes, it doesn't support DMA .&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;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2018 06:51:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725278#M9363</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-05-28T06:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725279#M9364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Yang.&lt;/P&gt;&lt;P&gt;I want to minimize the RX/TX interrupt number, some thing just like DMA do: &lt;/P&gt;&lt;P&gt;1), when TX data finished, an interrupt to notify me that, it finished, then i could update user defined TX finished status, and&lt;/P&gt;&lt;P&gt;2), when RX line is idle, an interrupt to notify me that, there's no more data.&lt;/P&gt;&lt;P&gt;I do not know is this robust?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following file is KEA128's UART driver and Events.c, i want to optimize it if possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2018 12:22:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725279#M9364</guid>
      <dc:creator>vaughn</dc:creator>
      <dc:date>2018-05-28T12:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725280#M9365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi xiaofeng,&lt;/P&gt;&lt;P&gt;Do you meaning do not use interrrupt . Yes, you can also use polling mode ,&lt;/P&gt;&lt;P&gt;check the TX/RX flag status . There is also the polling demo under Typical Usage:&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/8492iB90952AC529650C0/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;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 07:32:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725280#M9365</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-05-29T07:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725281#M9366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yang, I think it's not practical which PE does is that OnBlockReceived event require we have to know that the number to be receive. And the polling method may lost frame if receiving loop slow.&lt;/P&gt;&lt;P&gt;What I need is that:&lt;/P&gt;&lt;P&gt;1, if block sending finished, there's interrupt to notify me, then I can set transmit finish flag(or call it transmit idle).&lt;/P&gt;&lt;P&gt;2, when receiving, I want to avoid RX interrupt on each receive byte in interrupt mode which is low efficient, OR receiving byte maybe lost in polling mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 08:37:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725281#M9366</guid>
      <dc:creator>vaughn</dc:creator>
      <dc:date>2018-05-29T08:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725282#M9367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And the other reason I need RX idle interrupt is that, there's a senari is that, the receiving data length unknown.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 17:48:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725282#M9367</guid>
      <dc:creator>vaughn</dc:creator>
      <dc:date>2018-05-29T17:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725283#M9368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Sorry , I'm afraid&amp;nbsp; I don't know what's your problem now .&lt;/P&gt;&lt;P&gt;I recommend you first write your code , then debug , check whether&amp;nbsp; it can work well&lt;/P&gt;&lt;P&gt;as your requirement . Then you can show the detail question when there is problem .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Alice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 03:30:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725283#M9368</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-05-30T03:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Does KEA128 support DMA, I need a UART DMA sample</title>
      <link>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725284#M9369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Yang.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 05:02:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Design-Studio/Does-KEA128-support-DMA-I-need-a-UART-DMA-sample/m-p/725284#M9369</guid>
      <dc:creator>vaughn</dc:creator>
      <dc:date>2018-05-30T05:02:49Z</dc:date>
    </item>
  </channel>
</rss>

