<?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: Usart TX function is not working in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1479676#M49319</link>
    <description>&lt;P&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jun 2022 06:27:31 GMT</pubDate>
    <dc:creator>k_sunilgupta</dc:creator>
    <dc:date>2022-06-27T06:27:31Z</dc:date>
    <item>
      <title>Usart TX function is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1478712#M49289</link>
      <description>&lt;P&gt;Hi to all,&lt;/P&gt;
&lt;P&gt;i am using USART0 of LPC54606J512BD100, All configrations are working properly when i put the same code to the developmemnt board but when i suppose to burn same code into my hardware card USART0 Tx not working, i don know why ?&lt;/P&gt;
&lt;P&gt;void USART_WRITE(unsigned char *string)&lt;BR /&gt;{&lt;BR /&gt;while(*string!='\0') // Loop run till value not equal to NULL Character&lt;BR /&gt;{&lt;BR /&gt;USART0-&amp;gt;FIFOWR = *string; // Data Write into FIFO Write Register&lt;BR /&gt;string++; // Increment in i variable for next character&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;while (Tx_NOTFULL &amp;amp; USART0-&amp;gt;FIFOSTAT)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; USART_WRITE(S_string); // USART_WRITE Function Call&lt;BR /&gt;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my core clock is 180MHz&lt;/P&gt;
&lt;P&gt;please tell me why Tx function is not working?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 06:16:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1478712#M49289</guid>
      <dc:creator>k_sunilgupta</dc:creator>
      <dc:date>2022-06-27T06:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Usart TX function is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1479080#M49301</link>
      <description>&lt;P&gt;PLEASE REPLY.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jun 2022 12:22:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1479080#M49301</guid>
      <dc:creator>k_sunilgupta</dc:creator>
      <dc:date>2022-06-23T12:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Usart TX function is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1479676#M49319</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 06:27:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1479676#M49319</guid>
      <dc:creator>k_sunilgupta</dc:creator>
      <dc:date>2022-06-27T06:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Usart TX function is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1480304#M49333</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;How about&amp;nbsp; using logic analyzer measure Tx signal, also pay attention whether connected to the right TX pin.&lt;/P&gt;
&lt;P&gt;And what is the difference about "Development board" and "Hardware card"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 06:15:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1480304#M49333</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-06-27T06:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Usart TX function is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1480318#M49335</link>
      <description>&lt;P&gt;hi..&lt;/P&gt;&lt;P&gt;i have verified tx pin its ok and Hardware card is the product PCB.&lt;/P&gt;&lt;P&gt;when i am using lpcxpresso54628 development board the same code running&amp;nbsp; ok and tx signal is showing on CRO as well.&lt;/P&gt;&lt;P&gt;but when i am bruning same code in LPC54606J512BD100 its not working.&lt;/P&gt;&lt;P&gt;here i have also verify the TX pin with datasheet.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 06:32:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1480318#M49335</guid>
      <dc:creator>k_sunilgupta</dc:creator>
      <dc:date>2022-06-27T06:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Usart TX function is not working</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1483958#M49441</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;You can check the difference about pin, UART, and clock between the two chips, confirm configure them right.&lt;/P&gt;
&lt;P&gt;Also check hardware connection.&lt;/P&gt;
&lt;P&gt;Or&amp;nbsp; create a new project based on&amp;nbsp;&lt;SPAN&gt;LPC54606J512BD100&amp;nbsp;, then copy function code into it.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 09:14:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Usart-TX-function-is-not-working/m-p/1483958#M49441</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-07-04T09:14:53Z</dc:date>
    </item>
  </channel>
</rss>

