<?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: S32K144EVB UART 8bit Send Receive Problem</title>
    <link>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896084#M4380</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I solved the problem!&lt;/P&gt;&lt;P&gt;The data type was a problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed Char data type to unsigned Char data type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;void LPUART1_transmit_char(&lt;STRONG&gt;char&lt;/STRONG&gt; send)&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;{ /* Function to Transmit single Char */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while((LPUART1-&amp;gt;STAT &amp;amp; LPUART_STAT_TDRE_MASK)&amp;gt;&amp;gt;LPUART_STAT_TDRE_SHIFT==0);&lt;BR /&gt;/* Wait for transmit buffer to be empty */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART1-&amp;gt;DATA=send; /* Send data */&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 May 2019 23:58:06 GMT</pubDate>
    <dc:creator>hjinha</dc:creator>
    <dc:date>2019-05-01T23:58:06Z</dc:date>
    <item>
      <title>S32K144EVB UART 8bit Send Receive Problem</title>
      <link>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896082#M4378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use two S32K144EVB for UART Communication.&lt;/P&gt;&lt;P&gt;One only sends value (I will call TX S32K),&lt;/P&gt;&lt;P&gt;the other only receives value(I will call RX S32K).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that "RX S32K" Can not receive the value over 0x80 ~ 0xFF.&lt;/P&gt;&lt;P&gt;It seems only receive 0x7F(7bit).&lt;/P&gt;&lt;P&gt;"RX S32K" Can receive the value from 0 to 127(0x7F).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I couldn't find the value over 0x80 in RxBuff, when using Debug breakpoint.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; use this function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void LPUART1_transmit_char(char send)&lt;/P&gt;&lt;P&gt;{ /* Function to Transmit single Char */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;while((LPUART1-&amp;gt;STAT &amp;amp; LPUART_STAT_TDRE_MASK)&amp;gt;&amp;gt;LPUART_STAT_TDRE_SHIFT==0);&lt;BR /&gt; /* Wait for transmit buffer to be empty */&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART1-&amp;gt;DATA=send; /* Send data */&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try many things, but i don'y know reason about this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 04:42:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896082#M4378</guid>
      <dc:creator>hjinha</dc:creator>
      <dc:date>2019-04-30T04:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144EVB UART 8bit Send Receive Problem</title>
      <link>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896083#M4379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you analyzed the signal on the bus?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is TX&amp;nbsp;MCU sending correct data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Daniel&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 12:29:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896083#M4379</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2019-04-30T12:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144EVB UART 8bit Send Receive Problem</title>
      <link>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896084#M4380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I solved the problem!&lt;/P&gt;&lt;P&gt;The data type was a problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed Char data type to unsigned Char data type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;void LPUART1_transmit_char(&lt;STRONG&gt;char&lt;/STRONG&gt; send)&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;{ /* Function to Transmit single Char */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;while((LPUART1-&amp;gt;STAT &amp;amp; LPUART_STAT_TDRE_MASK)&amp;gt;&amp;gt;LPUART_STAT_TDRE_SHIFT==0);&lt;BR /&gt;/* Wait for transmit buffer to be empty */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPUART1-&amp;gt;DATA=send; /* Send data */&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 May 2019 23:58:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144EVB-UART-8bit-Send-Receive-Problem/m-p/896084#M4380</guid>
      <dc:creator>hjinha</dc:creator>
      <dc:date>2019-05-01T23:58:06Z</dc:date>
    </item>
  </channel>
</rss>

