IT박스

arduino nano-avrdude : ser_open () : system ca n't open device“\\. \ COM1”: 시스템이 지정된 파일을 찾을 수 없습니다.

itboxs 2020. 11. 24. 07:48
반응형

arduino nano-avrdude : ser_open () : system ca n't open device“\\. \ COM1”: 시스템이 지정된 파일을 찾을 수 없습니다.


저는 arduino nano와 함께 일하고 있습니다.

avrdude : ser_open () : system ca n't open device "\. \ COM1": 시스템이 지정된 파일을 찾을 수 없습니다.

이 오류는 arduino 보드에 프로그램을 업로드 한 직후에 나타납니다. 장치 관리자에서 포트를 확인했는데 com11이라고 표시되고 arduino 소프트웨어에서도 com11이 선택되었습니다. 내 arduino 소프트웨어에서 arduino 나노 보드를 선택했습니다. 또한 소프트웨어 파일을 다운로드하는 동안 사양 오류가 없어야합니다. 내가 놓친 것이 있습니까 ?? 도와주세요!! 이 오류를 해결할 수 없습니다.


나는 이것이 오래된 게시물이라는 것을 알고 있지만 이것이 내가 문제를 해결 한 방법입니다. 장치 관리자에서 Arduino COM 포트를 찾을 수 있습니다.

여기에 이미지 설명 입력

항구의 고급 속성으로 이동

여기에 이미지 설명 입력

COM 포트 번호를 COM1로 설정

여기에 이미지 설명 입력

그런 다음 USB를 다시 연결하십시오.


장치 관리자에서 COM 포트를 변경하는 대신 아두 이노 소프트웨어를 사용하는 경우 도구> 포트 메뉴 에서 포트를 설정해야했습니다 .

여기에 이미지 설명 입력


내 문제는 Windows 10의 D-Link DUB-H7 (USB 허브)에 Arduino 케이블을 연결 한 물리적 USB 암 포트 때문이었습니다. 오른쪽에있는 두 포트 중 하나에 Arduino를 연결했습니다. 아래 이미지). USB 케이블이 맞고 Arduino에 전원을 공급하지만 Arduino는 어떤 이유로 포트를 보지 못했습니다.

여기에 이미지 설명 입력

Windows does not recognize these two ports. Any of the other ports are fair game. In my case, the Tools > Port menu was grayed out. In this scenario, the "Ports" section in the object explorer was hidden. So to show the hidden devices, I chose View > show hidden. COM1 was what showed up originally. When I changed it to COM3, it didn't work.

There are many places where the COM port can be configured.

Windows > Control Panel > Device Manager > Ports > right click Arduino > Properties > Port Settings > Advanced > COM Port Number: [choose port]

Windows > Start Menu > Arduino > Tools > Ports > [choose port]

Windows > Start Menu > Arduino > File > Preferences > @ very bottom, there is a label named "More preferences can be edited directly in the file".

C:\Users{user name}\AppData\Local\Arduino15\preferences.txt

target_package = arduino
target_platform = avr
board = uno
software=ARDUINO
# Warn when data segment uses greater than this percentage
build.warn_data_percentage = 75

programmer = arduino:avrispmkii

upload.using = bootloader
upload.verify = true

serial.port=COM3
serial.databits=8
serial.stopbits=1
serial.parity=N
serial.debug_rate=9600

# I18 Preferences

# default chosen language (none for none)
editor.languages.current = 

The user preferences.txt overrides this one:

C:\Users{user name}\Desktop\avrdude.conf

... search for "com" ... "com1" is the default


I was having this same issue this morning. When I checked my Device Manager, it showed COM4 properly, and when I checked in the Arduino IDE COM4 just wasn't an option. Only COM1 was listed.
I tried unplugging and plugging my Arduino in and out a couple more times and eventually COM4 showed up again in the IDE. I didn't have to change any settings.
Hopefully that helps somebody.


Changing the port in Device Manager works for me. I was also able to fix it by finding the port that Arduino was using and then select it from the Adruion IDE from tools menu Tools>Port>Com Port

Adruino IDE

참고 URL : https://stackoverflow.com/questions/25718779/arduino-nano-avrdude-ser-opensystem-cant-open-device-com1the-system

반응형