1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32: Generate the irqs in a reproducible manner

This commit is contained in:
Rémy Grünblatt 2021-05-29 14:28:36 +02:00
parent 64c7332874
commit deb8d34c43

View File

@ -58,7 +58,7 @@ def list_cpu_lines(cpu_fam):
headers.remove("partition_stm32l5xx.h")
headers.remove("stm32{}xx.h".format(cpu_fam))
headers.remove("system_stm32{}xx.h".format(cpu_fam))
return [header.split(".")[0] for header in headers]
return sorted([header.split(".")[0] for header in headers])
def irq_numof(cpu_fam, cpu_line):