49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
; --------------------------------------------------------------------------------
|
|
; @Title: SYS/BIOS Demo for TRACE32 OS Awareness
|
|
; @Description:
|
|
; This batchfile loads all necessary files to demonstrate
|
|
; the OS Awareness for SYS/BIOS.
|
|
; @Keywords: awareness
|
|
; @Author: DIE
|
|
; @Chip: Cortex-M3, Cortex-A72
|
|
; @Copyright: (C) 1989-2022 Lauterbach GmbH, licensed for use with TRACE32(R) only
|
|
; --------------------------------------------------------------------------------
|
|
; $Id: sysbios.cmm 18850 2022-01-26 18:41:29Z bschroefel $
|
|
|
|
|
|
AREA.RESet
|
|
WinPAGE.RESet
|
|
WinPOS 0 24. 70. 8. 0. 0. W000
|
|
AREA.view
|
|
|
|
; Debugger reset
|
|
PRINT "resetting..."
|
|
RESet
|
|
|
|
; Debugger initializations
|
|
PRINT "initializing..." ; send to message line
|
|
SYStem.CPU CortexM3
|
|
SYStem.Up
|
|
|
|
; print "loading application..."
|
|
Data.LOAD.Elf sysbios.out
|
|
|
|
; initialize RTOS support
|
|
PRINT "initializing SYS/BIOS support..."
|
|
TASK.CONFIG ~~/demo/arm/kernel/sysbios/sysbios.t32 ; load SYS/BIOS awareness
|
|
TASK.STacK.PATtern 0xbe ; stack fill pattern
|
|
|
|
PRINT "load complete." ; send to Message Line
|
|
|
|
; open some windows
|
|
WinPOS 0. 0. 70. 21.
|
|
List.auto
|
|
WinPOS 40. 10. 80. 6.
|
|
TASK.TASK
|
|
|
|
; init SYS/BIOS
|
|
Go task1
|
|
|
|
ENDDO
|
|
|