Skip to content

Commit 9be939e

Browse files
committed
fix(stm32variant): handle extra product line
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent c53944a commit 9be939e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CI/update/stm32variant.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2796,8 +2796,8 @@ def manage_repo():
27962796
# Clean temporary dir
27972797
deleteFolder(tmp_dir)
27982798

2799-
pl_regex = re.compile(r"([AQ])$")
2800-
package_regex = re.compile(r"[\w][\w]([ANPQSXZ])?$")
2799+
pl_regex = re.compile(r"([AGNPQSXZ])$")
2800+
package_regex = re.compile(r"[\w][\w]([AGNPQSXZ])?$")
28012801
flash_group_regex = re.compile(r"(.*)\((.*)\)(.*)")
28022802

28032803
for mcu_file in mcu_list:

0 commit comments

Comments
 (0)