i got the following error:
avrdude: stk500_getsync(): not in sync: resp=0x00
this turned out to be caused by not having the right baudrate set for the board i was using (uno is 115200)
A few notes on an otherwise great package.
1) WProgram.h needs to be changed to Arduino.h in the arduino.mk file. ( should also be changed in the arduino.tar.bz2 )
2) pins.h from /usr/share/arduino/hardware/arduino/variants/$boardname$ was not found, as a work around I made a link from the appropriate pins.h to
/usr/share/arduino/hardware/arduino/cores/arduino
Hope that helps
Pat
Ratings & Comments
3 Comments
i got the following error: avrdude: stk500_getsync(): not in sync: resp=0x00 this turned out to be caused by not having the right baudrate set for the board i was using (uno is 115200)
A few notes on an otherwise great package. 1) WProgram.h needs to be changed to Arduino.h in the arduino.mk file. ( should also be changed in the arduino.tar.bz2 ) 2) pins.h from /usr/share/arduino/hardware/arduino/variants/$boardname$ was not found, as a work around I made a link from the appropriate pins.h to /usr/share/arduino/hardware/arduino/cores/arduino Hope that helps Pat
That's awesome. I haven't done any projects with my Arduino in a while, but when I start again this will come in very handy. Thanks in Advance.