<?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: EDMA cannot be aborted anymore in i.MX RT Crossover MCUs</title>
    <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1825631#M29287</link>
    <description>&lt;P&gt;Hi Jeremy, do we have any update on this issue, I faced the same thing and I think the issue from this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="jmjm_0-1710209979261.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/267663i6CFE0E24F22F7F3D/image-size/large?v=v2&amp;amp;px=999" role="button" title="jmjm_0-1710209979261.png" alt="jmjm_0-1710209979261.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;jmjm_0-1710209979261.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;back in old days, the checking is different&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jmjm_1-1710210060959.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/267664i6723CE6B7CC81615/image-size/large?v=v2&amp;amp;px=999" role="button" title="jmjm_1-1710210060959.png" alt="jmjm_1-1710210060959.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;jmjm_1-1710210060959.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2024 02:21:42 GMT</pubDate>
    <dc:creator>jmjm</dc:creator>
    <dc:date>2024-03-12T02:21:42Z</dc:date>
    <item>
      <title>EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1064173#M8545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's a new bug introduced in the 2.8.2 SDK for iMX RT1010, in EDMA_SubmitTransfer(). The function now also checks if the TCD's CITER != BITER, which actually will be the case if the EDMA_AbortTransfer() is called while the transfer is active. This will result in EDMA_SubmitTransfer() to return busy, preventing the restart of the EDMA transfer, contradicting the statement at EDMA_AbortTransfer: "Users can submit another transfer after calling this API."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The details of the new busy condition:&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; Check if EDMA channel is busy:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; 1. if channel active bit is set, it implies that minor loop is executing, then channel is busy
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; 2. if channel active bit is not set and BITER not equal to CITER, it implies that major loop is executing,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * then channel is busy
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; There is one case can not be covered in below condition:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; When transfer request is submitted, but no request from peripheral, that is to say channel sevice doesn't
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; begin, if application would like to submit another transfer , then the TCD will be overwritten, since the
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; ACTIVE is 0 and BITER = CITER, for such case, it is a scatter gather(link TCD) case actually, so
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp;&amp;nbsp; application should enabled TCD pool for dynamic scatter gather mode by calling EDMA_InstallTCDMemory.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (((handle-&amp;gt;base-&amp;gt;TCD[handle-&amp;gt;channel].CSR &amp;amp; DMA_CSR_ACTIVE_MASK) != 0U) ||
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (((handle-&amp;gt;base-&amp;gt;TCD[handle-&amp;gt;channel].CITER_ELINKNO &amp;amp; DMA_CITER_ELINKNO_CITER_MASK) !=
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (handle-&amp;gt;base-&amp;gt;TCD[handle-&amp;gt;channel].BITER_ELINKNO &amp;amp; DMA_BITER_ELINKNO_BITER_MASK))))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return kStatus_EDMA_Busy;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2020 14:20:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1064173#M8545</guid>
      <dc:creator>benedek_kupper</dc:creator>
      <dc:date>2020-08-25T14:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1064174#M8546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="color: #646464; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="360840" data-username="benedek.kupper@streamunlimited.com" href="https://community.nxp.com/people/benedek.kupper@streamunlimited.com" style="color: #3d9ce7; background-color: #ffffff; border: 0px; font-weight: 600; text-decoration: none; font-size: 11.9994px;"&gt;Benedek Kupper&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Thank you for your interest in NXP Semiconductor products and &lt;BR /&gt;for the opportunity to serve you.&lt;BR /&gt;I'll check it soon.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2020 23:47:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1064174#M8546</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2020-08-25T23:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1133781#M9919</link>
      <description>&lt;P&gt;Hi Benedek,&lt;/P&gt;
&lt;P&gt;Sorry for the reply late.&lt;BR /&gt;I don't think call EDMA_SubmitTransfer() after the EDMA_Abort Transfer() function, then it will result in EDMA_SubmitTransfer() to return busy. as the CSR register will be cleared in the EDMA_Abort Transfer() as below shows.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-09-02_14-51-57.png" style="width: 993px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/123963i89527354F406C1A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-09-02_14-51-57.png" alt="2020-09-02_14-51-57.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;2020-09-02_14-51-57.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;
&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;
&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 06:53:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1133781#M9919</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2020-09-02T06:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1134078#M9922</link>
      <description>&lt;P&gt;Here's how to reproduce the issue:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Import the evkmimxrt1010 lpuart_edma_transfer example, using SDK version 2.8.2&lt;/LI&gt;&lt;LI&gt;Apply the following patch (the code between TEST BEGIN and TEST END) to the main function (this is showing my use case)&lt;/LI&gt;&lt;LI&gt;Press a button on the debug console so that the MCU receives a byte of UART data&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="c"&gt;    while (1)
    {
        /* If RX is idle and g_rxBuffer is empty, start to read data to g_rxBuffer. */
        if ((!rxOnGoing) &amp;amp;&amp;amp; rxBufferEmpty)
        {
            rxOnGoing = true;
            LPUART_ReceiveEDMA(DEMO_LPUART, &amp;amp;g_lpuartEdmaHandle, &amp;amp;receiveXfer);
        }

        // TEST BEGIN
        {
            lpuart_transfer_t received = receiveXfer;

            LPUART_EnableRxDMA(DEMO_LPUART, 0);

            // ensure no DMA data is cached
            __DSB();

            int status = LPUART_TransferGetReceiveCountEDMA(DEMO_LPUART, &amp;amp;g_lpuartEdmaHandle, (uint32_t*)&amp;amp;received.dataSize);
            if (status == kStatus_NoTransferInProgress)
            {
                // if the transfer is complete, the length isn't modified
                // transferred.dataSize = mEdma.rxDataSizeAll;
            }

            if (received.dataSize == 0)
            {
                // nothing was received, just re-enable feeding DMA
                LPUART_EnableRxDMA(DEMO_LPUART, 1);
            }
            else
            {
                // need to abort current transfer before starting a new one
                LPUART_TransferAbortReceiveEDMA(DEMO_LPUART, &amp;amp;g_lpuartEdmaHandle);

                // switch to other buffer
                LPUART_ReceiveEDMA(DEMO_LPUART, &amp;amp;g_lpuartEdmaHandle, &amp;amp;receiveXfer);
            }
        }
        // TEST END

        /* If TX is idle and g_txBuffer is full, start to send data. */
        if ((!txOnGoing) &amp;amp;&amp;amp; txBufferFull)
        {
            txOnGoing = true;
            LPUART_SendEDMA(DEMO_LPUART, &amp;amp;g_lpuartEdmaHandle, &amp;amp;sendXfer);
        }

        /* If g_txBuffer is empty and g_rxBuffer is full, copy g_rxBuffer to g_txBuffer. */
        if ((!rxBufferEmpty) &amp;amp;&amp;amp; (!txBufferFull))
        {
            memcpy(g_txBuffer, g_rxBuffer, ECHO_BUFFER_LENGTH);
            rxBufferEmpty = true;
            txBufferFull  = true;
        }
    }&lt;/LI-CODE&gt;&lt;P&gt;The result is:&lt;/P&gt;&lt;P&gt;The abort and restart is unsuccessful, which leads to the same byte being reported as received, and no further data reception is happening.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 10:00:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1134078#M9922</guid>
      <dc:creator>benedek_kupper</dc:creator>
      <dc:date>2020-09-02T10:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1150919#M10032</link>
      <description>&lt;P&gt;Hi，&lt;BR /&gt;I‘ve basically replicated your phenomenon, and I'll report this phenomenon in the next round of the Filed Trial of the SDK library.&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 07:43:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1150919#M10032</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2020-09-09T07:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1825631#M29287</link>
      <description>&lt;P&gt;Hi Jeremy, do we have any update on this issue, I faced the same thing and I think the issue from this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="jmjm_0-1710209979261.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/267663i6CFE0E24F22F7F3D/image-size/large?v=v2&amp;amp;px=999" role="button" title="jmjm_0-1710209979261.png" alt="jmjm_0-1710209979261.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;jmjm_0-1710209979261.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;back in old days, the checking is different&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jmjm_1-1710210060959.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/267664i6723CE6B7CC81615/image-size/large?v=v2&amp;amp;px=999" role="button" title="jmjm_1-1710210060959.png" alt="jmjm_1-1710210060959.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;jmjm_1-1710210060959.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 02:21:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1825631#M29287</guid>
      <dc:creator>jmjm</dc:creator>
      <dc:date>2024-03-12T02:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1829014#M29376</link>
      <description>&lt;P&gt;"Comparing the driver versions, I do think that the change to EDMA_SubmitTransfer() checking for CITER != BITER makes sense, but I see how that cause an issue when there is an aborted transfer. I think the correct fix is to change the EMDA_AbortTransfer function so that it clears BITER and CITER along with the CSR. This will prevent an aborted transfer from looking like a major loop in progress to the submit transfer function."&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="srinivas_chilaka_0-1710476461799.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/268579i3CFB446C3627C904/image-size/large?v=v2&amp;amp;px=999" role="button" title="srinivas_chilaka_0-1710476461799.png" alt="srinivas_chilaka_0-1710476461799.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;srinivas_chilaka_0-1710476461799.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 04:21:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1829014#M29376</guid>
      <dc:creator>srinivas_chilaka</dc:creator>
      <dc:date>2024-03-15T04:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: EDMA cannot be aborted anymore</title>
      <link>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1829077#M29382</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/70356"&gt;@srinivas_chilaka&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the quick response, I do think that by resetting CITER and BITER could solve the issue&lt;/P&gt;&lt;P&gt;Let me test out the changes and get back to you&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 06:09:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-RT-Crossover-MCUs/EDMA-cannot-be-aborted-anymore/m-p/1829077#M29382</guid>
      <dc:creator>jmjm</dc:creator>
      <dc:date>2024-03-15T06:09:23Z</dc:date>
    </item>
  </channel>
</rss>

