차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
tech:arduino_rescue [2022/10/30 01:08] – [부팅] V_Ltech:arduino_rescue [2023/07/28 14:59] (현재) – [복구] V_L
줄 1: 줄 1:
 {{tag> arduino_rescue }} {{tag> arduino_rescue }}
 ======  Arduino rescue  ====== ======  Arduino rescue  ======
-벽돌된 아두이노 복구하는 방법.+벽돌된 [[tech:arduino|아두이노]] 복구하는 방법.
  
 =====원인===== =====원인=====
줄 8: 줄 8:
   * 기타   * 기타
  
 +
 +====Sparkfun pro micro====
 +
 +How to identify Arduino Mini Pro 5v vs 3.3v
 +
 +The regulator should be marked K850(5.0V) or K833(3.3V).
 +
 +A 5 volt part has a 16MHz resonator may be marked with "A1" or "A'N"
 +A 3.3 volt part has a 8MHz resonator may be marked with "80'0"
 +
 +https://forum.sparkfun.com/viewtopic.php?t=31518
 =====원리===== =====원리=====
  
줄 21: 줄 32:
 따라서, 리셋 후 펌이 작동하는 8초간 업로드를 해버리면 된다. 따라서, 리셋 후 펌이 작동하는 8초간 업로드를 해버리면 된다.
  
 +
 +
 +그런데 ''ctrl-u'로 작업할 때 컴파일하는 시간때문에 8초를 맞추기가 힘들다.
 +
 +양덕형님이 다른 방법을 알려주셨는데
 +
 +미리 컴파일된 것을 업로드만 하는 것임
 +
 +<file>
 +"C:\Program Files\Arduino\hardware\tools\avr\bin\avrdude.exe" -CC:"\Program Files\Arduino\hardware\tools\avr\etc\avrdude.conf" -v -patmega32u4 -cavr109 -PCOM14 -b57600 -D -Uflash:w:C:\Users\dryoo\AppData\Local\Temp\Arduino\sketches\4F7EB36F9E14619B57DB4B6E700F28BD\Blink.ino.hex:i
 +</file>
 +
 +이런식으로 미리 컴파일 된 결과물을 찾아서 경로를 지정하고 cmd.exe에서 리셋 누르고 실행하면 됨.