mirror of https://github.com/ARMmbed/mbed-os.git
Fix NVIC Wrapper include
Renesas mbed boards incorporate NVIC Wrapper because Cortex-A9 use GIC. For example, NVIC_SystemReset() is defined in nvic_wrapper.c and declared in nvic_wrapper.h. Because I removed one of include processing accidentally, I fixed the lack. This supplements PR #5890.pull/6047/head
parent
04f0f2b1aa
commit
f6c6e79145
|
@ -649,6 +649,7 @@ typedef enum IRQn
|
|||
#define __L2C_PRESENT 1U /* L2C present */
|
||||
|
||||
#include "core_ca.h"
|
||||
#include "nvic_wrapper.h"
|
||||
#include <system_RZ_A1LU.h>
|
||||
#include "iodefine.h"
|
||||
|
||||
|
|
|
@ -649,6 +649,7 @@ typedef enum IRQn
|
|||
#define __L2C_PRESENT 1U /* L2C present */
|
||||
|
||||
#include "core_ca.h"
|
||||
#include "nvic_wrapper.h"
|
||||
#include <system_RZ_A1H.h>
|
||||
#include "iodefine.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue