「LGT8F328P-SSOP20 MiniEVB」と「USB to TTL (CH340)」の接続方法

  • 投稿 : 2020-04-11

接続端子

この部分の端子を接続します。

使用したUSB to TTL (CH340)モジュールは、DTR信号が出ていないので、ICピンから直接DTR信号を取り出して接続しました

接続方法

CH   Arduino (LGT8F328P-SSOP20)
DTR <=> DTR
RX <=> TX
TX <=> RX
GND <=> GND
VCC <=> 3.3V

購入したLGT8F328P-SSOP20が3.3V版なので、電圧も3.3V。あと、RX,TXはクロスになるように接続します。

動作確認

DTRを接続しない

avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x86
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x86

avrdude done. Thank you.

マイコンボードに書き込もうとしましたが、エラーが発生しました。
このページを参考にしてください。

試してみたが、やはりスケッチは書きこめない

DTRを接続

avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_recv(): programmer is not responding
avr_read(): error reading address 0x0000
read operation not supported for memory "flash"
avrdude: failed to read all of flash memory, rc=-2
avrdude: stk500_recv(): programmer is not responding
シリアルポート「avrdude: stk500_recv(): programmer is not responding
」が選択されていますが、そのポートは存在しないか、ボードが接続されていません。

私の環境では、上記のエラーが出るが、スケッチは書きこまれてた

https://github.com/dbuezas/lgt8fx/issues/4

上記と症状は同じように思われる

補足

Arduino IDEのメニューの「ファイル」=>「環境設定」のとこで、スケッチ書き込み時に詳細に情報を出す設定がある。この設定をすると、詳細な情報が表示されるので、うまく行かない場合に原因切り分けしやすいかも。

C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avrdude -CC:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf -v -patmega328p -carduino -PCOM7 -b57600 -D -Uflash:w:C:\Users\kuro\AppData\Local\Temp\arduino_build_560327/sketch_apr09a.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 "C:\Program Files (x86)\Arduino\hardware\tools\avr/etc/avrdude.conf"

Using Port : COM7
Using Programmer : arduino
Overriding Baud Rate : 57600
AVR Part : ATmega328P
Chip Erase delay : 9000 us
PAGEL : PD7
BS2 : PC2
RESET disposition : dedicated
RETRY pulse : SCK
serial program mode : yes
parallel program mode : yes
Timeout : 200
StabDelay : 100
CmdexeDelay : 25
SyncLoops : 32
ByteDelay : 0
PollIndex : 3
PollValue : 0x53
Memory Detail :

Block Poll Page Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW MaxW ReadBack
----------- ---- ----- ----- ---- ------ ------ ---- ------ ----- ----- ---------
eeprom 65 20 4 0 no 1024 4 0 3600 3600 0xff 0xff
flash 65 6 128 0 yes 32768 128 256 4500 4500 0xff 0xff
lfuse 0 0 0 0 no 1 0 0 4500 4500 0x00 0x00
hfuse 0 0 0 0 no 1 0 0 4500 4500 0x00 0x00
efuse 0 0 0 0 no 1 0 0 4500 4500 0x00 0x00
lock 0 0 0 0 no 1 0 0 4500 4500 0x00 0x00
calibration 0 0 0 0 no 1 0 0 0 0 0x00 0x00
signature 0 0 0 0 no 3 0 0 0 0 0x00 0x00

Programmer Type : Arduino
Description : Arduino
Hardware Version: 3
Firmware Version: 5.0
Vtarget : 0.3 V
Varef : 0.3 V
Oscillator : 28.800 kHz
SCK period : 3.3 us

avrdude: AVR device initialized and ready to accept instructions

Reading | ################################################## | 100% 0.00s

avrdude: Device signature = 0x1e950f (probably m328p)
avrdude: reading input file "C:\Users\kuro\AppData\Local\Temp\arduino_build_560327/sketch_apr09a.ino.hex"
avrdude: writing flash (1696 bytes):

Writing | ################################################## | 100% 0.47s

avrdude: 1696 bytes of flash written
avrdude: verifying flash memory against C:\Users\kuro\AppData\Local\Temp\arduino_build_560327/sketch_apr09a.ino.hex:
avrdude: load data flash data from input file C:\Users\kuro\AppData\Local\Temp\arduino_build_560327/sketch_apr09a.ino.hex:
avrdude: input file C:\Users\kuro\AppData\Local\Temp\arduino_build_560327/sketch_apr09a.ino.hex contains 1696 bytes
avrdude: reading on-chip flash data:

Reading | ##############################################
avrdude: stk500_paged_load(): (a) protocol error, expect=0x10, resp=0x00
#### | 100% 2.40s

avrdude: stk500_cmd(): programmer is out of sync
avr_read(): error reading address 0x0000
read operation not supported for memory "flash"
avrdude: failed to read all of flash memory, rc=-2
avrdude: stk500_disable(): protocol error, expect=0x14, resp=0xe0

avrdude done. Thank you.

シリアルポート「
」が選択されていますが、そのポートは存在しないか、ボードが接続されていません。

こんな感じの詳細な表示に切り替わる

スポンサーリンク