views:

84

answers:

2

AVR or PIC,which one is better? Using MATLAB as assembly language. (I am a beginner)

A: 

I found AVR chips and tools are easier to use, but PIC were much cheaper and more common. Both have their OWN assembly language.

You can get C compilers that compile down to both assembly languages. I'm not sure if MATLAB will though, last time I used it MATLAB was I high level Math language.

tarn
+1  A: 

AVR vs PIC? big question, answer depends on application. search SO and you'll find several opinions.

MATLAB compiles to C. you can compile C to whatever assembly language you want, AVR and PIC have different ones. Personally, I've done MATLAB to C to PIC, it was painful to get running, but automated now, and awesome.

ArielP