Is there a simple way to use libraries intended for the Arduino IDE with the C and assembly code I write for AVR-G++/AVR-GCC?
I'm trying to use the Adafruit Wave Shield library, but simply including the header and cpp files don't do much good. Can I compile it somehow and link it to my C code? Or perhaps just find a way to make it compile with my C code.
Currently, when I try to do something simple like:
#include "WaveHC/WaveHC.h"
SdReader card;
card.init();
I am greeted with:
70: undefined reference to `SdReader::init(unsigned char)'