<?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: s32k324 uart using DMA  not able to send the data</title>
    <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1810836#M31799</link>
    <description>&lt;P&gt;Thanks PetrS,&lt;/P&gt;&lt;P&gt;I had take the your project as the reference.&lt;/P&gt;&lt;P&gt;But i am not able to transmit any data.&lt;/P&gt;&lt;P&gt;i am trying to send the data using "lpuartStatus = Lpuart_Uart_Ip_AsyncSend(3, (uint8_t*)arrys, 5);"&lt;/P&gt;&lt;P&gt;The return value is always "LPUART_UART_IP_STATUS_SUCCESS".&lt;/P&gt;&lt;P&gt;I am getting event&amp;nbsp; as "LPUART_UART_IP_EVENT_TX_EMPTY"&amp;nbsp; for event call back function mentioned below.&lt;/P&gt;&lt;P&gt;UART_event_cbk(const uint8 HwInstance, const Lpuart_Uart_Ip_EventType Event, void *UserData);&lt;/P&gt;&lt;P&gt;can you Please guide me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2024 10:57:23 GMT</pubDate>
    <dc:creator>Prasad_330</dc:creator>
    <dc:date>2024-02-19T10:57:23Z</dc:date>
    <item>
      <title>s32k324 uart using DMA  not able to send the data</title>
      <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1808870#M31695</link>
      <description>&lt;P&gt;I am working&amp;nbsp; on s32k324 controller. I wanted to use the uart using the DMA.I am trying to send 10 bytes of data, but I am able to send only one byte of data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;when i am using the function&lt;/P&gt;&lt;P&gt;"Lpuart_Uart_Ip_GetTransmitStatus(3,&amp;amp;remainingBytes)"&lt;/P&gt;&lt;P&gt;the return value is "LPUART_UART_IP_STATUS_BUSY" and remainingBytes bytes is reduced by one (9).&lt;/P&gt;&lt;P&gt;i am able to transmit one byte of data only when i change the&amp;nbsp; Second parameter in the below function&lt;/P&gt;&lt;P&gt;Dma_Ip_SetLogicChannelCommand(UartUserCfg-&amp;gt;TxDMAChannel, DMA_IP_CH_SET_HARDWARE_REQUEST);&lt;/P&gt;&lt;P&gt;the above function is auto generated.&lt;/P&gt;&lt;P&gt;In the below function second parameter is changed for which i am able to transmit one byte.&lt;/P&gt;&lt;P&gt;Dma_Ip_SetLogicChannelCommand(UartUserCfg-&amp;gt;TxDMAChannel, DMA_IP_CH_SET_SOFTWARE_REQUEST);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also attached the code below. I want some support, plz help me out,&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Feb 2024 05:53:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1808870#M31695</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-02-15T05:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: s32k324 uart using DMA  not able to send the data</title>
      <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1809981#M31753</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;seems below thread gives very basic LPUART DMA example using RTD:&lt;BR /&gt;&lt;A href="https://community.nxp.com/t5/S32K/S32K3-LPUART-using-DMA-in-RTD-3-0-0/m-p/1737356" target="_blank"&gt;https://community.nxp.com/t5/S32K/S32K3-LPUART-using-DMA-in-RTD-3-0-0/m-p/1737356&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;BR, Petr&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 13:04:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1809981#M31753</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2024-02-16T13:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: s32k324 uart using DMA  not able to send the data</title>
      <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1810836#M31799</link>
      <description>&lt;P&gt;Thanks PetrS,&lt;/P&gt;&lt;P&gt;I had take the your project as the reference.&lt;/P&gt;&lt;P&gt;But i am not able to transmit any data.&lt;/P&gt;&lt;P&gt;i am trying to send the data using "lpuartStatus = Lpuart_Uart_Ip_AsyncSend(3, (uint8_t*)arrys, 5);"&lt;/P&gt;&lt;P&gt;The return value is always "LPUART_UART_IP_STATUS_SUCCESS".&lt;/P&gt;&lt;P&gt;I am getting event&amp;nbsp; as "LPUART_UART_IP_EVENT_TX_EMPTY"&amp;nbsp; for event call back function mentioned below.&lt;/P&gt;&lt;P&gt;UART_event_cbk(const uint8 HwInstance, const Lpuart_Uart_Ip_EventType Event, void *UserData);&lt;/P&gt;&lt;P&gt;can you Please guide me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 10:57:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1810836#M31799</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-02-19T10:57:23Z</dc:date>
    </item>
    <item>
      <title>回复： s32k324 uart using DMA  not able to send the data</title>
      <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1811831#M31852</link>
      <description>&lt;P&gt;Hi Petr,&lt;/P&gt;&lt;P&gt;Thanks for the support. I am able to transmit and receive the data using DMA&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 11:28:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1811831#M31852</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-02-20T11:28:53Z</dc:date>
    </item>
    <item>
      <title>回复： s32k324 uart using DMA  not able to send the data</title>
      <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1815396#M32098</link>
      <description>&lt;P&gt;hi petr&lt;/P&gt;&lt;P&gt;It is working. thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 09:03:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1815396#M32098</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-02-26T09:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: s32k324 uart using DMA  not able to send the data</title>
      <link>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1815399#M32099</link>
      <description>&lt;P&gt;hi Petr,&lt;/P&gt;&lt;P&gt;It's working&lt;/P&gt;&lt;P&gt;Thanks for the support&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 09:06:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/s32k324-uart-using-DMA-not-able-to-send-the-data/m-p/1815399#M32099</guid>
      <dc:creator>Prasad_330</dc:creator>
      <dc:date>2024-02-26T09:06:09Z</dc:date>
    </item>
  </channel>
</rss>

