SparkFun Forums 

Where electronics enthusiasts find answers.

Have questions about a SparkFun product or board? This is the place to be.
By iask
#181806
Hello,
I finally had some time to try this Tiny AVR Programmer I purchased over the holidays. When I try to compile the sample code below (taken from your hookup guide) I get the following error in the new Arduino IDE (1.6.3)
ERROR while uploading: missing upload.tool configuration parameter
Error while uploading: missing 'upload.tool' configuration parameter
Sample code
Code: Select all
int blinkPin = 0;

void setup()
{
  pinMode(blinkPin, OUTPUT);
}

void loop()
{
  digitalWrite(blinkPin, HIGH);
  delay(500);
  digitalWrite(blinkPin, LOW);
  delay(500);
}