<?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 GPIO Port Name Update, wrong in Kinetis SDK 1.2 API Documentation? in Kinetis Software Development Kit</title>
    <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/GPIO-Port-Name-Update-wrong-in-Kinetis-SDK-1-2-API-Documentation/m-p/396654#M1313</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;If you're migrating a project that uses custom pin declarations, and you copy old "board" files, you're going to have a problem...&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;Make pin used to be :&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;kGpioLED2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = GPIO_MAKE_PIN(HW_GPIOB, 19U),&amp;nbsp; /* */&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;where HW_GPIOB set the port. &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;The documentation says something to the effect of HW_PORTB would be proper now...&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;// Feel free to change the pin names as what you want&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="keyword" style="color: #008000;"&gt;enum&lt;/SPAN&gt; _gpio_pins &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;{&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED1 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x0),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED2 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x1),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED3 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x2),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED4 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x3),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;};&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;But that fails to compile...&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;So I saw in the new gpio_pins.h file is this guy: &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;GPIOB_IDX&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;Which now compiles...&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 May 2015 19:56:52 GMT</pubDate>
    <dc:creator>bosleymusic_com</dc:creator>
    <dc:date>2015-05-26T19:56:52Z</dc:date>
    <item>
      <title>GPIO Port Name Update, wrong in Kinetis SDK 1.2 API Documentation?</title>
      <link>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/GPIO-Port-Name-Update-wrong-in-Kinetis-SDK-1-2-API-Documentation/m-p/396654#M1313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;If you're migrating a project that uses custom pin declarations, and you copy old "board" files, you're going to have a problem...&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;Make pin used to be :&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;kGpioLED2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = GPIO_MAKE_PIN(HW_GPIOB, 19U),&amp;nbsp; /* */&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;where HW_GPIOB set the port. &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;The documentation says something to the effect of HW_PORTB would be proper now...&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;// Feel free to change the pin names as what you want&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="keyword" style="color: #008000;"&gt;enum&lt;/SPAN&gt; _gpio_pins &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;{&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED1 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x0),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED2 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x1),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED3 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x2),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp; kGpioLED4 = &lt;A class="code" href="https://community.nxp.com/" style="color: #4665a2;"&gt;GPIO_MAKE_PIN&lt;/A&gt;(HW_PORTC, 0x3),&amp;nbsp; &lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;};&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;But that fails to compile...&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;So I saw in the new gpio_pins.h file is this guy: &lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;GPIOB_IDX&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;Which now compiles...&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="line" style="min-height: 8pt; padding: 0px; font-size: 13px; font-family: monospace, fixed; text-indent: -53px; padding-left: 53px; color: #51626f;"&gt;&lt;SPAN class="comment" style="color: #800000;"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2015 19:56:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Software-Development-Kit/GPIO-Port-Name-Update-wrong-in-Kinetis-SDK-1-2-API-Documentation/m-p/396654#M1313</guid>
      <dc:creator>bosleymusic_com</dc:creator>
      <dc:date>2015-05-26T19:56:52Z</dc:date>
    </item>
  </channel>
</rss>

