How do I get started in embedded programing? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:24:54Zhttp://stackoverflow.com/feeds/question/45247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing31How do I get started in embedded programing?mmattax2008-09-05T04:54:30Z2009-07-29T21:51:54Z
<p>I would like to get started in embedded systems programming but don't know where to start...I have a very solid knowledge of C and C++ and would preferably like to use these languages with the GNU compilers. I have a degree in CS so I have a solid foundation...</p>
<p>I have no clue about what hardware and other resources that I will need...If you work or are knowledgeable in this area, how did you get started and what are some good resource for a beginner?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/45265#452651Answer by Daemin for How do I get started in embedded programing?Daemin2008-09-05T05:22:22Z2008-09-05T05:22:22Z<p>Depends on what processor and device type you want to target. I.e. mobile/hand held, or small microcontrollers?</p>
<p>If you want to go for the microcontrollers then you could try developing with the MSP430 - I've found that to be a reasonable chip and nice to program with (even assembly). For that try the small usb based development kit <a href="http://focus.ti.com/mcu/docs/mcuprodmsptoolsw.tsp?sectionId=95&tabId=1203&familyId=342&toolTypeId=1" rel="nofollow">(eZ430)</a>.</p>
<p>For mobile phones you could either go the Windows CE route, or try your hand at using Linux. Though in this day and age "embedded" programming for small devices and mobile phones is similar to desktop application development that was several years ago (1995 to 2000 or there abouts),</p>
<p>You can get processor development starter kits from many companies on the net. Just pick a processor (ARM, MIPS, etc) and buy a development starter kit, though they can be somewhat pricey.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/45273#452737Answer by dwj for How do I get started in embedded programing?dwj2008-09-05T05:30:27Z2008-10-13T18:34:51Z<p>I got started right out of college by joining a company that did embedded development. All my previous experience was PC-based but I knew C and what happens on a low level inside the machine.</p>
<p>Here are a couple of options for getting in:</p>
<ul>
<li><p>Do you work at a company that has embedded work going on? Can you transfer into the group?</p></li>
<li><p>Look for companies in your area hiring junior embedded software engineers. Many want some embedded experience but don't let that stop you from trying to get in the door. Knowledge of how code really runs (when is the stack used? the heap? what do pointers really do?) is more important.</p></li>
<li><p>Pick up a development kit and try some home brew projects (e.g., <a href="http://www.embeddedarm.com/products/board-detail.php?product=KIT-ARM#" rel="nofollow">http://www.embeddedarm.com/products/board-detail.php?product=KIT-ARM#</a>) (now you are talking $)</p></li>
</ul>
<p>Brush up on your knowledge of how stacks, heaps, pointers, memory allocation (or lack thereof) all work. Read up on real-time OSes (<a href="http://en.wikipedia.org/wiki/MicroC/OS-II" rel="nofollow">uC/OS-II</a> is a good start). Practice writing clean, maintainable, small code!</p>
<p>Jack Ganssle has a <a href="http://ganssle.com/tem/tem166.pdf" rel="nofollow">review</a> of a new book, John Davies' "MSP430
Microcontroller Basics," that he gives high props to for beginning and experienced embedded developers.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/45300#453002Answer by Ben Collins for How do I get started in embedded programing?Ben Collins2008-09-05T05:59:19Z2008-09-05T05:59:19Z<p>I got my start by writing a PC-based operating system from scratch. It was a fabulous way to get used to writing applications on-the-metal (which is essentially what 'embedded programming' <em>is</em>, even if you're using a RTOS like VxWorks or whatever).</p>
<p>You don't need to buy anything - just download Bochs, which is a truly excellent x86 emulator. QEMU is good too, but I found bochs easier to start with. </p>
<p><a href="http://osdev.org" rel="nofollow">OSDev.org</a> is a great place to start. The forums there are very helpful and friendly (because it's a niche and hasn't been invaded by the moronic masses (mostly).</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/45332#4533220Answer by Justin Tanner for How do I get started in embedded programing?Justin Tanner2008-09-05T06:30:25Z2008-09-05T06:30:25Z<p>Here are some tips to get started in embedded systems.</p>
<ol>
<li>Get a micro-controller. Try starting with a <a href="http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3879" rel="nofollow">demonstration board</a>. ( they are cheap now )</li>
<li>Dive right into programming and exploring the board ( turn on LEDs, play with timers )</li>
<li>Subscribe to <a href="http://www.hackaday.com/" rel="nofollow">Hack a Day</a></li>
<li>Try a more ambitious project, involving external components ( accelerometers, DC motors, etc).</li>
<li>Publish your project online ( maybe get it featured on Hack a Day )</li>
<li>Take a class in embedded systems or real time operating systems</li>
</ol>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/45352#453521Answer by David Sykes for How do I get started in embedded programing?David Sykes2008-09-05T06:51:22Z2008-09-05T06:51:22Z<p>For real cheap kit you can use to experiment at home you could try Pic chips using the <a href="http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1406&dDocName=en010053" rel="nofollow">PICKit Flash Starter Kit</a>
Pic chips are very cheap, easy to get into. There is a <a href="http://microchip.htsoft.com/products/compilers/PICClite.php" rel="nofollow">free C compiler</a> for it.</p>
<p>If you want to talk to a pc the <a href="http://www.velleman.be/ot/en/product/view/?id=351346" rel="nofollow">Vellemen USB experimenter</a> board works quite well for low bandwidth data.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/45353#453534Answer by Registered User for How do I get started in embedded programing?Registered User2008-09-05T06:52:42Z2008-09-05T06:52:42Z<p>Try an <a href="http://www.arduino.cc" rel="nofollow">Arduino</a>.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/47669#476691Answer by Jeff V for How do I get started in embedded programing?Jeff V2008-09-06T17:06:02Z2008-09-06T17:06:02Z<p>If you have good knowledge in Linux, you can into the industry by learning more about embedded Linux.<p></p>
<p>There will be more and more demand for this embedded systems with an RTOS (such as embedded linux) as more capable chips get cheaper and the industry strives to make use of them. You can migrate your career closer and closer to embedded systems that way.<p></p>
<p>Eventually, you will get on a project with a microcontroller with a total of 8 pins, 32 registers, 1k ram and 16k flash. Yee haa! ;-)</p>
<p>Also, you can get experience with digital circuits with hobby projects like robot kits. <a href="http://www.makezine.com" rel="nofollow">Make Magazine</a> has a ton of cool projects like this.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/48770#487701Answer by Cristián Romo for How do I get started in embedded programing?Cristián Romo2008-09-07T20:49:43Z2008-09-07T20:49:43Z<p>I would reccomend starting out with <a href="http://sourceforge.net/project/showfiles.php?group_id=114505" rel="nofollow">devkitPro</a> which is GCC based and has toolchains for the Nintendo DS, GameBoy Advance, Wii, GameCube, and PlayStation Portable. There are communities where you can ask questions for the different platforms. The ones that I know of are <a href="http://gbadev.org/" rel="nofollow">GBADev</a> (for GBA and NDS), and <a href="http://wiibrew.org/wiki/Main_Page" rel="nofollow">Wiibrew</a>.</p>
<p>As far as resources, Wiibrew holds a fair amount of documentation for Wii, while the major resources for GBA/NDS are <a href="http://www.coranac.com/tonc/text/" rel="nofollow">TONC</a> and <a href="http://nocash.emubase.de/gbatek.htm" rel="nofollow">GBATek</a>.</p>
<p>You don't need an actual system to do development for a few of the systems, since there are good emulators such as <a href="http://nocash.emubase.de/gba.htm" rel="nofollow">no$gba</a> for the GBA/NDS and <a href="http://vba.ngemu.com/" rel="nofollow">VisualBoy Advance</a> for GBA, both of which have some debug capabilities.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/53368#533680Answer by Adam Pierce for How do I get started in embedded programing?Adam Pierce2008-09-10T03:23:52Z2008-09-10T03:23:52Z<p>Depends on your skill level and what you want to achieve. If you want something a little more beefy than the PICs and AVRs, I've recently been using the SAM7-P256 development kit from <a href="http://www.olimex.com/" rel="nofollow">Olimex</a> which is based on the ARM7 32 bit processor. It was cheap and GNU tools are available for it. You can cross-compile under Windows or Linux. I wrote a <a href="http://www.doctort.org/adam/nerd-notes/getting-started-with-the-olimex-sam7-p256.html" rel="nofollow">step-by-step on my blog</a> to get a GCC toolchain running under Linux for this board. I also found <a href="http://www.embedded.com/design/opensource/201802580?_requestid=264000" rel="nofollow">this article</a> to be an excellent, more detailed technical description of the ARM chip.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/110499#1104992Answer by yogeesh for How do I get started in embedded programing?yogeesh2008-09-21T07:49:29Z2008-09-21T07:49:29Z<p>Michael Barr's <a href="http://rads.stackoverflow.com/amzn/click/0596009836" rel="nofollow">Programming Embedded Systems: With C and GNU Development Tools</a> is the place to start. Also, browse through Embedded systems guru Jack Ganssle's articles in his <a href="http://ganssle.com/articles.htm" rel="nofollow">website</a> and subscribe to his Muse.</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/110517#1105170Answer by Iulian Șerbănoiu for How do I get started in embedded programing?Iulian Șerbănoiu2008-09-21T08:09:11Z2008-09-21T08:09:11Z<p><a href="http://www.gnuarm.com/" rel="nofollow">http://www.gnuarm.com/</a> or <a href="http://www.gnuarm.org/" rel="nofollow">http://www.gnuarm.org/</a></p>
<p>There are many GCC based toolchains that create good code (I personally have used <a href="http://www.gnuarm.org/files.html" rel="nofollow">gnuarm 4.2.2</a>)</p>
<p>Join their mailing list and ask some the <a href="http://groups.yahoo.com/group/gnuarm/" rel="nofollow">community</a> some questions.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/110594#1105941Answer by Khouri for How do I get started in embedded programing?Khouri2008-09-21T09:09:37Z2008-09-21T09:09:37Z<p>My school had the opportunity to specialize in Technical Informatics (as they called it) for the last 2 years of the program. I got classes on RTOSs, soldering and (some) welding, programming for microcontrollers and the nitty-gritty details of processors. The "normal" CS students got classes on design patterns, advanced OO, genetic algorithms and such. This was a great intro, but it's a very wide field. </p>
<p>My final internship was on porting a protocol stack to an OS-less, embeddded platform. I learned a LOT in those 4 months. You read about things like caches, MMUs and low-level protocols, but it's not until you´ve tried to get them working (or stop them from breaking your code), that you really get a feel for them. </p>
<p>The best way to start is to read up on the area of embedded software that you're interested in and just build something. The MSP430 has a very nice USB-based demo board, AVR microcontrollers are very popular for small projects, but there is a ton of stuff out there. There are a lot of websites dedicated to home-brew weather stations, robots, lighting set-ups and modifying existing products (like the RoboSapien). Try to build a small device from the descriptions on these websites and start from there.</p>
<p>You could also apply for a job in the embedded applications field and once you have some experience, expand your job into fields like drivers and boot code. Note: for the products we build, we usually write the Board Support Package and the customer writes the application software, YMMV.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/114269#1142692Answer by MrZebra for How do I get started in embedded programing?MrZebra2008-09-22T11:06:18Z2008-09-22T11:06:18Z<p>PIC Microcontrollers from Microchip are a great way to get into embedded programming, because the hardware is so simple. All you need in terms of circuitry is a ceramic resonator, a capacitor for the power supply, and a resistor for the reset. These are all very cheap.</p>
<p>Get the 3-pin kind of ceramic resonator - 2 pins go directly to the PIC, the centre pin goes to ground. Put an electrolytic capacitor of about 0.1 or 1uF between +5v and ground, and a 10k resistor between the MCLR pin (normally pin 1) and +5v. That's all the hardware you need! You really can't get much simpler. DON'T think you can skip the capacitor though, even if you're just turning a single LED on and off. Your CPU will reboot at random times and you'll have nightmares trying to figure out why.</p>
<p>You then connect it to your PIC programmer (there are different kinds available, from cheap Chinese knock-offs to expensive in-circuit emulators), flash the chip, and you're done. Chips are cheap, and the flash kinds can be reprogrammed many times. (Be sure to get the FLASH ones, not the one-time-programmable (OTP) ones! The flash ones have a part number like xxFxxxx, whereas the OTP ones are xxCxxxx.)</p>
<p>All these components are cheap and easily available from mail-order suppliers. In the UK, I recommend <a href="http://www.rapidonline.com/" rel="nofollow">Rapid Electronics</a> and <a href="http://uk.farnell.com/jsp/home/homepage.jsp" rel="nofollow">Farnell</a>.</p>
<p>There is loads of documentation and samples for PICs available directly from Microchip's website. They also give away a free IDE, assembler, and a trial C compiler.</p>
<p>The microcontrollers have lots of on-board peripherals, including analog->digital converters, RS-232, timers, interrupts, I2C, CAN, and even USB. More than enough to get you started in the world of embedded programming.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/114294#1142942Answer by MrZebra for How do I get started in embedded programing?MrZebra2008-09-22T11:15:06Z2008-09-22T11:15:06Z<p>(Posting this as a separate reply, because it's quite different)</p>
<p>A more complex but powerful alternative to the PIC is an ARM based processor. This will give you more horsepower to play with, but is more difficult from an electronics point of view. These only come in large surface mount packages, so you won't want to build the circuit yourself.</p>
<p>A good one is the MAKE controller from <a href="http://www.makingthings.com/" rel="nofollow">Making Things</a>. It has a powerful ARM CPU, and very simple to use board with screw terminals for digital I/O, analogue inputs, and servo drive. Best of all, it has very good software support. It comes complete with a full GCC tool chain, lightweight RTOS, and custom driver library for all the CPU's special features. I have one of these, and within an hour of opening the box I had it controlling servos. It also has built-in Ethernet support, which allowed me to write a simple HTTP server for it very quickly.</p>
<p>It's just over $100, which is a pretty reasonable price for a well-made piece of kit. Disadvantages are that it's not as flexible from a hardware point of view as designing your own circuit. However, designing a circuit for a 64-pin plus surface mount IC is not something to be taken lightly. You don't need any special hardware to program it, it plugs directly into the USB.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/167753#1677530Answer by unknown (yahoo) for How do I get started in embedded programing?unknown (yahoo)2008-10-03T16:29:34Z2008-10-03T16:29:34Z<p>The field of embedded software is actually quite broad, so it depends on where you want to focus. Is it more bare metal programming with 8 bit processors? Something with a lot of I/O, peripherals, and maybe an RTOS? Or are you referring to higher end stuff with something like Windows CE / embedded Linux?</p>
<p>Personally, my degree is in EE and I had some programming background before I got a job w/ embedded stuff (all of the above, except for the embedded Linux / WinCE stuff). </p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/204939#2049390Answer by Vaibhav Garg for How do I get started in embedded programing?Vaibhav Garg2008-10-15T14:30:41Z2008-10-15T14:30:41Z<p>A point that I would like to add that unlike programmers on the desktop, the resources in an embedded system are relatively less. You must keep an eye on the ram/ code footprint of any application you write as a mental training before a foray into embedded.</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/206928#2069281Answer by Leon Sodhi for How do I get started in embedded programing?Leon Sodhi2008-10-15T23:44:53Z2008-10-15T23:44:53Z<p>As you've probably gathered from reading the other posts, hardware knowledge is quite important in developing code for embedded systems. Like you, I also have a CS degree but found it quite challenging working in an embedded systems environment and trying to communicate with people that come from an almost entirely hardware orientated background. </p>
<p>My first recommendation would thus be to read up on the basics of hardware or possibly even get some formal electronics training. Depending on the embedded environment you're looking at going into, learning some VHDL might also be helpful, I was at one point given some code and told to write the software having never really seen VHDL before! </p>
<p>From a software perspective I would also have to completely agree with Ben Collins, writing a small and simple OS for your PC is an excellent (and free) way to get used to writing code on the bare metal. I would certainly have been lost without that knowledge.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/206954#2069543Answer by gthuffman for How do I get started in embedded programing?gthuffman2008-10-16T00:00:34Z2008-10-16T00:00:34Z<p>I have some suggestions:</p>
<p>1) Learn microprocessor basics such as memory systems, how peripheral devices are accessed, and the difference between memory latency and RTOS "TICK" times.</p>
<p>2) Know what happens when an interrupt is serviced. In case you didn't catch that, know what happens when an interrupt is serviced.</p>
<p>3) You might not like this next suggestion, but learn assembly language for any processor. Once you understand assembly language, C and C++ will make a lot more sense in how the compilers create code.</p>
<p>4) Be ready to hold a scope probe. I had a very good mentor that made the comment, "you cannot program without a scope." This comment stills serves me more than 12 years after I heard it.</p>
<p>5) And above all, be ready to debug and or troubleshoot really different kinds of problems than you would encounter with non-embedded programs. Embedded systems are one of the most difficult to get "right", but the rewards are great!</p>
<p>Good luck in your adventure!</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/429726#4297262Answer by Johan for How do I get started in embedded programing?Johan2009-01-09T21:02:37Z2009-03-18T06:30:26Z<ol>
<li><p>The first thing is to think embedded:
Since it is not uncommon in the embedded world to run stuff for years and years in with MCU that only has a few kB of RAM you need to make sure your programs are perfect.
You need to make sure you don't have any memory leaks or anything like that,
and wipe your mind from the idea that a reboot is ok.</p></li>
<li><p>Get a dev-card and get to work.
Get some hardware and do <a href="http://hackaday.com/" rel="nofollow">something fun</a>, AVR:s are very popular right now since
they have a really go tool support and a <a href="http://www.avrfreaks.net/" rel="nofollow">live community</a> to ask for help.
Or maybe do some embedded Linux stuff, there are some really cheap and funny Linux cards right now, and a lot off them are really nice to work with.</p></li>
<li><p>Find a embedded company and brag about what you just did in point 2.
And if you impress them, I bet you get a work offer :-)</p></li>
</ol>
<p><hr /></p>
<p>Update: I forgot to mention one little thing,
both in the AVR and linux case you use the gcc compiler.
The AVR does actually have a quite good gcc port (<a href="http://winavr.sourceforge.net/" rel="nofollow">winavr</a>) not many 8-bit mcu has that, and that port is sponsored by Atmel.</p>
<p>Update: Hardware, the linux case is also fun.
There is a lot of cheap cards around.</p>
<ul>
<li><a href="http://www.atmel.com/dyn/products/tools%5Fcard.asp?tool%5Fid=4102" rel="nofollow">NGW100</a> - You have 2 network interfaces and access to all gpio (and more)</li>
<li><a href="http://www.opencircuits.com/Linuxstamp" rel="nofollow">LinuxStamp</a> - A real minimalistic LinuxCard.</li>
<li><a href="http://beagleboard.org/" rel="nofollow">BeagleBoard</a> - A little monster</li>
<li><a href="http://www.linuxdevices.com/news/NS3112296807.html" rel="nofollow">GumStick</a> - Another nice little card</li>
</ul>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/657092#6570924Answer by MrEvil for How do I get started in embedded programing?MrEvil2009-03-18T05:42:46Z2009-03-18T06:37:36Z<p>I'm a fan of the <a href="http://en.wikipedia.org/wiki/AVR%5FButterfly" rel="nofollow">AVR butterfly</a> and the <a href="http://www.arduino.cc/" rel="nofollow">Arduino</a>. Both are very cheap, < $30 USD so if you burn out your board it's no big deal. Both have lots of sample programs and examples of how to interface with common hardware. Arduino also has a very large open source hardware community that produces add-on shields, schematics, tutorials etc... Once you've got your sea legs the Arduino boot loader can be overwritten using any AVR ICSP programmer allowing you to use the GCC AVR toolchain directly. </p>
<p>Because of your experience you may be tempted to jump directly to one of the more advanced boards but I would advise against it. Programming for embedded systems is a whole new beast with limited debugging options and on hardware that you've patched together using jumper wire and hot glue. By starting with a known, well documented environment like the Arduino you can eliminate many variables making it easier to solve problems that would otherwise frustrate a beginner.</p>
<p>Also, I forgot to mention some helpful resources:</p>
<ul>
<li><a href="http://www.sparkfun.com/" rel="nofollow">Sparkfun</a> - Really good hobbyist retailer, with excellent forums and tutorials.</li>
<li><a href="http://www.avrfreaks.net/" rel="nofollow">AVR Freaks</a> - The main online community for AVR related hardware.</li>
<li>Also look around for robotics clubs that may be in your area.</li>
</ul>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/1203272#12032720Answer by rt for How do I get started in embedded programing?rt2009-07-29T21:48:38Z2009-07-29T21:48:38Z<p>Hello Everyone,</p>
<p>I have a few questions along the same lines. I have a EE background with fpga design expereince and writing low-level C/C++ firmware code. I want to get into the embedded field more in the lines of linux RTOS. I have bought a few RTOS fundamentals books to give me theoretical knowledge. But I would like to get my hands dirty with some actual project I can work with. Can someone please tell me a of an emulator/simulator I can use on my PC to get started with embedded linux and some reference books/ sites to actually build some stuff with it as well.</p>
<p>Thank You,
-rt</p>
http://stackoverflow.com/questions/45247/how-do-i-get-started-in-embedded-programing/1203282#12032820Answer by User for How do I get started in embedded programing?User2009-07-29T21:51:54Z2009-07-29T21:51:54Z<p>Get embedded in some embedded project. There you'll see what it's like and whether you like it.</p>