Skip to content

Commit 6bd87f1

Browse files
authored
Merge pull request #490 from Eekle/patch-1
Fix TSC regex for STM32f0x
2 parents 4e0bc91 + a5719b6 commit 6bd87f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stm32-data-gen/src/chips.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ impl PeriMatcher {
653653
("STM32H50.*:ICACHE:.*", ("icache", "v1_0crr", "ICACHE")),
654654
("STM32(L5|H5[67]|WBA).*:ICACHE:.*", ("icache", "v1_4crr", "ICACHE")),
655655
(".*:CORDIC:.*", ("cordic", "v1", "CORDIC")),
656-
("STM32F0x[128].*:TSC:.*", ("tsc", "v1", "TSC")),
656+
("STM32F0.[128].*:TSC:.*", ("tsc", "v1", "TSC")),
657657
("STM32F3[07][123].*:TSC:.*", ("tsc", "v1", "TSC")),
658658
("STM32WB55.*:TSC:.*", ("tsc", "v2", "TSC")),
659659
("STM32WBA.*:TSC:.*", ("tsc", "v1", "TSC")),

0 commit comments

Comments
 (0)