The easiest way to install avrdude on Mac OS X is to use macports.
Once you have macports installed simply run this as root(sudo) and go have tea while it all compiles:
- Code: Select all
port install avr-gcc avr-libc avrdude
and you're done. At least with the software install. I'm using a PL2303 serial adaptor and while it is crazy-slow, it gets the job done.
Btw, you'll have to make a few changes to the minipov .c files to get them to compile, regardless of whether you're on OS X or Linux. The error message is really weird and it took me forever to find out the stuff below. Luckily, it's just a few lines that need changing.
- Code: Select all
SIGNAL( SIG_TIMER1_COMPA)
should change to:
- Code: Select all
SIGNAL(TIMER1_COMPA_vect)
and
- Code: Select all
PGM_P largeimage_p PROGMEM = large_image;
should now be:
- Code: Select all
const largeimage_p PROGMEM = large_image;
I don't understand what the COMPA_vect stuff is...I'm only a beginner at AVRs. About all I can tell is it has something to do with timers....
