I have a LPC3141 developers kit from Embeded artists and i have sucessfully created free IDE based on eclipse that can sucesfully compile for ARM. I tested my IDE using included blinker example. I have a startup code and a linker script which work and i will use them from now on.

Now i would like to learn how to start my own blinker program from nothing. What do i have to program first? Is it GPIO registers, timer registers, uart registers,... ??? What is the very first thing? Is the thing i need to write in fact a HAL? I allready ordered this book, what do you think?

Thank you.

Regards Ziga

link|improve this question

61% accept rate
If you have the code, can't you examine it to see what you need to write? – Michael Mior Jun 30 '11 at 19:32
feedback

1 Answer

These pages might be useful, same family, different chips.

http://lpcstuff.blogspot.com/2008/09/lpc-2148-blinker-1.html

http://lpcstuff.blogspot.com/2010/08/nxp-mbed-aint-so-bad-after-all.html

You wont need timers or interrupts or anything like that to get started. have a C loop count for a (long) while then change the state of the gpio. You will need to configure the gpio as an output. And careful not to have the C compiler optimize out your delay loop. Later you can get into polling the timer, then after that interrupts if you feel you really need to.

link|improve this answer
I guess those were asm only examples, this one is a different arm, but shows the asm to C connection, sam7stuff.blogspot.com click on my name/profile and see a number of similar sites, mostly about blinking the led on various arm micros, asm and C. – dwelch Jul 1 '11 at 1:35
have a bunch more now at github.com/dwelch67 lpc, st, and other stuff. – dwelch Nov 17 '11 at 2:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.