Skip to content

Commit bcf76f9

Browse files
committed
ci(variant): Adapt Regular expression to match STM32L496QGIxS
Signed-off-by: Alexandre Bourdiol <[email protected]>
1 parent e156c32 commit bcf76f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CI/update/stm32variant.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ def group_by_flash(group_base_list, glist, index_mcu_base):
18451845
# Assert
18461846
if sub.group(2) != "x":
18471847
print(
1848-
"Package of {base_name} info contains {sub.group(2)} instead of 'x'"
1848+
f"Package of {base_name}, ppe {ppe} info contains {sub.group(2)} instead of 'x'"
18491849
)
18501850
exit(1)
18511851
if sub.group(3):
@@ -2427,7 +2427,7 @@ def manage_repo():
24272427
update_regex = re.compile(r"defined\(ARDUINO_GENERIC_.+\)")
24282428
board_entry_regex = re.compile(r"(Gen.+\..+variant=STM32.+xx/)\S+")
24292429
# P T E
2430-
mcu_PE_regex = re.compile(r"([\w])([\w])([ANPQX])?$")
2430+
mcu_PE_regex = re.compile(r"([\w])([\w])([ANPQSX])?$")
24312431
aggregate_dir()
24322432

24332433
# Clean temporary dir

0 commit comments

Comments
 (0)