<?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>i.MX ProcessorsのトピックRe: my uart lost data while receiving data with platform IMX6Q</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395901#M58030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should use uart data flow control&lt;/P&gt;&lt;P&gt;(as suggested in first answer) to correctly use dma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~igor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2015 02:07:12 GMT</pubDate>
    <dc:creator>igorpadykov</dc:creator>
    <dc:date>2015-07-31T02:07:12Z</dc:date>
    <item>
      <title>my uart lost data while receiving data with platform IMX6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395898#M58027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when I test the UART port, I found it lost data while receiving data. the test process is like this:&lt;/P&gt;&lt;P&gt;1. On PC side I send 100 bytes from the UART port.&lt;/P&gt;&lt;P&gt;2. On IMX6Q side, I start a test process to test UART, This process will read data with block state, when it receives&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data, it just print the data. from the printed data I found some data lost.&lt;/P&gt;&lt;P&gt;3. I try to add some log in function imx_rxint() in file imx.c, the added log is like this:&lt;/P&gt;&lt;P&gt;static irqreturn_t imx_rxint(int irq, void *dev_id)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; struct imx_port *sport = dev_id;&lt;/P&gt;&lt;P&gt;&amp;nbsp; unsigned int rx,flg,ignored = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; struct tty_struct *tty = sport-&amp;gt;port.state-&amp;gt;port.tty;&lt;/P&gt;&lt;P&gt;&amp;nbsp; unsigned long flags, temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; spin_lock_irqsave(&amp;amp;sport-&amp;gt;port.lock,flags);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; while (readl(sport-&amp;gt;port.membase + USR2) &amp;amp; USR2_RDR) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; flg = TTY_NORMAL;&lt;/P&gt;&lt;P&gt;&amp;nbsp; sport-&amp;gt;port.icount.rx++;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rx = readl(sport-&amp;gt;port.membase + URXD0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; temp = readl(sport-&amp;gt;port.membase + USR2);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (temp &amp;amp; USR2_BRCD) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; writel(USR2_BRCD, sport-&amp;gt;port.membase + USR2);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (uart_handle_break(&amp;amp;sport-&amp;gt;port))&lt;/P&gt;&lt;P&gt;&amp;nbsp; continue;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (uart_handle_sysrq_char(&amp;amp;sport-&amp;gt;port, (unsigned char)rx))&lt;/P&gt;&lt;P&gt;&amp;nbsp; continue;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (unlikely(rx &amp;amp; URXD_ERR)) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (rx &amp;amp; URXD_BRK)&lt;/P&gt;&lt;P&gt;&amp;nbsp; sport-&amp;gt;port.icount.brk++;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else if (rx &amp;amp; URXD_PRERR)&lt;/P&gt;&lt;P&gt;&amp;nbsp; sport-&amp;gt;port.icount.parity++;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else if (rx &amp;amp; URXD_FRMERR)&lt;/P&gt;&lt;P&gt;&amp;nbsp; sport-&amp;gt;port.icount.frame++;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (rx &amp;amp; URXD_OVRRUN)&lt;/P&gt;&lt;P&gt;&amp;nbsp; sport-&amp;gt;port.icount.overrun++;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (rx &amp;amp; sport-&amp;gt;port.ignore_status_mask) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (++ignored &amp;gt; 100)&lt;/P&gt;&lt;P&gt;&amp;nbsp; goto out;&lt;/P&gt;&lt;P&gt;&amp;nbsp; continue;&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rx &amp;amp;= sport-&amp;gt;port.read_status_mask;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (rx &amp;amp; URXD_BRK)&lt;/P&gt;&lt;P&gt;&amp;nbsp; flg = TTY_BREAK;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else if (rx &amp;amp; URXD_PRERR)&lt;/P&gt;&lt;P&gt;&amp;nbsp; flg = TTY_PARITY;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else if (rx &amp;amp; URXD_FRMERR)&lt;/P&gt;&lt;P&gt;&amp;nbsp; flg = TTY_FRAME;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (rx &amp;amp; URXD_OVRRUN)&lt;/P&gt;&lt;P&gt;&amp;nbsp; flg = TTY_OVERRUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#ifdef SUPPORT_SYSRQ&lt;/P&gt;&lt;P&gt;&amp;nbsp; sport-&amp;gt;port.sysrq = 0;&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /*add by aaron, 2015.7.29*/&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(sport-&amp;gt;port.line == 1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; pr_err("[AARON] ttymxc1 :%d, %d", rx, sport-&amp;gt;port.icount.rx);&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; /*end by aaron*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; tty_insert_flip_char(tty, rx, flg);&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;out:&lt;/P&gt;&lt;P&gt;&amp;nbsp; spin_unlock_irqrestore(&amp;amp;sport-&amp;gt;port.lock,flags);&lt;/P&gt;&lt;P&gt;&amp;nbsp; tty_flip_buffer_push(tty);&lt;/P&gt;&lt;P&gt;&amp;nbsp; return IRQ_HANDLED;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from the log , I found it also not receive the whole data. which means data was lost at this driver layer.&lt;/P&gt;&lt;P&gt;since The amount of data transfered is not so much, why this happened? if some configuration error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&amp;nbsp; It critical to me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 02:10:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395898#M58027</guid>
      <dc:creator>如新顾</dc:creator>
      <dc:date>2015-07-30T02:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: my uart lost data while receiving data with platform IMX6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395899#M58028</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;data may be lost due to uart buffer overruns conditions,&lt;/P&gt;&lt;P&gt;one can try to decrease baudrate or use flow control&lt;/P&gt;&lt;P&gt;as described below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/303604"&gt;RTS/CTS handshake confusion&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/312742"&gt;i.MX6 UART Driver and RS485 Support&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;igor&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 10:47:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395899#M58028</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2015-07-30T10:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: my uart lost data while receiving data with platform IMX6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395900#M58029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;STRONG style="font-size: 13px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;A href="https://community.nxp.com/people/igorpadykov"&gt;igorpadykov&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I even use 9600 &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;baudrate, which seems lost data again,&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #51626f; font-size: 13px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; during debug I find if only send 30 bytes to IMX6, it will much better, and I chek the SPEC, find the RXFIFO is 32 bytes, if the problem is Related to the FIFO?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #51626f; font-size: 13px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #51626f; font-size: 13px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I tested much times with 100 bytes, and the log is always like this:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;130|root@sabresd_6dq:/system/bin # ./test5_io &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[aaron] start test_io: Success&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :1, count :3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="color: red;"&gt;&amp;nbsp; //first time to send &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="color: red;"&gt;100 bytes&lt;/SPAN&gt;&lt;SPAN style="font-family: 宋体; color: red;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :97, count :3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :3, count :3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :4, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :5, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :6, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :7, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :8, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :9, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :10, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :11, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :12, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :13, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :14, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :15, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :16, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :17, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :18, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :19, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :20, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :21, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :22, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :23, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :24, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :25, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :26, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :27, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :28, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :29, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :30, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :31, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :32, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :33, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :34, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :1, count :1 &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="color: red;"&gt;&amp;nbsp; //second time to send 100 bytes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :97, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :3, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :4, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :5, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :6, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :7, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :8, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :9, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :10, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :11, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :12, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :13, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :14, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :15, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :16, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :17, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :18, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :19, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :20, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :21, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :22, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :23, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :24, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :25, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :26, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :27, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :28, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :29, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :30, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :31, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :32, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :50, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :51, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :52, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :53, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :54, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :55, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :56, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :57, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :58, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :59, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :60, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :61, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :62, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :63, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :64, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :65, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :66, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :67, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :68, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :69, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :70, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :71, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :72, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :73, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :74, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :75, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :76, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :77, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :78, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :79, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;[AARON] dma_rx_work, data :80, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: #1f497d;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 00:29:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395900#M58029</guid>
      <dc:creator>如新顾</dc:creator>
      <dc:date>2015-07-31T00:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: my uart lost data while receiving data with platform IMX6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395901#M58030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should use uart data flow control&lt;/P&gt;&lt;P&gt;(as suggested in first answer) to correctly use dma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~igor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 02:07:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395901#M58030</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2015-07-31T02:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: my uart lost data while receiving data with platform IMX6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395902#M58031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;STRONG style="font-size: 13px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;A href="https://community.nxp.com/people/igorpadykov"&gt;igorpadykov&lt;/A&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I just send 100 bytes, and from log it seems lost much data. why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I test to send 30 bytes, and still may lost data,&amp;nbsp; some of data lost &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is in the middle of data flow like this:&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :1, count :3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: red;"&gt;&amp;nbsp; //first time to send &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: red;"&gt;100 bytes&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 宋体; color: red;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :97, count :3&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :4, count :31&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN lang="EN-US" style="font-family: inherit; font-style: inherit; font-weight: inherit; color: red;"&gt; //data 3 lost&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :5, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :6, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :7, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :9, count :31&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;//data 8 lost&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :10, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :11, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :12, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :13, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :14, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :15, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :16, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :17, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :18, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :19, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :20, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :21, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :22, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :23, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :24, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :25, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :26, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :27, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :28, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :29, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :30, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :31, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :32, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :33, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;SPAN lang="EN-US" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #1f497d;"&gt;[AARON] dma_rx_work, data :34, count :31&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt; .....&lt;SPAN style="color: #1f497d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;//data all lost&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #51626f;"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 07:20:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395902#M58031</guid>
      <dc:creator>如新顾</dc:creator>
      <dc:date>2015-07-31T07:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: my uart lost data while receiving data with platform IMX6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395903#M58032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;HI 如新：&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #f2f2f2; color: #434343; font-size: 12px; font-family: Tahoma, Arial;"&gt;You mentioned the problem solved now？&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 07:36:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/my-uart-lost-data-while-receiving-data-with-platform-IMX6Q/m-p/395903#M58032</guid>
      <dc:creator>Emloxu</dc:creator>
      <dc:date>2016-04-11T07:36:32Z</dc:date>
    </item>
  </channel>
</rss>

