<?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: Led blinking program for 56800E in Digital Signal Controllers</title>
    <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881504#M1581</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Gayathri,&lt;/P&gt;&lt;P&gt;I suggest you download data sheet of MC56F8367 from the link:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers/digital-signal-controllers:56F836X-816X?tab=Documentation_Tab" title="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers/digital-signal-controllers:56F836X-816X?tab=Documentation_Tab"&gt;56F836X-816X|Digital Signal Controllers | NXP&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data sheet has the contents for the MC56F8367 pin assignment and pin multiplexing.&lt;/P&gt;&lt;P&gt;Ben tell you how to configure the GPIO pin. For the peripheral pins,&amp;nbsp; you have to configure the GPIOx_PER register so that the pin is peripheral rather than GPIO, then configure the Part 6 System Integration Module (SIM) especially SIM_GPS.&lt;/P&gt;&lt;P&gt;If you develop new project, I suggest you use MC56F84xxx or MC56F82xxx, they are latest.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers:Digital-Signal-Controllers" title="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers:Digital-Signal-Controllers"&gt;Digital Signal Controllers | NXP&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it can help you&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Xiangjun Rong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Feb 2019 07:11:31 GMT</pubDate>
    <dc:creator>xiangjun_rong</dc:creator>
    <dc:date>2019-02-25T07:11:31Z</dc:date>
    <item>
      <title>Led blinking program for 56800E</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881502#M1579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I need simple blinking LED&amp;nbsp; program for MC56F8367 DSC without header file. Because most of my searches for program results in large program with many header files, so i can't able to know the format (register usage)&amp;nbsp;to initialize a single pin in DSC. Please send&amp;nbsp;me any simple program to initialize any pin in MC56F8367 DSC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2019 09:53:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881502#M1579</guid>
      <dc:creator>gaya3citizen</dc:creator>
      <dc:date>2019-02-22T09:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Led blinking program for 56800E</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881503#M1580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Let's say you connected a led to GPIO F7.&lt;/P&gt;&lt;P&gt;If you are not using CW with PE, and want to handle it manually, several registers involved:&lt;/P&gt;&lt;P&gt;Initialization:&lt;/P&gt;&lt;P&gt;---------------&lt;/P&gt;&lt;P&gt;GPIOF_PUR &amp;amp;= 0xFF7F - clr power up resistor bit to disable function.&lt;/P&gt;&lt;P&gt;GPIOF_DDR |= 0x0080 - set DDR bit for OUTPUT mode&lt;/P&gt;&lt;P&gt;GPIOF_PER &amp;amp;= 0xFF7F - set as simple GPIO function&lt;/P&gt;&lt;P&gt;GPIOF_PPMODE |=0x0080 - set port to push-pull mode&lt;/P&gt;&lt;P&gt;pin activity:&lt;/P&gt;&lt;P&gt;--------------&lt;/P&gt;&lt;P&gt;Now you can set pin to 1 by GPIOF_DR |= 0x0080 or 0 by GPIOF_DR &amp;amp;= 0xFF7F&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2019 17:03:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881503#M1580</guid>
      <dc:creator>Ben</dc:creator>
      <dc:date>2019-02-23T17:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Led blinking program for 56800E</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881504#M1581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Gayathri,&lt;/P&gt;&lt;P&gt;I suggest you download data sheet of MC56F8367 from the link:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers/digital-signal-controllers:56F836X-816X?tab=Documentation_Tab" title="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers/digital-signal-controllers:56F836X-816X?tab=Documentation_Tab"&gt;56F836X-816X|Digital Signal Controllers | NXP&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data sheet has the contents for the MC56F8367 pin assignment and pin multiplexing.&lt;/P&gt;&lt;P&gt;Ben tell you how to configure the GPIO pin. For the peripheral pins,&amp;nbsp; you have to configure the GPIOx_PER register so that the pin is peripheral rather than GPIO, then configure the Part 6 System Integration Module (SIM) especially SIM_GPS.&lt;/P&gt;&lt;P&gt;If you develop new project, I suggest you use MC56F84xxx or MC56F82xxx, they are latest.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers:Digital-Signal-Controllers" title="https://www.nxp.com/products/processors-and-microcontrollers/additional-processors-and-mcus/digital-signal-controllers:Digital-Signal-Controllers"&gt;Digital Signal Controllers | NXP&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it can help you&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Xiangjun Rong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2019 07:11:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Led-blinking-program-for-56800E/m-p/881504#M1581</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2019-02-25T07:11:31Z</dc:date>
    </item>
  </channel>
</rss>

