Compare commits

...

6 Commits
v1.9 ... master

Author SHA1 Message Date
Grigori Goronzy
fdf5fdd605
ci: trigger on pull request
Trigger actions on pull requests, which is needed for PRs from third party branches.
2023-11-11 11:26:05 +01:00
hkzlab
a660184520
Add options to invert pin reset logic (#97)
This PR adds 'dtr_inverted' and 'rts_inverted' as options for '-A' that
invert the pin logic for autoreset.
2023-11-11 11:23:29 +01:00
area-8051
6e8e73669e
Merge pull request #91 from grigorig/version_fix
Fixed version for new release
2023-09-01 20:10:07 +02:00
Vincent DEFERT
b32bbf99c8 Fixed version for new release 2023-09-01 20:07:23 +02:00
area-8051
cdc365a5f0
Merge pull request #89 from grigorig/doc_update
Updated list of tested models
2023-08-30 17:37:57 +02:00
Vincent DEFERT
521339066c Updated list of tested models 2023-08-30 17:36:00 +02:00
6 changed files with 16 additions and 7 deletions

View File

@ -1,6 +1,6 @@
name: Python package name: Python package
on: [push] on: [push, pull_request]
jobs: jobs:
test: test:

View File

@ -44,6 +44,7 @@ STC8 series
* STC8G1K17-20/16PIN (BSL version: 7.3.12U) * STC8G1K17-20/16PIN (BSL version: 7.3.12U)
* STC8G2K64S4 (BSL version: 7.3.11U) * STC8G2K64S4 (BSL version: 7.3.11U)
* STC8H1K08 (BSL version: 7.3.12U) * STC8H1K08 (BSL version: 7.3.12U)
* STC8H1K17T (BSL version: 7.4.5U)
* STC8H3K64S2 (BSL version: 7.4.1U) * STC8H3K64S2 (BSL version: 7.4.1U)
* STC8H3K64S4 (BSL version: 7.4.1U) * STC8H3K64S4 (BSL version: 7.4.1U)
* STC8H4K64TL (BSL version: 7.4.3U) * STC8H4K64TL (BSL version: 7.4.3U)

View File

@ -22,7 +22,7 @@ options:
-h, --help show this help message and exit -h, --help show this help message and exit
-e, --erase only erase flash memory -e, --erase only erase flash memory
-a, --autoreset cycle power automatically by asserting DTR -a, --autoreset cycle power automatically by asserting DTR
-A {dtr,rts}, --resetpin {dtr,rts} -A {dtr,rts,dtr_inverted,rts_inverted}, --resetpin {dtr,rts,dtr_inverted,rts_inverted}
pin to hold down when using --autoreset (default: DTR) pin to hold down when using --autoreset (default: DTR)
-r RESETCMD, --resetcmd RESETCMD -r RESETCMD, --resetcmd RESETCMD
shell command for board power-cycling (instead of DTR shell command for board power-cycling (instead of DTR

View File

@ -1 +1 @@
__version__ = "1.8" __version__ = "1.10"

View File

@ -263,7 +263,7 @@ def cli():
exclusives.add_argument("-e", "--erase", help="only erase flash memory", action="store_true") exclusives.add_argument("-e", "--erase", help="only erase flash memory", action="store_true")
parser.add_argument("-a", "--autoreset", help="cycle power automatically by asserting DTR", action="store_true") parser.add_argument("-a", "--autoreset", help="cycle power automatically by asserting DTR", action="store_true")
parser.add_argument("-A", "--resetpin", help="pin to hold down when using --autoreset (default: DTR)", parser.add_argument("-A", "--resetpin", help="pin to hold down when using --autoreset (default: DTR)",
choices=["dtr", "rts"], default="dtr") choices=["dtr", "rts", "dtr_inverted", "rts_inverted"], default="dtr")
parser.add_argument("-r", "--resetcmd", help="shell command for board power-cycling (instead of DTR assertion)", action="store") parser.add_argument("-r", "--resetcmd", help="shell command for board power-cycling (instead of DTR assertion)", action="store")
parser.add_argument("-P", "--protocol", help="protocol version (default: auto)", parser.add_argument("-P", "--protocol", help="protocol version (default: auto)",
choices=["stc89", "stc89a", "stc12a", "stc12b", "stc12", "stc15a", "stc15", "stc8", "stc8d", "stc8g", "usb15", "auto"], default="auto") choices=["stc89", "stc89a", "stc12a", "stc12b", "stc12", "stc15a", "stc15", "stc8", "stc8d", "stc8g", "usb15", "auto"], default="auto")

View File

@ -265,22 +265,30 @@ class StcBaseProtocol(ABC):
def set_option(self, name, value): def set_option(self, name, value):
self.options.set_option(name, value) self.options.set_option(name, value)
def reset_device(self, resetcmd=False, resetpin=False): def reset_device(self, resetcmd=False, resetpin=False, invertreset=False):
if not resetcmd: if not resetcmd:
print("Cycling power: ", end="") print("Cycling power: ", end="")
sys.stdout.flush() sys.stdout.flush()
if resetpin == "rts": if resetpin == "rts":
self.ser.setRTS(True) self.ser.setRTS(True)
else: elif resetpin == "dtr":
self.ser.setDTR(True) self.ser.setDTR(True)
elif resetpin == "rts_inverted":
self.ser.setRTS(False)
else: # dtr_inverted
self.ser.setDTR(False)
time.sleep(0.25) time.sleep(0.25)
if resetpin == "rts": if resetpin == "rts":
self.ser.setRTS(False) self.ser.setRTS(False)
else: elif resetpin == "dtr":
self.ser.setDTR(False) self.ser.setDTR(False)
elif resetpin == "rts_inverted":
self.ser.setRTS(True)
else: # dtr_inverted
self.ser.setDTR(True)
time.sleep(0.030) time.sleep(0.030)
print("done") print("done")