views:

339

answers:

2

I'm doing some development right now using dsPICs and I'm not exactly in love with MPLAB. I'm actually using Visual Studio with a makefile project. Currently I'm using SCons, which seems to work fairly well, after finding a helpful guide to setting up to use an alternate compiler. Still, I can't help but wonder, is there a better build system for this? And also, is there a better way to make Scons do this?

+2  A: 

Just use vim, makefiles and call the MPLAB command line compiler yourself.

Adam Hawes
we managing our product compiled for ten's of different hw platforms and using many different compilers using this method it's the best way one can choose.
Ilya
A: 

The very simplest way to do embedded development is to use your favourite code editor for writing the code, then switch to the compiler's IDE to build and download the code to the processor.

Obviously, the code editor and the compiler IDE may be the same thing, which is even simpler!

Steve Melnikoff