Special-case the H7 EXTI reg layout.

This commit is contained in:
Bob McWhirter 2021-08-16 14:59:16 -04:00
parent 4c801c1234
commit 2c7422ab76

View File

@ -885,6 +885,8 @@ def parse_chips():
if addr := defines.get('EXTI_BASE'):
if chip_name.startswith("STM32WB55"):
block = 'exti_wb55/EXTI'
elif chip_name.startswith("STM32H7"):
block = 'exti_h7/EXTI'
else:
block = 'exti_v1/EXTI'