[stm32] add better way of handling irq vectors

-define a default dummy vector and alias all of the available irq handlers
to this vector. Using a standard naming convention, you can override the
handler from anywhere without modifying the vector table.
This commit is contained in:
Travis Geiselbrecht
2012-07-14 16:39:24 -07:00
parent d0dd9c83f5
commit f8924ff991
7 changed files with 403 additions and 44 deletions

View File

@@ -27,5 +27,6 @@
#define DEBUG_UART USART3
#define DEBUG_UART_IRQ USART3_IRQn
#define DEBUG_UART_IRQ_HANDLER stm32_USART3_IRQ
#endif