; -------------------------------------------------------------------------------- ; @Title: pSOS+ Demo for TRACE32 OS Awareness ; @Description: ; ; This batchfile loads all necessary files to demonstrate ; the RTOS-Debugger for pSOS+ 3.0.x ; ; @Keywords: awareness, psos, RTOS, v30x ; @Author: DIE ; @Chip: MPC823 ; @Copyright: (C) 1989-2014 Lauterbach GmbH, licensed for use with TRACE32(R) only ; -------------------------------------------------------------------------------- ; $Id: psos.cmm 13125 2018-09-11 14:03:01Z rdienstbeck $ ; Created by R. Dienstbeck, Lauterbach GmbH at 26.11.02 SCREEN.ON ; Debugger Reset WinPAGE.RESet AREA.RESet WinPOS 0. 22. 70. 8. 0. 0. W000 AREA.view PRINT "resetting..." SYStem.Down sYmbol.RESet Break.Delete SCREEN.ALways ; Initializing Debugger SYStem.Down SYStem.CPU MPC823 SYStem.Up ; load sample application PRINT "loading sample application..." Data.LOAD.auto ram.elf ; patch board hardware setup for simulator IF SIMULATOR() ( Data.Assemble InitBoard+0x70 nop Data.Assemble i2c_cpm_cmd blr Data.Assemble issue_command blr ) ; initialize mutitasking support PRINT "initializing RTOS support..." TASK.CONFIG psos ; load psos awareness (psos.t32) MENU.ReProgram psos ; load additional menu (psos.men) HELP.FILTER.Add rtospsos ; add psos awareness manual to help filter PRINT "load complete." ; open windows WinPOS 0. 0. 70. 20. List.auto ; start application Go.direct root WAIT !run() WinPOS 30. 10. 77. 14. TASK.QT ENDDO