mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 01:58:32 -04:00
This commit is contained in:
parent
946da76519
commit
05023971cb
389 changed files with 11479 additions and 464 deletions
|
@ -26,7 +26,11 @@
|
|||
|
||||
_vectors:
|
||||
.word __stack_end__
|
||||
.word reset_handler
|
||||
#ifdef STARTUP_FROM_RESET
|
||||
.word _start
|
||||
#else
|
||||
.word reset_wait
|
||||
#endif /* STARTUP_FROM_RESET */
|
||||
.word NmiISR
|
||||
.word FaultISR
|
||||
.word 0 // Populate if using MemManage (MPU)
|
||||
|
@ -111,6 +115,6 @@ DEFAULT_ISR_HANDLER Analog_Comparator_2_ISR
|
|||
DEFAULT_ISR_HANDLER System_Control_ISR
|
||||
DEFAULT_ISR_HANDLER FLASH_Control_ISR
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef STARTUP_FROM_RESET
|
||||
DEFAULT_ISR_HANDLER reset_wait
|
||||
#endif /* STARTUP_FROM_RESET */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue