mirror of https://github.com/ARMmbed/mbed-os.git
[RZ/A1H] first release - change InterruptManager.cpp for CA9
RZ/A1H has GIC instead of NVIC. InterruptManger assumes NVIC only, so temporarily ifdef guarded in order to pass the compilation.pull/594/head
parent
55ddb7f85c
commit
cff29fd8d8
|
@ -1,3 +1,6 @@
|
|||
#include "cmsis.h"
|
||||
#if defined(NVIC_NUM_VECTORS)
|
||||
|
||||
#include "InterruptManager.h"
|
||||
#include <string.h>
|
||||
|
||||
|
@ -87,3 +90,4 @@ void InterruptManager::static_irq_helper() {
|
|||
|
||||
} // namespace mbed
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue