Hi there people!
I have been trying to use Eclipse for developing on my Waspmote by using this guide I found here:
http://www.eduardocc.com/EclipseWaspmot ... orial.htmlIt is a really nice guide, but I am having some problems, and I need help before starting on a bigger school project:
The errors I get are
Cannot find -lcore.a (c:/winavr-20100110/bin/../lib/gcc/avr/4.3.3/../../../../avr/bin/ld.exe: cannot find -lcore)
Invalid arguments on setLED (in function Utils.setLED())
My program looks like this,
Code:
#include <WProgram.h>
void setup()
{
// Init USB
USB.begin();
}
void loop()
{
// Blink LEDs
Utils.setLED(LED0, LED_ON); // error here
delay(500);
Utils.setLED(LED0, LED_OFF); // and error here
delay(500);
}
int main(void){
init();
setup();
while(1) loop();
return 0;
}
Any ideas? I will provide more information if you need it, just tell me. I REALLY have to get this working!
Thank you all