基於 LGT8F328P LQFP32 的 Arduino MiniEVB, 這個板型資料較少, 記錄一下開發環境和燒錄過程以及當中遇到的問題.
晶片引數
其它引數參考 AT328P
在 EEVBlog 上有一個相關的討論 LGT8F328P - clone of ATMega328 with lots of extras!, 裡面有 LGT8F328P 和 AT328P 的比較.
因為 LGT8F328P 本身在工作頻率上就更高(32MHz vs 20MHz), 加上指令週期數更少, 在效能上優勢明顯. 但是因為速度太快, 也導致了一些 AT328P 上正常工作的應用在 LGT8F328P 執行會出問題.
生產這個晶片的公司叫 LogicGreen, www.lgtic.com, 主營是LGT8開頭的一系列MCU, 面向中低端市場, 非常低調(這公司甚至連中文名都沒有), 沒有見過任何廣告, 出名完全是因為 LGT8F328P 相容 ATmega328P, 可以平替火熱的 Arduino 系列開發板.
LGT8F328P 的產品頁為 http://www.lgtic.com/lgt8fx8p/, 在上面有資料和使用者手冊.
基於 LGT8F328P 的開發板在某寶上有不少, 直接搜型號就能看到. 這裡要介紹的是下面這種板型, 不是很常見
開發板的接線在圖上已經標出, 對應的
LGT8F328P -> CH340, CP2102
VCC -> 3.3V
GND -> GND
TX -> RX
RX -> TX
DTR -> DTR
安裝 Arduino IDE 2.x 和 lgt8fx 的過程請點選這裡檢視 https://www.cnblogs.com/milton/p/17063445.html
這個 Mini EVB 對應的裝置選擇是
之後就可以直接編譯燒錄 Blink 範例
一開始, 使用的是 Arduino 標準的5V供電, 但是 Upload 後一直提示 stk500_recv(): programmer is not responding 錯誤, 此時需要手動按一下RESET按鈕, 才能成功燒錄. 將 CH340 換成 CP2102, 問題依舊, 檢查 DTR 的輸出電壓, 在燒錄階段確實拉低了, 只有0.2V, 在非燒錄階段為 3.3V, 也沒有問題.
對比了下標準的 Arduino Nano 和 CH340 的電路 Arduino Nano ATmega238P/CH340G V3.0 PCB Layout, DTR腳和RST腳之間也是104的電容.
似乎都沒有問題, 最後在 Nerd Ralph 的這篇文章裡找到了答案 LGT8F328P EDMINI board. 他也遇到了同樣的問題, DTR Reset doesn't work
After some more debugging, I found I could upload if I pressed the reset button just before uploading. This meant the bootloader was working, but auto-reset (toggling the DTR line) was not. These boards use the same auto-reset circuit as an Arduino Pro Mini
A negative pulse on DTR will cause a voltage drop on RST, which is supposed to reset the target. When the target power is 5V and 3V3 TTL signals are used, toggling DTR will cause RST to drop from 5V to about 1.7V (5 - 3.3). With the ATmega328P and most other AVR MCUs, 2V is low enough to reset the chip. The LGT8F328P, however requires a lower voltage to reset. In some situations this can be a good thing, as it means the LGT MCU is less likely to reset due to electromagnetic interference.
所以DTR未能拉低重啟的原因是, LGT8F328P 需要的最低工作電壓接近 1.7V, 而供電電壓在5V時, DTR 在傳輸那一下拉低, 也只能達到這個電壓附近, 所以 LGT8F328P 並未受影響而重啟, 而對於 AT328P, 降到2V就會重啟. 所以這個電路設計對 LGT8F328P 失效了.
解決的辦法也很簡單, 就是把供電換成 3.3V, 之後每次燒錄都會穩穩地重啟了.
當 LGT8F328P 丟失 Bootloader 時, 需要通過 SWC/SWD 介面重新寫入 Bootloader, 這時候就需要使用 LGTISP.
相對於官方的 ISP 硬體, brother_yan 提供了一種使用 LGT8F328P 製作 ISP 工具的方案