diff options
| author | bnewbold <bnewbold@robocracy.org> | 2015-03-03 00:00:40 -0800 | 
|---|---|---|
| committer | bnewbold <bnewbold@robocracy.org> | 2015-03-03 00:15:30 -0800 | 
| commit | 4f09c7ff0cd1644e6e638e8746d519d021735356 (patch) | |
| tree | ef3562d354b82f6dc0642e18b9c395bc6ec5ad1b /libmaple/stm32f2-f4/isrs.S | |
| parent | ff3d197c123b85bb51bc2b930b4649124fe4bb54 (diff) | |
| download | librambutan-4f09c7ff0cd1644e6e638e8746d519d021735356.tar.gz librambutan-4f09c7ff0cd1644e6e638e8746d519d021735356.zip | |
stm32f4: add F4-specific IRQ entries
Perhaps these should be in F4-specific files instead of the shared F2-F4
files?
Diffstat (limited to 'libmaple/stm32f2-f4/isrs.S')
| -rw-r--r-- | libmaple/stm32f2-f4/isrs.S | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/libmaple/stm32f2-f4/isrs.S b/libmaple/stm32f2-f4/isrs.S index 5baaf8b..cda627a 100644 --- a/libmaple/stm32f2-f4/isrs.S +++ b/libmaple/stm32f2-f4/isrs.S @@ -320,3 +320,10 @@ __default_handler:          .weak __irq_hash_rng          .globl __irq_hash_rng          .set __irq_hash_rng, __default_handler +/* STM32F4 Specific */ +        .weak __irq_fpu +        .globl __irq_fpu +        .set __irq_fpu, __default_handler +        .weak __irq_spi4 +        .globl __irq_spi4 +        .set __irq_spi4, __default_handler | 
