diff options
author | Keith Packard <keithp@keithp.com> | 2018-09-11 18:49:22 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-13 08:23:25 -0700 |
commit | 0b5ac831d2e63a091833c702b07b0331fba32e72 (patch) | |
tree | 96b8bc48c94590b072e081213c9d83a1dab1b8e9 /src/stm32f4/ao_interrupt.c | |
parent | 23075d174d2bff8ff3f3deef3c3d90b83da6bd2e (diff) |
altos/stm32f4: Add usart driver for usart6
This is what the disco board hooks up.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm32f4/ao_interrupt.c')
-rw-r--r-- | src/stm32f4/ao_interrupt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stm32f4/ao_interrupt.c b/src/stm32f4/ao_interrupt.c index a00df54b..f1cb8eee 100644 --- a/src/stm32f4/ao_interrupt.c +++ b/src/stm32f4/ao_interrupt.c @@ -119,7 +119,7 @@ isr(spi2) isr(usart1) isr(usart2) isr(usart3) -isr(exti5_10) +isr(exti15_10) isr(rtc_alarm) isr(otg_fs_wkup) isr(tim8_brk_tim12) @@ -231,9 +231,10 @@ const void *stm_interrupt_vector[] = { i(0xd4, usart1), i(0xd8, usart2), i(0xdc, usart3), - i(0xe0, exti5_10), + i(0xe0, exti15_10), i(0xe4, rtc_alarm), i(0xe8, otg_fs_wkup), i(0xec, tim8_brk_tim12), i(0xf0, tim8_up_tim13), + i(0x15c, usart6), }; |