<?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: Please help: Simple program using interrupt on LPC12xx</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568776#M19425</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by tbutuza on Thu May 12 12:57:38 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Akhilpo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your help, but the problem is different.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As I wrote I know how to write programs for LPC1768 using interrupts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So it is clear to me how to deal with irq handlers in general.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My problem is that it is not clear to me how to do such interrupt stuff on LPC12xx.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to port LPC1768 systick led blinker program to LPC1227 but it does not work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 23:45:51 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T23:45:51Z</dc:date>
    <item>
      <title>Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568774#M19423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by tbutuza on Thu May 12 11:01:04 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I try to learn programming LPC1227.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Previously I could make simple programs for LPC1769 but I have almost no success with LPC1227.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like to use interrupt for some simple tasks for example blinking a led by Systick or catch received characters from uart0 by interrupt.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I do led blinking with loops, it works. So the compiler, downloader and my hardware seems ok. But when trying use interrupt, I have no success.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately I did not found useful tutorial or good example programs for LPC12 on the Internet. Or, when I found something it is really hard to make it complete with libraries, makefile and linker script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please help me. I'd like to have a simple program that demonstrates using interrupt on LPC12 without any extra libraries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like to have a really easy to understand, simple (without extra libraries, CMSIS) but complete (all necessary headers, linker script, makefile) reproducible project.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The&amp;nbsp; rpgram should be compiled without using ide, just by command line gnu tools.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using gnu compiler on Ubuntu 11.04 and using lpc21isp for programming the chip using its built-in bootloader.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've patched the lpc21isp to program LPC1227, because originally it does not support it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I use a custom board for LPC1227. It has nothing special.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The only significant features are the power regulator, quartz and a led tied to one pin (interfaced by a transistor)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tamas Butuza&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568774#M19423</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568775#M19424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by akhilpo on Thu May 12 12:30:58 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I am too new to arm. So far i got a enough know how about the working of its perpherals, its mappings etc. But still I dont know how we are implementing interrupts. What I know is there are some handler names defined in 'cr_startup_lpc11.c'. Pick the one required and just declare function with that name. For eg: if you need to implement interrupt for timer0, just declare like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;void TIMER32_0_IRQHandler (void){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --Your code--&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And also include this code in the main function: NVIC_EnableIRQ(IRQ_Type IRQn).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thats all I know so far. I would like to know much deeper about this if I someone could help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568775#M19424</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568776#M19425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by tbutuza on Thu May 12 12:57:38 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Akhilpo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your help, but the problem is different.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As I wrote I know how to write programs for LPC1768 using interrupts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So it is clear to me how to deal with irq handlers in general.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My problem is that it is not clear to me how to do such interrupt stuff on LPC12xx.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried to port LPC1768 systick led blinker program to LPC1227 but it does not work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568776#M19425</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568777#M19426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 13:45:08 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: tbutuza&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;My problem is that it is not clear to me how to do such interrupt stuff on LPC12xx.&lt;BR /&gt;I tried to port LPC1768 systick led blinker program to LPC1227 but it does not work.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My first question is, why aren't you using the LPCXpresso IDE?&amp;nbsp; At least use it to get an understanding of basics and then you can go off in your own direction.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You should probably try using the LPCXpresso examples in the LPCXpresso IDE version 3.8.3 for linux.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You will find the LPCXpresso1227_systick example project and some others in the IDE.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you realize that the LPC1227 is a Cortex M0 and the LPC1769 is a Cortex M3?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568777#M19426</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568778#M19427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by tbutuza on Thu May 12 14:32:46 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Larryvc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I prefer use simple command line tools for learning instead of ide because I'd like to understand the basics :-) Using IDE hides a lot of interesting and important things. For example, using LPCXpresso ide, I cannot learn how does the linker script and makefile work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I feel this LPCXpresso systick example is too complicated. A simple led blinking program consists of a lot of source files, needs cmsis... Why?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I really prefer simple (if possible single file) example programs for demonstrating basic functions of the mcu. Such a small simple example let me easily understand the basics. It is the reason why I'm sad with lpcxpresso examples.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I feel these examples are designed to live inside lpcxpresso environment. It seems too hard to separate them and try compile them outside of lpcxpresso.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried it, but failed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Compilig done without error but the resulting hex file is surprisingly small, only 79 bytes. It is certainly wrong.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tamas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568778#M19427</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568779#M19428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 16:25:39 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: tbutuza&lt;/STRONG&gt;&lt;BR /&gt;I tried it, but failed.&lt;BR /&gt;Compilig done without error but the resulting hex file is surprisingly small, only 79 bytes. It is certainly wrong.&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tamas,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Post your code here on the forum and we can take a look at it to try to help you get started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Using command line tools is ok if you want to use them.&amp;nbsp; We can help you with using the command line debugger (gdb) as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think CodeRedSupport can better answer your concerns and questions about the IDE and CMSIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Larry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568779#M19428</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568780#M19429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by akhilpo on Thu May 12 21:31:04 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;isn't CMSIS just maps and gives each peripherals a standard name? Whats the point in going below that layer?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568780#M19429</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568781#M19430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by jharwood on Thu May 12 22:41:52 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: akhilpo&lt;/STRONG&gt;&lt;BR /&gt; Whats the point in going below that layer?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CMSIS is great for multi-platform unity, code portability, maintainability ...etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If your system is memory constrained however, try building a project with and without CMSIS and check the differences in code size.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568781#M19430</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568782#M19431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by fastmapper on Thu May 12 23:16:03 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;For the LPC1227, the boot ROM enables the watchdog timer after reset.&amp;nbsp; Have you disabled it or ensured that it gets fed.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568782#M19431</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568783#M19432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Thu May 12 23:59:38 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: fastmapper&lt;/STRONG&gt;&lt;BR /&gt;For the LPC1227, the boot ROM enables the watchdog timer after reset.&amp;nbsp; Have you disabled it or ensured that it gets fed.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't think they have gotten to that point yet, but thanks for the heads up.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568783#M19432</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568784#M19433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by akhilpo on Fri May 13 00:25:44 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: jharwood&lt;/STRONG&gt;&lt;BR /&gt;CMSIS is great for multi-platform unity, code portability, maintainability ...etc.&lt;BR /&gt;&lt;BR /&gt;If your system is memory constrained however, try building a project with and without CMSIS and check the differences in code size.&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I exclude CMSIS, what other things will I have to take care?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568784#M19433</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568785#M19434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by jharwood on Fri May 13 11:22:43 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: akhilpo&lt;/STRONG&gt;&lt;BR /&gt;If I exclude CMSIS, what other things will I have to take care?&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Build a simple working program using the IDE to properly set up the C run time environment, and use CMSIS to access the peripherals in a convenient fashion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Study the cr_startup code, peruse the source and header files of the CMSIS library. Fully understand what they do.&amp;nbsp; Then you can decide whether to 'roll your own' startup and do without CMSIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I see that you have posted in the Minimal Blinky thread. That was an exercise in trying to do without the cr_startup and libraries. But as you have found out, you cannot just drop those examples in to a different device and expect it to run without completely understanding how they work.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568785#M19434</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568786#M19435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by tbutuza on Fri May 13 17:46:58 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now my simple systick-interrupt blinky program runs on LPC1227!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is based on on example from the Blinky thread. I could successfully port it to LPC12 and rip off completelly the cmsis.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The key of the success is: Disable the watchdog at the beginning of the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It was not needed on my previous project on LPC1769.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My next step: Using UART.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To talking about using uart on LPC12xx, I started a new thread:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://knowledgebase.nxp.com/showthread.php?t=1914&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568786#M19435</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Please help: Simple program using interrupt on LPC12xx</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568787#M19436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by larryvc on Fri May 13 20:35:38 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Tamas,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Congratulations on getting the blinky working. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Larry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 23:45:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Please-help-Simple-program-using-interrupt-on-LPC12xx/m-p/568787#M19436</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T23:45:57Z</dc:date>
    </item>
  </channel>
</rss>

