<?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>LPCXpresso IDEのトピックRe: RDB1768cmsis_LedFlash problem</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569570#M19772</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Maru_t on Mon Aug 30 18:46:43 MST 2010&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you, CodeRedSupport members, for you replying! I'll also find a Code Red's RDB1768 board here. And, I'm going to test 1768 LPCXpresso examples taking from the site you show.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I must be grateful for your taking time to clarify regarding my unawareness of different boards with LPC1768.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW, it is helping to know that LED1 is not user accessible!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If not, I might try to make LED1 flash.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maru_t&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 23:48:41 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T23:48:41Z</dc:date>
    <item>
      <title>RDB1768cmsis_LedFlash problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569568#M19770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Maru_t on Mon Aug 30 03:10:32 MST 2010&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried and failed to show a demo sample program RDB1768cmsis_LedFlash on the LPCXpresso Board (Target LPC1768).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I shortened the original source codes to test it easier, as like below in the section of[Tested source codes].&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[Results in Debug 'Build' execution] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(1)When started Debug execution on IDE(LPCXpresso v3.3), LED1 lights on without any falsh, continuing to be seemingly ON!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(2)LED2 lights on immediately after the LPC1768 board were connected to the PC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*See an attached picture of the board I used where LED1 and LED2 are labeled on it. I suppose those labelling are correct.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I need any hints or supports to have the expected results where LED2 are flashing. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any comments will be helping! Thank you!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[Tested source codes] *Other source modules codes are not changed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;int main(void) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;volatile static int i = 0 ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;int loop;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Initialise GPIO to access user LEDs&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;leds_init();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Enter an infinite loop, cycling through led flash sequence&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while(1) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Turn all leds on, then off, 5 times&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for (loop=1; loop &amp;lt; 5; loop++) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;led_on(LED_2);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;short_delay(2000);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;led_off(LED_2);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;short_delay(2000);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;short_delay(3000);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Turn each led on (and then off) in turn&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Pattern is 3,2,5,4 because of order leds are&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// laid out on board&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Turn on leds 2 and 3, ready for inverting&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Invert the current state of the leds, 5 times&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for (loop=1; loop &amp;lt; 5; loop++) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;leds_invert();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;short_delay (2000);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Turn leds off, ready for next iteration of led flashes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;leds_all_off(); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;short_delay(5000);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i++ ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return 0 ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-338269"&gt;1100633_LPCLinkProblem.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:48:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569568#M19770</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: RDB1768cmsis_LedFlash problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569569#M19771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by CodeRedSupport on Mon Aug 30 03:52:25 MST 2010&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The RDB1768cmsis_LedFlashapplication is written to run on Code Red's RDB1768 board, not the LPCXpresso board.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Although both boards have an LPC1768 MCU on them, their use of the peripherals is different in some cases (eg GPIO and leds).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would suggest that you make use of the 1768 LPCXpresso examples instead, at least until you have become familar with the system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There are some LPCXpresso 1768 examples provided in the examples subdirectory of the LPCXPresso IDE install, and further examples can be found at:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://ics.nxp.com/support/lpcxpresso/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that LED1 on the LPCXpresso board relates the debug functionality - it is not user accessible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CodeRedSupport&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:48:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569569#M19771</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: RDB1768cmsis_LedFlash problem</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569570#M19772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Maru_t on Mon Aug 30 18:46:43 MST 2010&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you, CodeRedSupport members, for you replying! I'll also find a Code Red's RDB1768 board here. And, I'm going to test 1768 LPCXpresso examples taking from the site you show.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I must be grateful for your taking time to clarify regarding my unawareness of different boards with LPC1768.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW, it is helping to know that LED1 is not user accessible!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If not, I might try to make LED1 flash.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Maru_t&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:48:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/RDB1768cmsis-LedFlash-problem/m-p/569570#M19772</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:48:41Z</dc:date>
    </item>
  </channel>
</rss>

