Skip to content

Commit

Permalink
添加接线说明
Browse files Browse the repository at this point in the history
  • Loading branch information
ospanic committed Mar 16, 2021
1 parent 8d99318 commit b797a61
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions TBXX_Flash_Tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from aithinker_png import aithinker_png as logo

__version__ = "V2.1.0"
__version__ = "V2.1.1"

class TelinkThread(QThread):
pressbarSignal = pyqtSignal(int)
Expand Down Expand Up @@ -54,7 +54,15 @@ def run(self):
return

if not connect_chip(_port): #连接芯片,进入烧录模式
self.textSignal.emit("连接芯片失败!!!")
self.textSignal.emit('''连接芯片失败!!! 请检查接线:
USB-TTL <--------> TB Moudle
/ ---------------SWS
Tx ----------+
\\----------------Rx
Rx ----------------------------Tx
RTS(或DTR)---------------RST(或VCC)
''')
self.pressbarSignal.emit(200)
_port.close()
return
Expand Down

0 comments on commit b797a61

Please sign in to comment.