<?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: lpuart_rcv</title>
    <link>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902529#M4551</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now its printing i changed putty settings but now microcontrlr is not receiving .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 May 2019 10:13:49 GMT</pubDate>
    <dc:creator>intern_praveena</dc:creator>
    <dc:date>2019-05-23T10:13:49Z</dc:date>
    <item>
      <title>lpuart_rcv</title>
      <link>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902526#M4548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I m using S32K144_64 , i have&amp;nbsp; done uart send and recive using LPUART1,but nothing is displayed in putty but while debugging its working.here is my code, only send data is working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#include "Cpu.h"&lt;/P&gt;&lt;P&gt;volatile int exit_code = 0;&lt;BR /&gt; uint8_t txbuff = 'A';&lt;BR /&gt; uint8_t rxbuff;&lt;BR /&gt; uint8_t rem_data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOCK_SYS_Init(g_clockManConfigsArr, CLOCK_MANAGER_CONFIG_CNT, g_clockManCallbacksArr, CLOCK_MANAGER_CALLBACK_CNT);&lt;BR /&gt; CLOCK_SYS_UpdateConfiguration(0U, CLOCK_MANAGER_POLICY_FORCIBLE);&lt;/P&gt;&lt;P&gt;PINS_DRV_Init(NUM_OF_CONFIGURED_PINS, g_pin_mux_InitConfigArr);&lt;BR /&gt; PINS_DRV_SetPinsDirection(PTB,(1&amp;lt;&amp;lt;0));&lt;BR /&gt; PINS_DRV_SetPins(PTB,(1&amp;lt;&amp;lt;0));&lt;/P&gt;&lt;P&gt;LPUART_DRV_Init(INST_LPUART1, &amp;amp;lpuart1_State, &amp;amp;lpuart1_InitConfig0);&lt;BR /&gt; while(1)&lt;BR /&gt; {&lt;BR /&gt; //LPUART_DRV_SendData(INST_LPUART1,&amp;amp;txbuff,1);&lt;BR /&gt; PINS_DRV_WritePins(PTB,(0&amp;lt;&amp;lt;0));&lt;BR /&gt; LPUART_DRV_ReceiveData(INST_LPUART1,&amp;amp;rxbuff,1);&lt;BR /&gt; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 May 2019 09:08:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902526#M4548</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-21T09:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: lpuart_rcv</title>
      <link>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902527#M4549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if using non-blocking function you should add waiting for successful RX process. Try below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uint32_t bytesRemaining;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;while(1)&lt;/SPAN&gt;&lt;BR style="color: #51626f; background-color: #ffffff;" /&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;{&lt;/SPAN&gt;&lt;BR style="color: #51626f; background-color: #ffffff;" /&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;PINS_DRV_WritePins(PTB,(0&amp;lt;&amp;lt;0));&lt;/SPAN&gt;&lt;BR style="color: #51626f; background-color: #ffffff;" /&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART_DRV_ReceiveData(INST_LPUART1,&amp;amp;rxbuff,1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Wait for transfer to be completed */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;while(LPUART_DRV_GetReceiveStatus(INST_LPUART1, &amp;amp;bytesRemaining) == STATUS_BUSY);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;// process receive data here&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #51626f; background-color: #ffffff;" /&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;BR, Petr&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2019 10:35:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902527#M4549</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2019-05-22T10:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: lpuart_rcv</title>
      <link>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902528#M4550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi petr Stancik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;non - blocking is false. The same happen again,if i press '1' its not display.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2019 06:23:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902528#M4550</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-23T06:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: lpuart_rcv</title>
      <link>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902529#M4551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now its printing i changed putty settings but now microcontrlr is not receiving .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2019 10:13:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902529#M4551</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-23T10:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: lpuart_rcv</title>
      <link>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902530#M4552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to send and receive through microcontroler,but only transmit is working.&lt;/P&gt;&lt;P&gt;can anyone hlp me to resolve this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2019 11:56:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/lpuart-rcv/m-p/902530#M4552</guid>
      <dc:creator>intern_praveena</dc:creator>
      <dc:date>2019-05-23T11:56:34Z</dc:date>
    </item>
  </channel>
</rss>

