<?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: MX53 UART2(3) not working in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180852#M7636</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is &amp;nbsp;a little bit strange that &amp;nbsp;the UART2 and UART3 share the same daisy chain register(0x888), I thinks for UART2 the daisy chain register should be &amp;nbsp;0x880. please double check it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Nov 2011 04:46:21 GMT</pubDate>
    <dc:creator>JerryFan</dc:creator>
    <dc:date>2011-11-02T04:46:21Z</dc:date>
    <item>
      <title>MX53 UART2(3) not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180850#M7634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;HI everyone,   Could you please let us know the issue with UART2 and UART3.   IOMUX define as follows: #define MX53_PAD_EMI_D27__UART2_RXD IOMUX_PAD(0x490, 0x148, 2, 0x888, 1, MX53_UART_PAD_CTRL) #define MX53_PAD_EMI_D26__UART2_TXD IOMUX_PAD(0x48C, 0x144, 2, 0x888, 0, MX53_UART_PAD_CTRL)   #define MX53_PAD_EMI_D24__UART3_TXD IOMUX_PAD(0x484, 0x13C, 2, 0x888, 0, MX53_UART_PAD_CTRL) #define MX53_PAD_EMI_D25__UART3_RXD IOMUX_PAD(0x488, 0x140, 2, 0x888, 1, MX53_UART_PAD_CTRL)   tx is ok ,but rx can not receive data.  Please advise us asap. We have stuck since long time.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2011 03:39:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180850#M7634</guid>
      <dc:creator>xuqing</dc:creator>
      <dc:date>2011-10-28T03:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: MX53 UART2(3) not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180851#M7635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe cased by DMA, please change arch/arm/mach-mx5/serial.h diable the DMA of these ports.&lt;/P&gt;&lt;P&gt;By the way, what's you version ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 03:25:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180851#M7635</guid>
      <dc:creator>JasonZhang1z</dc:creator>
      <dc:date>2011-11-02T03:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: MX53 UART2(3) not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180852#M7636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is &amp;nbsp;a little bit strange that &amp;nbsp;the UART2 and UART3 share the same daisy chain register(0x888), I thinks for UART2 the daisy chain register should be &amp;nbsp;0x880. please double check it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 04:46:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180852#M7636</guid>
      <dc:creator>JerryFan</dc:creator>
      <dc:date>2011-11-02T04:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: MX53 UART2(3) not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180853#M7637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please remove daisy setting for TX PINs. For example:&lt;/P&gt;&lt;P&gt;#define MX53_PAD_EMI_D27__UART2_RXD IOMUX_PAD(0x490, 0x148, 2, 0x888, 1, MX53_UART_PAD_CTRL)&lt;BR /&gt;#define MX53_PAD_EMI_D26__UART2_TXD IOMUX_PAD(0x48C, 0x144, 0, 0, 0, MX53_UART_PAD_CTRL)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#define MX53_PAD_EMI_D24__UART3_TXD IOMUX_PAD(0x484, 0x13C, 2, 0x888, 0, MX53_UART_PAD_CTRL)&lt;BR /&gt;#define MX53_PAD_EMI_D25__UART3_RXD IOMUX_PAD(0x488, 0x140, 0, 0, 0, MX53_UART_PAD_CTRL)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 10:58:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180853#M7637</guid>
      <dc:creator>LilyZhang</dc:creator>
      <dc:date>2011-11-02T10:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: MX53 UART2(3) not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180854#M7638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you get UART2 &amp;amp; 3 working?&amp;nbsp;&amp;nbsp; How?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jan 2014 00:16:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180854#M7638</guid>
      <dc:creator>mbp</dc:creator>
      <dc:date>2014-01-11T00:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: MX53 UART2(3) not working</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180855#M7639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lily is correct.&amp;nbsp; The mx51 iomux header file must be updated to correct the UART2 pin settings...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 21:39:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/MX53-UART2-3-not-working/m-p/180855#M7639</guid>
      <dc:creator>mbp</dc:creator>
      <dc:date>2014-01-24T21:39:54Z</dc:date>
    </item>
  </channel>
</rss>

