PRACTICE Script Language User's Guide - Lauterbach

Transcription

PRACTICE Script LanguageUser’s GuideRelease 02.2022MANUAL

PRACTICE Script Language User’s GuideTRACE32 Online HelpTRACE32 DirectoryTRACE32 IndexTRACE32 Documents . PRACTICE Script Language . PRACTICE Script Language User's Guide .1Why Use PRACTICE Scripts .3Related Documents .3PRACTICE Script Structure .4Function4Difference between Variables and PRACTICE Macros4PRACTICE Script Elements5Script Flow6Conditional Script Flow7Script Nesting7Block Structures8PRACTICE Macros9Switching PRACTICE Macro Expansion ON or OFF11Parameter Passing12Input and Output13File Operations .14Automatic Start-up Scripts .15Logging the Call Hierarchy of PRACTICE Scripts .17Debugging PRACTICE Scripts .19Appendix A .21How to Run Demo Scripts Copied from the PDF Manuals21Demo Scripts in the TRACE32 Demo Folder24 1989-2022 LauterbachPRACTICE Script Language User’s Guide 2

PRACTICE Script Language User’s GuideVersion 09-Mar-2022Why Use PRACTICE ScriptsUsing PRACTICE scripts (*.cmm) in TRACE32 will help you to: Execute commands right on start of the debugger Customize the TRACE32 PowerView user interface to your project requirements Set up the debugger with settings for the target board Standardize repetitive and complex actions Initialize the target (e.g. the memory to load an application) Load the application and / or the symbols Add your own and extend available features Speed up debugging through automation Share the debugger methods with other users and empower them to work more efficiently Make debug actions reproducible for verification purposes and regression testsRelated Documents “Training Script Language PRACTICE” (training practice.pdf): Describes how to run and createPRACTICE script files (*.cmm). “PRACTICE Script Language Reference Guide” (practice ref.pdf) PRACTICE Reference Card (https://www.lauterbach.com/referencecards.html) Video Tutorials (https://www.lauterbach.com/tut practice.html) 1989-2022 LauterbachPRACTICE Script Language User’s Guide 3

PRACTICE Script StructureFunctionPRACTICE is a line-oriented test language which can be used to solve all usual problems of digitalmeasurement engineering. PRACTICE-II is an enhanced version of this test language, first developed in1984 for in-circuit emulators.The test language allows interactive script development with the possibility of a quick error removal and animmediate script execution. The execution of PRACTICE testing scripts can be stopped and restarted at anytime.PRACTICE contains an extremely powerful concept for handling script variables and command parameters.This macro concept allows to substitute parameters at any point within the commands. Since PRACTICEvariables can only occur as PRACTICE macros, conflicts between target program names are ruled

(ide_user.pdf). Script Nesting PRACTICE scripts can be nested hierarchically. A second script may be called as a subroutine from the initial script. This subroutine on its part may call up a third script as a subroutine. This allows a structured, modular script development. IF Conditional block execution