mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-05 13:53:50 -04:00
Replace asm wrappers to interrupt handlers with functions that use the interrupt attribute.
This commit is contained in:
parent
eea2ab0385
commit
c92128869d
20 changed files with 221 additions and 282 deletions
|
@ -223,8 +223,8 @@ void vApplicationIdleHook( void )
|
|||
configurations to use the same vector table. They are not used in this
|
||||
demo, but linker errors will result if they are not defined. They can
|
||||
be ignored. */
|
||||
void vT0_1_ISR_Wrapper( void ) {}
|
||||
void vT2_3_ISR_Wrapper( void ) {}
|
||||
void vEMAC_ISR_Wrapper( void ) {}
|
||||
void vTimer2_ISR_Wrapper( void ) {}
|
||||
void vT0_1_ISR_Handler( void ) {}
|
||||
void vT2_3_ISR_Handler( void ) {}
|
||||
void vEMAC_ISR_Handler( void ) {}
|
||||
void vTimer2_ISR_Handler( void ) {}
|
||||
volatile unsigned long ulHighFrequencyTickCount = 0;
|
Loading…
Add table
Add a link
Reference in a new issue