<?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: K10 UART3 Question in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275571#M9859</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Keith Kolmos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can generate a project according to the "Block reception/transmission, with interrupt service"&amp;nbsp; , the Typical Usage of Component Serial_LDD in CodeWarrior10.5 with PE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that help.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Binbin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Dec 2013 02:42:59 GMT</pubDate>
    <dc:creator>Robin_Shen</dc:creator>
    <dc:date>2013-12-05T02:42:59Z</dc:date>
    <item>
      <title>K10 UART3 Question</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275569#M9857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a K10 144 pin, 100Mhz design and I'm running into problems getting UART3 up and running properly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the clock gated to PORTE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIM_SCGC5|= SIM_SCGC5_PORTE_MASK;&amp;nbsp;&amp;nbsp; // to get Port E Clock enabled&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I have the clock gated over to PORTE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIM_SCGC4 |= SIM_SCGC4_UART3_MASK;&amp;nbsp; // to get clock to the UART&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I have selected alternate function 3 for the RX and TX pins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;PORTE_PCR24 = PORT_PCR_MUX(3);&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;PORTE_PCR25 = PORT_PCR_MUX(3);&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;I'm enabling UART3's IRQ (status vector)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;enable_irq(51);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;and I have the ISR function loaded into vector 67 in the vector table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif; font-size: 16px; font-style: normal;"&gt;I have UART 3 setup like this (I'm looking for 9600 baud, N,8,1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UART3_C2=0x00; &lt;/P&gt;&lt;P&gt;&amp;nbsp; UART3_BDH=0x00; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UART3_BDL=0x89; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UART3_C1=0x00; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UART3_S2=0x00; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UART3_C3=0x00; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; UART3_C2=0x2C;&amp;nbsp; &lt;SPAN class="yiv4936550066tab"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;Just to double check things I have the UART RX and TX lines jumpered together on the output connector of my board so I should (in theory) see the data back on the receive buffer every time I transmit&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;But I'm never seeing any data on the TX pin and obviously not seeing the Receive Pin IRQ for getting any data back.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;What am I missing?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="yiv4936550066tab"&gt;Thanks for the help&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2013 17:07:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275569#M9857</guid>
      <dc:creator>keithkolmos</dc:creator>
      <dc:date>2013-11-13T17:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: K10 UART3 Question</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275570#M9858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Keith Kolmos&lt;/P&gt;&lt;P&gt;From your code, you do not send out any data from TX, so you cannot find waveform from TX line. For register setting in your code is correct.&lt;/P&gt;&lt;P&gt;I suggest you to have a look at Freescale sample project on &lt;A href="http://www.freescale.com/"&gt;www.freescale.com&lt;/A&gt; There are many UART function operation for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my reply can help you.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 01:04:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275570#M9858</guid>
      <dc:creator>Paul_Tian</dc:creator>
      <dc:date>2013-11-14T01:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: K10 UART3 Question</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275571#M9859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Keith Kolmos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can generate a project according to the "Block reception/transmission, with interrupt service"&amp;nbsp; , the Typical Usage of Component Serial_LDD in CodeWarrior10.5 with PE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that help.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Binbin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Dec 2013 02:42:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K10-UART3-Question/m-p/275571#M9859</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2013-12-05T02:42:59Z</dc:date>
    </item>
  </channel>
</rss>

