-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the IRQ Table extern definable.
This makes the IRQ-table extern definable. With this it is possible to define Interrupt Service Routines in the CMSIS way with week defined IRQ-Routines which can be overridden in the application code. Example: // … __attribute__ ((weak, alias("InteruptDefaultHandler"))) void CoreTimer_IRQHandler (void); // … IRQHandler_t IRQTable [IRQ_GIC_LINE_COUNT] = { // … CoreTimer_IRQHandler // … }; In Addition a default IRQ-Handler is implemented which calls the Interrupt-Service-Routine.
- Loading branch information
1 parent
a8c2f93
commit dd4ab4f
Showing
2 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Masmiseim36, this went through the review. May I ask you to provide a fix, please?