我正试图用avrdude编程我的ATTiny 2313。这是我的命令行和输出(第一行是我输入的命令,其他的是输出):
utnmac:firmware utn$ make flash
avrdude -c avrispmkII -p attiny2313 -U flash:w:main.hex:i
avrdude: stk500v2_recv_mk2: error in USB receive
avrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% 0.00s
avrdude: Device signature = 0xffffff (retrying)
Reading | ################################################## | 100% 0.00s
avrdude: Device signature = 0xffffff (retrying)
Reading | ################################################## | 100% 0.00s
avrdude: Device signature = 0xffffff
avrdude: Yikes! Invalid device signature.
Double check connections and try again, or use -F to override
this check.
avrdude done. Thank you.
make: *** [flash] Error 1更新:似乎是一个问题,我的布线,但我找不到一个好的教程,我的布线需要去哪里。现在我用这个:

发布于 2014-02-02 03:14:52
这就是你的全部线路吗?
从在线文件,
AVRISP mkII不为Vcc引脚提供电源,而是使用这个引脚来感测目标电路上的电压。你的电路需要通过外部电源来操作。
你还需要通过电阻把复位拉到Vcc上,这样它就不会在没有激活时浮起来。
https://stackoverflow.com/questions/21490546
复制相似问题