<?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: MCUXpresso in MCUXpresso General</title>
    <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801985#M739</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The definition of "kPORT_MuxAsGpio" is in fsl_port.h file ,&amp;nbsp; please include it :&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;#include "fsl_port.h"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;2. Before we use the port ， we need to first enable the clock , please have a look at the Reference Manule of your chip :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/67865i3476F20AFCB4E025/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3. I was wondering why you&amp;nbsp; configure registers by yourself on by one ,&amp;nbsp; you&amp;nbsp; can use SDK driver to configure,&lt;/P&gt;&lt;P&gt;also there is gpio demo under SDK package :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/67954iBECC519EA1ED1C80/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Aug 2018 08:05:47 GMT</pubDate>
    <dc:creator>Alice_Yang</dc:creator>
    <dc:date>2018-08-23T08:05:47Z</dc:date>
    <item>
      <title>MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801980#M734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have FRDM-K22F Board, and I try to light the RGB Led on the board. According to the user guide &amp;lt;FRDMK22FUG.pdf&amp;gt;, the Red color controlled by pin PTA1, the Green controlled by Pin PTA2. On the MCU datasheet &amp;lt;K22F Sub-Family Reference Manual&amp;gt; page1359, address 400F_F014 is port data direction register, address 400F_F000 is port Data Output Register.&lt;/P&gt;&lt;P&gt;I use MCUXpresso IDE to import example &amp;lt;frdmk22f_hello_world, and add codes as below:&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp; PRINTF(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #2a00ff;"&gt;"hello world.\r\n"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(&lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt;"&gt;int&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;*)0x400FF014 = 0x02; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;//set PTA1 as Output – my code&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(&lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt;"&gt;int&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;*)0x400FF000 = 0x02; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;//set PTA1 as High, so the led should be red -my code&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt;"&gt;while&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; (1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ch = GETCHAR();&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PUTCHAR(ch);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-indent: 21.75pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;There is no error to “Build” and “Debug”, but the RGB Led always keep green.&lt;/P&gt;&lt;P&gt;Appreciate for any help on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Aug 2018 07:14:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801980#M734</guid>
      <dc:creator>tonytao</dc:creator>
      <dc:date>2018-08-19T07:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801981#M735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;A _jive_internal="true" data-content-finding="Community" data-userid="295238" data-username="tonytao" href="https://community.nxp.com/people/tonytao"&gt;Tony Tao&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;Please set PTA1 to low , then the RED LED should be on .&lt;/P&gt;&lt;P&gt;Have a look at the schematic of FRDM-K22 board :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/63178i2F067E9B103E5E98/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 08:56:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801981#M735</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-08-20T08:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801982#M736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(int*)0x400FF014 = 0x06;&amp;nbsp;&amp;nbsp; &amp;nbsp;//set PTA1 (Red) &amp;amp; PTA2 (Green) as Output&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(int*)0x400FF0D4 = 0x20;&amp;nbsp;&amp;nbsp; //Set PTD5 (Blue) as Output&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(int*)0x400FF000 = 0x06;&amp;nbsp;&amp;nbsp; &amp;nbsp;//set PTA1 &amp;amp; PTA2 as High&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(int*)0x400FF0C0 = 0x20;&amp;nbsp;&amp;nbsp; //set PTD5 as High&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is the code I wrote. I set all PTA1, PTA2, PTD5 to High, and the RGB LED should be OFF, but the LED just keep Green.&lt;/P&gt;&lt;P&gt;and I tried different setting (like set PTA1 as low), but it look like the code did nothing on it, just the LED keep green. Did I do something wrong else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 13:56:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801982#M736</guid>
      <dc:creator>tonytao</dc:creator>
      <dc:date>2018-08-20T13:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801983#M737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tony,&lt;/P&gt;&lt;P&gt;Firtly, please enable the clock of PORTA and PORTD,&lt;/P&gt;&lt;P&gt;then config PTA1 PTA2 and PTD5 to as GPIO :&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&amp;nbsp; &lt;SPAN class="token function"&gt;CLOCK_EnableClock&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;kCLOCK_PortA&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&amp;nbsp; 
&amp;nbsp; &lt;SPAN class="token function"&gt;CLOCK_EnableClock&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;kCLOCK_PortD&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&amp;nbsp; 

&amp;nbsp; &lt;SPAN class="token function"&gt;PORT_SetPinMux&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;PORTA&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1U&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; kPORT_MuxAsGpio&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; &lt;SPAN class="token function"&gt;PORT_SetPinMux&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;PORTA&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2U&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; kPORT_MuxAsGpio&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; 
&amp;nbsp; &lt;SPAN class="token function"&gt;PORT_SetPinMux&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;PORTD&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;5U&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; kPORT_MuxAsGpio&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; 
&amp;nbsp; 
 &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0x400FF014&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0x06&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//set PTA1 (Red) &amp;amp; PTA2 (Green) as Output&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *(int*)0x400FF0D4 = 0x20;&amp;nbsp;&amp;nbsp; //Set PTD5 (Blue) as Output&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;
 &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0x400FF000&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0x06&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//set PTA1 &amp;amp; PTA2 as High&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;
 &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0x400FF0C0&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0x20&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="comment token"&gt;//set PTD5 as High‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it help,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 03:14:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801983#M737</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-08-22T03:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801984#M738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alice,&lt;/P&gt;&lt;P&gt;thank you so much for you replay!&lt;/P&gt;&lt;P&gt;But I still have two problem:&lt;/P&gt;&lt;P&gt;1. when I add the code above and try to build the code , I got an Error of&amp;nbsp; 'kPORT_MuxAsGpio' undeclared (first use in this function) and the building stop at :&lt;/P&gt;&lt;P&gt;PORT_SetPinMux(PORTA, 1U, kPORT_MuxAsGpio);&lt;/P&gt;&lt;P&gt;when I try to open the pins icon,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/67276i737F756656F49D8D/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_2.jpg" alt="pastedImage_2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;the IDE tell me No processor selected, but on the Project Settings - MCU, the setting is MK22FN512VLH12 already.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/67337i7EB879F577C28A45/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_3.jpg" alt="pastedImage_3.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. could you please tell me what is GPIO clock, why I have to Enable it? and what does "PORT_SetPinMux(PORTA, 1U, kPORT_MuxAsGpio);" doing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 13:25:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801984#M738</guid>
      <dc:creator>tonytao</dc:creator>
      <dc:date>2018-08-22T13:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801985#M739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The definition of "kPORT_MuxAsGpio" is in fsl_port.h file ,&amp;nbsp; please include it :&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;#include "fsl_port.h"&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;2. Before we use the port ， we need to first enable the clock , please have a look at the Reference Manule of your chip :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/67865i3476F20AFCB4E025/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3. I was wondering why you&amp;nbsp; configure registers by yourself on by one ,&amp;nbsp; you&amp;nbsp; can use SDK driver to configure,&lt;/P&gt;&lt;P&gt;also there is gpio demo under SDK package :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/67954iBECC519EA1ED1C80/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2018 08:05:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801985#M739</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-08-23T08:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801986#M740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alice,&lt;/P&gt;&lt;P&gt;Appreciate your reply, I was using Kinetis Design Studio 3 IDE and Processor Expert, and be advised to use MCUXpresso.&lt;/P&gt;&lt;P&gt;I was expect the MCUXpresso and config tool should is as easy as Processor Expert.&lt;/P&gt;&lt;P&gt;and on the Processor Expert, there is a way to W/R register directly. that is why the question come from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but thank you again for your time, it help a lot.&lt;/P&gt;&lt;P&gt;have a good day!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2018 13:51:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801986#M740</guid>
      <dc:creator>tonytao</dc:creator>
      <dc:date>2018-08-23T13:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: MCUXpresso</title>
      <link>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801987#M741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tony,&lt;/P&gt;&lt;P&gt;You are welcome .&lt;/P&gt;&lt;P&gt;In MCUXpresso IDE, you can also use &amp;nbsp;Pins Tool, Clocks Tool and Peripherals Tool to configure&lt;/P&gt;&lt;P&gt;like Processor Expert, about detail please take a look at "MCUXpresso_IDE_User_Guide.pdf"&lt;/P&gt;&lt;P&gt;-&amp;gt;12. MCUXpresso Config Tools .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;TIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 06:24:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-General/MCUXpresso/m-p/801987#M741</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2018-08-28T06:24:39Z</dc:date>
    </item>
  </channel>
</rss>

