<?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>Kinetis MicrocontrollersのトピックRe: DMA - UART receive</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1177463#M58713</link>
    <description>&lt;P&gt;Hello &lt;SPAN class="UserName lia-user-name lia-user-rank-Contributor-I lia-component-message-view-widget-author-username"&gt; &lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" style="color: #333f48;" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/113776" target="_self"&gt;&lt;SPAN class=""&gt;ksaiviswanadhul&lt;/SPAN&gt;&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you to refer into the SDK examples. There you can find an example that shows how to use the UART driver with eDMA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if this is helpful, if you have more questions do not hesitate to ask me.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Omar&lt;/P&gt;</description>
    <pubDate>Tue, 03 Nov 2020 17:32:17 GMT</pubDate>
    <dc:creator>Omar_Anguiano</dc:creator>
    <dc:date>2020-11-03T17:32:17Z</dc:date>
    <item>
      <title>DMA - UART receive</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1173090#M58612</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i am using kinetis k60 board. i'm facing issue on receiving multiple characters in dma uart receive please help me below attached code... i want to receive multiple bytes but i'm receiving single byte only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void dma_receive(DMA_MemMapPtr dmach , uint8_t ch , uint8_t* val)&lt;BR /&gt;{&lt;BR /&gt;int j;&lt;BR /&gt;int i;&lt;BR /&gt;for(i=0;i&amp;lt;100;i++);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DMA_SADDR_REG(dmach , ch) =0;&lt;BR /&gt;//DMA_CR |= DMA_CR_EMLM_MASK;&lt;BR /&gt;DMA_SADDR_REG(dmach , ch)|= DMA_SADDR_SADDR(0x4006B007); // CONFIGURING SOURCE ADDRESS&lt;BR /&gt;for( j =0 ; j&amp;lt;1000; j++);&lt;BR /&gt;&lt;BR /&gt;DMA_SOFF_REG(dmach,ch) =0;&lt;BR /&gt;DMA_TCD0_SLAST= 0x0;&lt;BR /&gt;DMA_ATTR_REG(dmach , ch) = (DMA_ATTR_SSIZE(0) | DMA_ATTR_DSIZE(0)); //CONFIGURING SOURCE ADDRESS SIZE&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;// DMA_NBYTES_MLOFFNO_REG(dmach , ch) = DMA_NBYTES_MLOFFNO_SMLOE_MASK|DMA_NBYTES_MLOFFNO_DMLOE_MASK| DMA_NBYTES_MLOFFNO_NBYTES(0x01);&lt;BR /&gt;//&lt;BR /&gt;&lt;BR /&gt;DMA_NBYTES_MLNO_REG(dmach , ch) = 0;&lt;BR /&gt;&lt;BR /&gt;DMA_NBYTES_MLNO_REG(dmach , ch)|= (DMA_NBYTES_MLNO_NBYTES(0x01));&lt;BR /&gt;DMA_DADDR_REG(dmach , ch) = 0;&lt;BR /&gt;DMA_DADDR_REG(dmach , ch) |= DMA_DADDR_DADDR(val); //CONFIGURING DESTINATION ADDRESS ADDRESS&lt;/P&gt;&lt;P&gt;DMA_DOFF_REG(dmach , ch) = DMA_DOFF_DOFF(0x01);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DMA_BITER_ELINKNO_REG(dmach , ch) =0;&lt;BR /&gt;&lt;BR /&gt;DMA_BITER_ELINKNO_REG(dmach , ch) = DMA_BITER_ELINKNO_BITER(0x01); //STARTING MAJOR ITERATION COUNT&lt;BR /&gt;DMA_CITER_ELINKNO_REG(dmach , ch) =0;&lt;BR /&gt;DMA_CITER_ELINKNO_REG(dmach , ch) = DMA_CITER_ELINKNO_CITER(0x01); // CURRENT MAJOR ITERATION COUNT&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;DMA_SERQ |= DMA_SERQ_SERQ_MASK;&lt;BR /&gt;&lt;BR /&gt;DMA_CSR_REG(dmach , ch) = DMA_CSR_START_MASK; // START THE DMA&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 11:24:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1173090#M58612</guid>
      <dc:creator>ksaiviswanadhul</dc:creator>
      <dc:date>2020-10-26T11:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: DMA - UART receive</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1177463#M58713</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="UserName lia-user-name lia-user-rank-Contributor-I lia-component-message-view-widget-author-username"&gt; &lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" style="color: #333f48;" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/113776" target="_self"&gt;&lt;SPAN class=""&gt;ksaiviswanadhul&lt;/SPAN&gt;&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you to refer into the SDK examples. There you can find an example that shows how to use the UART driver with eDMA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if this is helpful, if you have more questions do not hesitate to ask me.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Omar&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 17:32:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1177463#M58713</guid>
      <dc:creator>Omar_Anguiano</dc:creator>
      <dc:date>2020-11-03T17:32:17Z</dc:date>
    </item>
    <item>
      <title>Regarding qt5</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1302284#M60957</link>
      <description>&lt;P&gt;There are four QT5 browsers available in imx8qmmek&amp;nbsp; . QtWebEngine browsers can be found in:&lt;/P&gt;&lt;P&gt;1). /user/share/qt5/examples/webenginewidgets/stylesheetbrowser&lt;/P&gt;&lt;P&gt;2). /user/share/qt5/examples/webenginewidgets/simplebrowser&lt;/P&gt;&lt;P&gt;3).&amp;nbsp;/user/share/qt5/examples/webenginewidgets/cookiebrowser&lt;/P&gt;&lt;P&gt;4).&amp;nbsp;/user/share/qt5/examples/webenginewidgets/quicknanobrowser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please tell me difference between 4 types?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 07:12:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/DMA-UART-receive/m-p/1302284#M60957</guid>
      <dc:creator>ksaiviswanadhul</dc:creator>
      <dc:date>2021-07-05T07:12:12Z</dc:date>
    </item>
  </channel>
</rss>

