|
|||||||||||||||||||
Technical Support On-Line Manuals µVision User's Guide About µVision User Interface Creating Applications Utilities Debugging Debug Commands ASM ASSIGN BreakAccess BreakDisable BreakEnable BreakKill BreakList BreakSet COVERAGE COVTOFILE DEFINE DIR Display Enter EVALuate EXIT FUNC Go INCLUDE KILL LOAD LOG LogicAnalyze MAP MODE Ostep PerformanceAnalyze Pstep RESET SAVE SCOPE SET SIGNAL SLOG Tstep Unassemble WatchSet WatchKill Debug Functions Simulation Flash Programming Dialogs Example Programs Command Line Appendix |
BreakSetThe BreakSet command sets a breakpoint for the specified expression (exp). Breakpoints are program addresses or expressions that, when true, halt execution of your target program or execute the specified command ("cmd").
Breakpoint parameters:
Breakpoint types are categorized through the following rules:
ExamplesThe following breakpoint is valid: BS WRITE time.sec /* Valid expression */ The following breakpoint is invalid, because adding two values (timer.sec and i0) does not result in a memory type: BS WRITE time.sec + i0 /* Invalid expression */ The following example sets an execution breakpoint on the address of the main function. BS main The following example sets an execution breakpoint on the address of the timer0 function. The breakpoint occurs and the command "MyRegs()" is executed only after the 10th invocation of timer0. Program execution continues after the command executes. BS timer0,10,"MyRegs()" The following example sets a conditional breakpoint on the sindex symbol. When sindex is equal to 8, program execution halts. BS sindex == 8 The following example sets a conditional breakpoint on the save_record array. Program execution halts on the third time save_record[5].time.sec is greater than 5. BS save_record[5].time.sec > 5, 3 The following example sets a memory access breakpoint on READ accesses of the interval.min symbol. Program execution halts when the min element of the interval structure or union is 3. BS READ interval.min == 3 The following example sets a memory access breakpoint on WRITE accesses to the savefirst symbol. Program execution halts when savefirst is 5 and the accumulator (acc) is 0x12 after savefirst is written. BS WRITE savefirst == 5 && acc == 0x12 Note
| ||||||||||||||||||
|
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.