From 3e1fa30c2fe46fd95ef5eeab44873a4dd6670c45 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 8 Oct 2020 08:09:31 +0200 Subject: [PATCH] cpu/stm32/irqs: fix vectors generator script --- cpu/stm32/dist/irqs/gen_vectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/stm32/dist/irqs/gen_vectors.py b/cpu/stm32/dist/irqs/gen_vectors.py index b1d727ee3c..9de7a0d5bc 100755 --- a/cpu/stm32/dist/irqs/gen_vectors.py +++ b/cpu/stm32/dist/irqs/gen_vectors.py @@ -74,7 +74,7 @@ def parse_cmsis(cpu_line): use_line = True # use a regexp to get the available IRQs - match = re.match(r"[ ]+([a-zA-Z0-9_]+_IRQn)[ ]+= \d+,", line) + match = re.match(r"[ ]+([a-zA-Z0-9_]+_IRQn)[ ]+= \d+", line) # Skip lines that don't match if match is None: