2016-06-19 10 views
0

Arduinoに点滅コードをアップロードしようとしていますが、このエラーが発生しています。 誰かが私を助けることができますか?Arduinoエラーへのアップロード

Arduino: 1.6.9 (Mac OS X), Board: "Arduino Duemilanove or Diecimila, ATmega328" 

Sketch uses 1,066 bytes (3%) of program storage space. Maximum is 30,720 bytes. 
Global variables use 9 bytes (0%) of dynamic memory, leaving 2,039 bytes for local variables. Maximum is 2,048 bytes. 
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x04 
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xfc 
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x8a 
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x88 

avrdude: stk500_getparm(): (a) protocol error, expect=0x14, resp=0x14 

avrdude: stk500_getparm(): (a) protocol error, expect=0x14, resp=0x10 
avrdude: stk500_initialize(): (b) protocol error, expect=0x10, resp=0x01 
avrdude: initialization failed, rc=-1 
     Double check connections and try again, or use -F to override 
     this check. 

avrdude: stk500_disable(): protocol error, expect=0x14, resp=0x10 
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions. 

This report would have more information with 
"Show verbose output during compilation" 
option enabled in File -> Preferences. 

- これは私がアップロードしようとしているコードです。 Arduinoの例をそのままにしています。

// the setup function runs once when you press reset or power the board 
void setup() { 
    // initialize digital pin 13 as an output. 
    pinMode(13, OUTPUT); 
} 

// the loop function runs over and over again forever 
void loop() { 
    digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level) 
    delay(1000);    // wait for a second 
    digitalWrite(13, LOW); // turn the LED off by making the voltage LOW 
    delay(1000);    // wait for a second 
} 
+0

あまりにもこのエラーをトリガーするコードスニペットを提供してください。 – minocha

+3

これはあなたのarduinoコードとは関係ありません(Arduinoに到達したことはありません)。ケーブル不良、ポートの選択不良、arduinoのリセット、シリアルモニタのクローズ、USBケーブルの抜き差しなどの問題を探します。 – mhopeng

+0

ボードは本当にDuemilanoveかDiecimilaですか?そうでなければ、ツール|ボードを正しいボードに接続します。 – wallyk

答えて

0

あり、あなたが本当に「AVRDUDE」でできることは何もありませんが、あなたは「AVRのISP」にあなたのタイプを変更することができます。 enter image description here

関連する問題