-
Notifications
You must be signed in to change notification settings - Fork 3k
RZ_A1H: cmsis nvic include fix #5890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
To get cmsis nvic definitions, this header file should be included in cmsis.h file. Fixes ARMmbed#5886
Thank you. Look goods to me. |
To get cmsis nvic definitions, I added the process that include "cmsis_nvic.h" in cmsis.h. Relation PR is ARMmbed#5890.
/morph build |
Build : SUCCESSBuild number : 903 Triggering tests/morph test |
Exporter Build : FAILUREBuild number : 579 |
/morph export-build |
Test : SUCCESSBuild number : 745 |
/morph export-build |
Exporter Build : SUCCESSBuild number : 587 |
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 ARMmbed#5890.
To get cmsis nvic definitions, I added the process that include "cmsis_nvic.h" in cmsis.h. Relation PR is #5890.
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.
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.
To get cmsis nvic definitions, this header file should be included
in cmsis.h file.
Fixes #5886
@JanneKiiskila @ARMmbed/team-renesas