<?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: UART TX-DMA and UART RX-Interrupt in S32K</title>
    <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2259488#M55288</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/256519"&gt;@Vamshi_&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Yes. As I've mentioned, the configuration tools do not support separating the channels. It is controller specific.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
    <pubDate>Wed, 10 Dec 2025 21:31:03 GMT</pubDate>
    <dc:creator>Julián_AragónM</dc:creator>
    <dc:date>2025-12-10T21:31:03Z</dc:date>
    <item>
      <title>UART TX-DMA  and UART RX-Interrupt</title>
      <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2256386#M55192</link>
      <description>&lt;P&gt;Hii,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I am using s32k148 eval board and using this s32 ide and I want to configure UART TX as DMA and UART RX as interrupt mode, can anyone help me how to configure them as separately. because when we are use MEX driver we can configure the instance only in one mode either dma/interrupt mode only.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-12-06 123953.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/368824iD773D7C3F1FE32C6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-12-06 123953.png" alt="Screenshot 2025-12-06 123953.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Dec 2025 07:11:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2256386#M55192</guid>
      <dc:creator>Vamshi_</dc:creator>
      <dc:date>2025-12-06T07:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: UART TX-DMA and UART RX-Interrupt</title>
      <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2257477#M55222</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/256519"&gt;@Vamshi_&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The driver (S32 Config Tools) cannot separate channels. Is there a reason you need to separate DMA and interrupt? Why not use DMA for both TX &amp;amp; RX?&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 23:31:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2257477#M55222</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-12-08T23:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: UART TX-DMA and UART RX-Interrupt</title>
      <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2257653#M55227</link>
      <description>&lt;P&gt;Hey, thanks for your reply but based upon my project requirement i have to do in that way like tx - dma and rx -interrupt based but i am unable to figure it out how to do that .&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 05:49:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2257653#M55227</guid>
      <dc:creator>Vamshi_</dc:creator>
      <dc:date>2025-12-09T05:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: UART TX-DMA and UART RX-Interrupt</title>
      <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2258463#M55251</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/256519"&gt;@Vamshi_&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I believe it is possible, but you will have configure some things manually, such as separating Tx&amp;amp;Rx interrupts, and only initializing DMA for Tx.&lt;/P&gt;
&lt;P&gt;1. When configuring "LPUART_UART_IP_USING_DMA", both Tx &amp;amp; Rx channels are needed. You must route these two to a DMA channel if you want to generate Config Tools code.&lt;/P&gt;
&lt;P&gt;2. Enable CTRL[RIE] for Rx interrupts and disable CTRL[TIE] for Tx interrupts.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. In your main code:&lt;/P&gt;
&lt;P&gt;TX (DMA): call Lpuart_Uart_Ip_AsyncTransmit() (it uses DMA when &lt;STRONG&gt;LPUART_IP_USING_DMA&lt;/STRONG&gt; is enabled).&lt;BR /&gt;RX (interrupt): call Lpuart_Uart_Ip_AsyncReceive() and install user callback. Keep regularly resetting the RX buffer in the &lt;STRONG&gt;LPUART_UART_IP_EVENT_RX_FULL&lt;/STRONG&gt; callback (with Lpuart_Uart_Ip_SetRxBuffer()) for continuous reception.&lt;/P&gt;
&lt;P&gt;I have not tested this, since it is a somewhat corner case, but I believe it should work.&lt;/P&gt;
&lt;P&gt;Additionally, you can enable DMA ISR instead of separating the channels, if this fills your requirements instead.&lt;/P&gt;
&lt;P&gt;I can try testing the configuration, however it will take some time.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 22:28:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2258463#M55251</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-12-09T22:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: UART TX-DMA and UART RX-Interrupt</title>
      <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2258640#M55257</link>
      <description>Thanks for reply, But if we do like that then it becomes controller specific?&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Dec 2025 05:30:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2258640#M55257</guid>
      <dc:creator>Vamshi_</dc:creator>
      <dc:date>2025-12-10T05:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: UART TX-DMA and UART RX-Interrupt</title>
      <link>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2259488#M55288</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/256519"&gt;@Vamshi_&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Yes. As I've mentioned, the configuration tools do not support separating the channels. It is controller specific.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Julián&lt;/P&gt;</description>
      <pubDate>Wed, 10 Dec 2025 21:31:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/UART-TX-DMA-and-UART-RX-Interrupt/m-p/2259488#M55288</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2025-12-10T21:31:03Z</dc:date>
    </item>
  </channel>
</rss>

