2017-08-28 8 views
0

私は数ヶ月前に開始したプロジェクトに取り組んでいました。私はIDEを最新バージョン(1.8.4)にアップデートし、ドライバ(USBTinyISP)をアップデートし、COMポートを無効/有効にし、複数のプロミニを試し、サンプルスケッチをアップロードし、USBポートを変更し、アップロード中に冗長出力を有効にしました。奇妙なのは、今朝の私の以前のアップロードの変更から古いシリアルモニタデータの印刷を見ることができるので、私は通信が機能していることを知っています。以下は、スケッチをボードにアップロードしようとした後に表示されるメッセージです。Arduino Pro Mini IDE 1.8.4 avrdude:stk500recv():プログラマが応答しない

Arduino: 1.8.4 (Windows 8.1), Board: "Arduino Pro or Pro Mini, ATmega168 (3.3V, 8 MHz)" 

Archiving built core (caching) in: C:\Users\pxb07\AppData\Local\Temp\arduino_cache_814882\core\core_arduino_avr_pro_cpu_8MHzatmega168_0c812875ac70eb4a9b385d8fb077f54c.a 
Sketch uses 3284 bytes (22%) of program storage space. Maximum is 14336 bytes. 
Global variables use 335 bytes (32%) of dynamic memory, leaving 689 bytes for local variables. Maximum is 1024 bytes. 
C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avrdude -CC:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf -v -patmega168 -carduino -PCOM8 -b19200 -D -Uflash:w:C:\Users\pxb07\AppData\Local\Temp\arduino_build_381498/SoftwareSerialExample.ino.hex:i 

avrdude: Version 6.3, compiled on Jan 17 2017 at 12:00:53 
     Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/ 
     Copyright (c) 2007-2014 Joerg Wunsch 

     System wide configuration file is "C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf" 

     Using Port     : COM8 
     Using Programmer    : arduino 
     Overriding Baud Rate   : 19200 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x28 
avrdude: stk500_recv(): programmer is not responding 
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x28 

avrdude done. Thank you. 

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. 
+0

アップロード中にポート0とポート1にジャンパ線を接続していませんか? – Billa

+0

Arduino Miniに新しいスケッチをアップロードするときに、Arduino環境のアップロードボタンを押す直前にボードのリセットボタンを押す必要があります。これを試すことができますか? –

+0

@Billa私は両方のボードのピンに何も接続されていないことを確認しました。 – 1QuickQuestion

答えて

1

test loopbackには、シリアル通信チャネルが完全であることを確認することをお勧めします。私は、ボードとポートが適切に選択されていると仮定しています。

ループバックが機能する場合は、ボードにスケッチをフラッシュ/アップロードする直前にボードをリセットしてみてください。

+0

ループバックテストが機能し、私の入力が私に返ってきます。 – 1QuickQuestion

+0

私は次のような可能性を考えています。あなたのPCはボードを認識していません。 'デバイスマネージャー'と 'ポート'でチェックできますか?ここでArduinoが見えますか?同じCOMポートもIDEで選択されていますか?もし問題がなければ、ドライバを最新かつ最高のものにアップグレードしてください。 –

+0

ポートがIDEとデバイスマネージャの両方に表示されるようです。私は最新のファームウェアを見つけました(私はFTDIを使用しています)、私はまだ問題を抱えています。私はアップロードをクリックする前にリセットを押して、アップロードしていません。私はそれがarduinoかもしれないと思ったが、どちらも正常に動作しているように見え、ループバックは問題なく両方で動作する。 – 1QuickQuestion

関連する問題