diff options
author | Karl Palsson <karlp@tweak.net.au> | 2022-02-07 21:21:20 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2022-04-16 21:37:28 +0200 |
commit | e115add00df34b9aabc97980dcb51204d624bd63 (patch) | |
tree | 560f0690aced89ed42d71f9dc100ebcf4992ab36 | |
parent | 56a334b8934597f8ebbcb3cabb00570e21497ad5 (diff) |
stm32l4: fix exti register map
Missing a gap before the second section continued.
Signed-off-by: Karl Palsson <karlp@tweak.net.au>
-rw-r--r-- | exti/stm32_exti.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exti/stm32_exti.h b/exti/stm32_exti.h index f15c0a1..8dd9ef8 100644 --- a/exti/stm32_exti.h +++ b/exti/stm32_exti.h @@ -9,6 +9,7 @@ struct STM32_EXTI_reg_l4_t { volatile uint32_t FTSR1; volatile uint32_t SWIER1; volatile uint32_t PR1; + uint32_t _reserved1[2]; volatile uint32_t IMR2; volatile uint32_t EMR2; volatile uint32_t RTSR2; |