mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Update to use new port layer.
This commit is contained in:
parent
5024d47769
commit
6e9d6a2bdf
4 changed files with 32 additions and 23 deletions
|
@ -67,9 +67,11 @@ DCGC2_OFS EQU 0x0128 ; Deep-Sleep-Mode Clock Gating Control 2
|
|||
IMPORT xPortPendSVHandler
|
||||
IMPORT xPortSysTickHandler
|
||||
IMPORT vUART_ISR
|
||||
IMPORT vPortSVCHandler
|
||||
|
||||
; Vector Table
|
||||
Vectors DCD Stack_Mem + Stack_Size ; Top of Stack
|
||||
EXPORT __Vectors
|
||||
__Vectors DCD Stack_Mem + Stack_Size ; Top of Stack
|
||||
DCD Reset_Handler ; Reset Handler
|
||||
DCD NmiSR ; NMI Handler
|
||||
DCD DefaultISR ; Hard Fault Handler
|
||||
|
@ -80,7 +82,7 @@ Vectors DCD Stack_Mem + Stack_Size ; Top of Stack
|
|||
DCD 0 ; Reserved
|
||||
DCD 0 ; Reserved
|
||||
DCD 0 ; Reserved
|
||||
DCD 0 ; SVCall Handler
|
||||
DCD vPortSVCHandler ; SVCall Handler
|
||||
DCD DefaultISR ; Debug Monitor Handler
|
||||
DCD 0 ; Reserved
|
||||
DCD xPortPendSVHandler ; PendSV Handler
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue