diff options
author | Michael Hope <michael.hope@linaro.org> | 2010-09-29 20:42:18 +1300 |
---|---|---|
committer | Michael Hope <michael.hope@linaro.org> | 2010-09-29 20:42:18 +1300 |
commit | 368e4fc1662c2594b2a0908900713a2555a3ed8e (patch) | |
tree | 97b34b963c08d89747c952ea2f1f8c346bbd7ecc /libmaple | |
parent | b43977a8f65053a77b8bd24dfa0457f2b512147b (diff) | |
download | librambutan-368e4fc1662c2594b2a0908900713a2555a3ed8e.tar.gz librambutan-368e4fc1662c2594b2a0908900713a2555a3ed8e.zip |
Fixed up the build due to a missing header file.
Diffstat (limited to 'libmaple')
-rw-r--r-- | libmaple/nvic.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libmaple/nvic.h b/libmaple/nvic.h index 4f4972d..9e81a0e 100644 --- a/libmaple/nvic.h +++ b/libmaple/nvic.h @@ -29,6 +29,10 @@ #ifndef _NVIC_H_ #define _NVIC_H_ +#ifdef __cplusplus +extern "C"{ +#endif + #define NVIC_INT_USBHP 19 #define NVIC_INT_USBLP 20 #define NVIC_EXTI1_OFFSET (NVIC_ISER0 + 0x07) @@ -52,10 +56,6 @@ #define NVIC_VectTab_RAM ((u32)0x20000000) #define NVIC_VectTab_FLASH ((u32)0x08000000) -#ifdef __cplusplus -extern "C"{ -#endif - enum { NVIC_TIMER1 = 27, NVIC_TIMER2 = 28, |