mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 11:53:53 -04:00
Update to use new port layer.
This commit is contained in:
parent
7e3a04602d
commit
96b7e685a7
4 changed files with 33 additions and 28 deletions
|
@ -82,7 +82,8 @@ HeapMem
|
|||
; The vector table.
|
||||
;
|
||||
;******************************************************************************
|
||||
Vectors
|
||||
EXPORT __Vectors
|
||||
__Vectors
|
||||
DCD StackMem + Stack ; Top of Stack
|
||||
DCD Reset_Handler ; Reset Handler
|
||||
DCD NmiSR ; NMI Handler
|
||||
|
@ -94,7 +95,7 @@ Vectors
|
|||
DCD 0 ; Reserved
|
||||
DCD 0 ; Reserved
|
||||
DCD 0 ; Reserved
|
||||
DCD IntDefaultHandler ; SVCall Handler
|
||||
DCD vPortSVCHandler ; SVCall Handler
|
||||
DCD IntDefaultHandler ; Debug Monitor Handler
|
||||
DCD 0 ; Reserved
|
||||
DCD xPortPendSVHandler ; PendSV Handler
|
||||
|
@ -147,6 +148,7 @@ Reset_Handler
|
|||
IMPORT vUART_ISR
|
||||
IMPORT xPortPendSVHandler
|
||||
IMPORT xPortSysTickHandler
|
||||
IMPORT vPortSVCHandler
|
||||
|
||||
LDR R0, =__main
|
||||
BX R0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue