mixly写的arduino程序编译成功但上传失败是啥原因啊da佬们

大佬们我今天用mixly写了一个红外遥控的程序,编译成功但是上传失败这似啥原因QAQ

顺面我在标签里没找到arduino或者mixly所以只好打了单片机(第一次发帖,之前都在潜水)

这是模块编程截图

img

这是Arduino代码

#include <IRremote.h>

long ir_item;
IRrecv irrecv_11(11);
decode_results results_11;

void setup(){
  Serial.begin(9600);
  irrecv_11.enableIRIn();
}

void loop(){
  if (irrecv_11.decode(&results_11)) {
    ir_item=results_11.value;
    String type="UNKNOWN";
    String typelist[18]={"UNUSED", "RC5", "RC6", "NEC", "SONY", "PANASONIC", "JVC", "SAMSUNG", "WHYNTER", "AIWA_RC_T501", "LG", "SANYO", "MITSUBISHI", "DISH", "SHARP", "DENON", "PRONTO", "LEGO_PF"};
    if(results_11.decode_type>=1&&results_11.decode_type<=17){
      type=typelist[results_11.decode_type];
    }
    Serial.println("IR TYPE:"+type+"  ");
    Serial.println(ir_item,HEX);
    irrecv_11.resume();
  } else {
  }
  delay(1000);

}


######报错如下
arduino --board arduino:avr:uno --save-prefs
arduino -v --board arduino:avr:uno --pref build.path=mixlyBuild --upload --port COM3 "D:\Mixly_WIN1.1.5/testArduino/testArduino.ino"
D:\Mixly_WIN1.1.5\arduino\arduino-builder -dump-prefs -logger=machine -hardware D:\Mixly_WIN1.1.5\arduino\hardware -hardware D:\Mixly_WIN1.1.5\arduino\portable\packages -tools D:\Mixly_WIN1.1.5\arduino\tools-builder -tools D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -tools D:\Mixly_WIN1.1.5\arduino\portable\packages -built-in-libraries D:\Mixly_WIN1.1.5\arduino\libraries -libraries D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries -fqbn=arduino:avr:uno -vid-pid=1A86_7523 -ide-version=10812 -build-path D:\Mixly_WIN1.1.5\mixlyBuild -warnings=none -build-cache C:\Users\Admin\AppData\Local\Temp\arduino_cache_871190 -prefs=build.path=mixlyBuild -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -verbose D:\Mixly_WIN1.1.5\testArduino\testArduino.ino
D:\Mixly_WIN1.1.5\arduino\arduino-builder -compile -logger=machine -hardware D:\Mixly_WIN1.1.5\arduino\hardware -hardware D:\Mixly_WIN1.1.5\arduino\portable\packages -tools D:\Mixly_WIN1.1.5\arduino\tools-builder -tools D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -tools D:\Mixly_WIN1.1.5\arduino\portable\packages -built-in-libraries D:\Mixly_WIN1.1.5\arduino\libraries -libraries D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries -fqbn=arduino:avr:uno -vid-pid=1A86_7523 -ide-version=10812 -build-path D:\Mixly_WIN1.1.5\mixlyBuild -warnings=none -build-cache C:\Users\Admin\AppData\Local\Temp\arduino_cache_871190 -prefs=build.path=mixlyBuild -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr -verbose D:\Mixly_WIN1.1.5\testArduino\testArduino.ino
Using board 'uno' from platform in folder: D:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr
Using core 'arduino' from platform in folder: D:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr
Detecting libraries used...
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\cores\arduino" "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\variants\standard" "D:\Mixly_WIN1.1.5\mixlyBuild\sketch\testArduino.ino.cpp" -o nul -DARDUINO_LIB_DISCOVERY_PHASE
Alternatives for IRremote.h: [IRremote@2.5.0]
ResolveLibrary(IRremote.h)
-> candidates: [IRremote@2.5.0]
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\cores\arduino" "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\variants\standard" "-ID:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src" "D:\Mixly_WIN1.1.5\mixlyBuild\sketch\testArduino.ino.cpp" -o nul -DARDUINO_LIB_DISCOVERY_PHASE
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\IRremote.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\esp32.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\irPronto.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\irRecv.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\irSend.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Aiwa.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_BoseWave.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Denon.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Dish.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_JVC.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_LG.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Lego_PF.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_MagiQuest.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Mitsubishi.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_NEC.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Panasonic.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_RC5_RC6.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Samsung.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Sanyo.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Sharp.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Sharp_alt.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Sony.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Template.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\ir_Whynter.cpp
Using cached library dependencies for file: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src\sam.cpp
Generating function prototypes...
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\cores\arduino" "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\variants\standard" "-ID:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src" "D:\Mixly_WIN1.1.5\mixlyBuild\sketch\testArduino.ino.cpp" -o "D:\Mixly_WIN1.1.5\mixlyBuild\preproc\ctags_target_for_gcc_minus_e.cpp" -DARDUINO_LIB_DISCOVERY_PHASE
"D:\Mixly_WIN1.1.5\arduino\tools-builder\ctags\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "D:\Mixly_WIN1.1.5\mixlyBuild\preproc\ctags_target_for_gcc_minus_e.cpp"
正在编译项目...
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\cores\arduino" "-ID:\Mixly_WIN1.1.5\arduino\hardware\arduino\avr\variants\standard" "-ID:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote\src" "D:\Mixly_WIN1.1.5\mixlyBuild\sketch\testArduino.ino.cpp" -o "D:\Mixly_WIN1.1.5\mixlyBuild\sketch\testArduino.ino.cpp.o"
Compiling libraries...
Compiling library "IRremote"
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\esp32.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\IRremote.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Denon.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\irPronto.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\irSend.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Aiwa.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\irRecv.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_BoseWave.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Dish.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_JVC.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_LG.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Lego_PF.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_MagiQuest.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Panasonic.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Mitsubishi.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_NEC.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_RC5_RC6.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Samsung.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sanyo.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sharp.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sharp_alt.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sony.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Template.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\sam.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Whynter.cpp.o
Compiling core...
Couldn't deeply cache core build: Rel:
Running normal build of the core...
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\wiring_pulse.S.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\hooks.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\wiring.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\wiring_analog.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\wiring_digital.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\WInterrupts.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\wiring_shift.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\wiring_pulse.c.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\CDC.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\HardwareSerial.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\PluggableUSB.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\HardwareSerial0.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\HardwareSerial2.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\HardwareSerial1.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\IPAddress.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\HardwareSerial3.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\Print.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\WMath.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\abi.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\WString.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\new.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\Stream.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\Tone.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\USBCore.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\main.cpp.o
使用已经编译的文件:D:\Mixly_WIN1.1.5\mixlyBuild\core\core.a
Linking everything together...
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-gcc" -w -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega328p -o mixlyBuild/testArduino.ino.elf "D:\Mixly_WIN1.1.5\mixlyBuild\sketch\testArduino.ino.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\IRremote.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\esp32.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\irPronto.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\irRecv.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\irSend.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Aiwa.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_BoseWave.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Denon.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Dish.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_JVC.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_LG.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Lego_PF.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_MagiQuest.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Mitsubishi.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_NEC.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Panasonic.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_RC5_RC6.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Samsung.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sanyo.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sharp.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sharp_alt.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Sony.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Template.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\ir_Whynter.cpp.o" "D:\Mixly_WIN1.1.5\mixlyBuild\libraries\IRremote\sam.cpp.o" "mixlyBuild/core\core.a" -LmixlyBuild -lm
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 mixlyBuild/testArduino.ino.elf mixlyBuild/testArduino.ino.eep
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-objcopy" -O ihex -R .eeprom mixlyBuild/testArduino.ino.elf mixlyBuild/testArduino.ino.hex
使用 2.5.0 版本的库 IRremote 在文件夹: D:\Mixly_WIN1.1.5\arduino\portable\sketchbook\libraries\IRremote
"D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avr-size" -A mixlyBuild/testArduino.ino.elf
项目使用了 9624 字节,占用了 (29%) 程序存储空间。最大为 32256 字节。
全局变量使用了571字节,(27%)的动态内存,余留1477字节局部变量。最大为2048字节。
D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/bin/avrdude -CD:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/etc/avrdude.conf -v -V -patmega328p -carduino -PCOM3 -b115200 -D -Uflash:w:D:\Mixly_WIN1.1.5\mixlyBuild/testArduino.ino.hex:i

avrdude: Version 6.3-20190619
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2014 Joerg Wunsch

     System wide configuration file is "D:\Mixly_WIN1.1.5\arduino\hardware\tools\avr/etc/avrdude.conf"

     Using Port                    : COM3
     Using Programmer              : arduino
     Overriding Baud Rate          : 115200

avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xb5
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xb5

avrdude done. Thank you.

上传失败!

串口连接我去管理器里看了没毛病,驱动安装的是CH340的驱动,arduino主板上刻的名字是
arduino UNO V3.0,长这样↓

img

da佬们救命!