8 Commits
v1.7 ... v1.10

Author SHA1 Message Date
6e8e73669e Merge pull request #91 from grigorig/version_fix
Fixed version for new release
2023-09-01 20:10:07 +02:00
b32bbf99c8 Fixed version for new release 2023-09-01 20:07:23 +02:00
cdc365a5f0 Merge pull request #89 from grigorig/doc_update
Updated list of tested models
2023-08-30 17:37:57 +02:00
521339066c Updated list of tested models 2023-08-30 17:36:00 +02:00
48a36b90c9 Merge pull request #88 from grigorig/proto_fix
Fixed protocol autodetection to support STC8H1KxxT
2023-08-30 17:27:05 +02:00
1c37582952 Fixed protocol autodetection to support STC8H1KxxT 2023-08-30 17:24:28 +02:00
6a598002e6 Merge pull request #86 from grigorig/area-8051-patch-1
Updated version to prepare next release
2023-06-02 12:18:53 +02:00
fcf4dff166 Updated version to prepare next release 2023-06-02 12:16:56 +02:00
3 changed files with 6 additions and 5 deletions

View File

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

View File

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

View File

@ -390,11 +390,11 @@ class StcAutoProtocol(StcBaseProtocol):
("stc12", r"(STC|IAP)(10|11|12)\D"),
("stc15a", r"(STC|IAP)15[FL][012]0\d(E|EA|)$"),
("stc15", r"(STC|IAP|IRC)15\D"),
("stc8d", r"STC8H(3|4|8)K"),
("stc8d", r"STC32"),
("stc8d", r"STC8A8K\d\dD4"),
("stc8g", r"STC8H"),
("stc8g", r"STC8H1K\d\d$"),
("stc8g", r"STC8G"),
("stc8d", r"STC8H"),
("stc8d", r"STC32"),
("stc8d", r"STC8A8K\d\dD\d"),
("stc8", r"STC8\D")]
for protocol_name, pattern in protocol_database: