Skip to content

Commit

Permalink
Merge pull request #88 from grigorig/proto_fix
Browse files Browse the repository at this point in the history
Fixed protocol autodetection to support STC8H1KxxT
  • Loading branch information
area-8051 authored Aug 30, 2023
2 parents 6a59800 + 1c37582 commit 48a36b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stcgal/protocols.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,11 +390,11 @@ def initialize_model(self):
("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:
Expand Down

0 comments on commit 48a36b9

Please sign in to comment.