vote up 1 vote down star
1

How does the .NET Micro Framework with a dev board compare to something like an Arduino, or Nintendo DS for starting with embedded programming?

flag

41% accept rate

4 Answers

vote up 1 vote down

its true, .Net MF is totally different. Ethernet, Serial Ports(UART),SPI, I2C, GPIOs supports are all in one.

And you are using VS 2008. The best IDE.

link|flag
vote up 1 vote down

If you are interested in using the .NET micro framework take a look at the tahoe II from devicesolutions.net

link|flag
vote up 4 vote down

The .NET Micro Framework is targeted for embedded systems that contain a powerful processor (currently ARM7, ARM9 and Blackfin).

The Arduino board is based on an 8-bit AVR microcontroller for which the .NET Micro Framework isn't even available. Consider for example the memory requirements of the framework: It is advertised to consume as low as about 300 kB of memory. Arduino has a total of 16 kB of program memory + 1 kB of RAM.

Nintendo DS, on the other hand, is at least technically capable of running the .NET Micro Framework.

If you are interested in embedded programming for hardware such as Arduino, I can assure you that you don't need (and usually can't use) any high level library or an operating system. In fact, you'll find that programming for a small microcontroller will be a joy because everything is very simple and under your total control.

link|flag
Actually its 32kb not 300 – Matt Davison Oct 25 at 14:14
My 300 kB claim is based on the Detailed White Paper that is available from this page: msdn.microsoft.com/en-us/netframework/…. It says "The smallest .NET footprint yet (about 300 KB of RAM)". – smt Oct 26 at 11:23
vote up 1 vote down

This answer is a little off-topic, but....

I personally use PICs from microchip.com. They are really inexpensive and have quite a lot of stuff built in with tons of options/versions. While I would love to use .NET Micro, but it seems to be developed for higher-end chips that are designed to run OSes. A lot of embedded projects, especially in the communications field need higher end chips ($100+ boards in small qty), but a lot of good embedded projects are small stuff and need $2 cpus. .NET Micro doesn't target those.

link|flag

Your Answer

Get an OpenID
or

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