Skip to content

Commit 87f206e

Browse files
TomoYamanakaadbridge
authored andcommitted
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.
1 parent 813ae64 commit 87f206e

File tree

2 files changed

+2
-0
lines changed
  • targets/TARGET_RENESAS/TARGET_RZ_A1XX

2 files changed

+2
-0
lines changed

targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/inc/RZ_A1LU.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ typedef enum IRQn
649649
#define __L2C_PRESENT 1U /* L2C present */
650650

651651
#include "core_ca.h"
652+
#include "nvic_wrapper.h"
652653
#include <system_RZ_A1LU.h>
653654
#include "iodefine.h"
654655

targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_RZ_A1H/device/inc/RZ_A1H.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ typedef enum IRQn
649649
#define __L2C_PRESENT 1U /* L2C present */
650650

651651
#include "core_ca.h"
652+
#include "nvic_wrapper.h"
652653
#include <system_RZ_A1H.h>
653654
#include "iodefine.h"
654655

0 commit comments

Comments
 (0)