We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello, I am new to µvision and would like to write frimware with it. I looked in help of µvision to learn how to write my own application but there only examples are presented and not a user manual to get to the terms, for example statement such as ACDR |= starts ADC conversion and ADCR &= stops ADC conversion. Where can I learn these terms ??? I am looking forward to your replies. With regards, Sridhar
Software tool user manuals tell you about the tools - they do not teach you how to write firmware! "for example statement such as ACDR |= starts ADC conversion and ADCR &= stops ADC conversion. Where can I learn these terms ???" These will be covered in the Data Sheets for your particular device. Also, check out the manufacturer website for tutorials, application notes, etc. Some manfacturers and distributors run seminars & training classes Check the ARM website for general ARM stuff. A couple of books are listed here: http://www.keil.com/books/armbooks.asp Use your favourite internet search engine, with keywords like "ARM" and "tutorial" Other forums: http://www.keil.com/forum/otherforums.asp
You may need also a C language reference manual (for example: The C Programming Language, 2nd edition by Kernigan & Ritchie, http://www.keil.com/books/genbooks.asp) The C statements AND/OR constants to a Peripheral Register: '|' is the C OR operation '&' is the C AND operation
"You may need also a C language reference manual" Yes, it sounds like you need both a basic 'C' programming class and a basic ARM class: http://www.keil.com/forum/docs/thread5331.asp#msg23406