views:

148

answers:

2

Hello everyone,

I am involved in a project which requires designing a mini rover (mars rover types). I am using ATMega32 micro controller. I have other hardware like DC motors, IR sensors etc. My query is that is there any IDE that I can use to code the micro controller? It must be user friendly since I am new to the concept of micro controller coding, and also it must have simulators. I did look it up on the net, but there are so many terms associated with it, that it confused me in the end. I think a simple IDE where I can write code, test it using simulator would be enough. Any suggestions?

+2  A: 

I would try the Arduino's IDE: http://www.arduino.cc/en/Main/Software

It supports a lot of things such as building and debugging and interfacing with avrdude all from inside the IDE, so definitely a good one for embedded work, though I've never used it myself.

Also, while you are there, you may want to give the Wiring libraries a try. They are really nice for new people and are specifically for the ATMega32(I think).

Earlz
+1  A: 

There's no silver bullet. Start here http://www.atmel.com/dyn/products/tools_v2.asp?family_id=607 Look for some videos on Youtube to learn. Arduino is also a very good choice like Earlz wrote.

O Engenheiro