Merge pull request #155 from sinewave-ee/fix_lpuart_interrupts

Fix LPUART interrupts for the L0 family
This commit is contained in:
Dario Nieuwenhuis 2022-08-19 15:30:42 +02:00 committed by GitHub
commit 9d99221e7e

View File

@ -33,6 +33,11 @@ def parse():
# Interrupt name
name = removesuffix(parts[0], "_IRQn")
# Fix typo in STM32Lxx and L083 devices
if name == "AES_RNG_LPUART1" and "RNG" not in str(parts[1:]):
name = "AES_LPUART1"
if name in irqs:
continue