This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

uVision 3 UI querry (book marks break points)

I haven't found this:
I would like to be able to JUMP in the viewer to a break point while NOT debugging. IE just go to where the break point is set in ones code.

The other question is HOW do I set a book mark in a file that I can jump to later? I have to scroll there code sometimes so I can check variables etc. There appears to be no book mark ability. For editing this would be very handy.

Stephen

Parents
  • Hello Stephen,

    1) You asked:
    "...how do I set a book mark in a file?"

    You can set a bookmark on any line of code with the Ctrl+F2 shortcut:

    http://www.keil.com/support/man/docs/uv3/uv3_ui_edit.htm

    The bookmarks will remain in editor mode or debug mode.

    2) You also asked:
    "...so I can check variables etc" "

    The traditional way to do this is to right click on the global variable and select "Add ... to watch window..." and choose either window 1 or 2.

    Then go to View -> Watch and Call Stack window" and you will be able to continuously watch a set of Global variables. Choose the tab at the bottom of the watch windows to switch between different lists. See:

    http://www.keil.com/support/man/docs/uv3/uv3_db_dbg_watchwin.htm

    There is not an easy way to jump back and forth between breakpoints; bookmarks were designed for that role.

Reply
  • Hello Stephen,

    1) You asked:
    "...how do I set a book mark in a file?"

    You can set a bookmark on any line of code with the Ctrl+F2 shortcut:

    http://www.keil.com/support/man/docs/uv3/uv3_ui_edit.htm

    The bookmarks will remain in editor mode or debug mode.

    2) You also asked:
    "...so I can check variables etc" "

    The traditional way to do this is to right click on the global variable and select "Add ... to watch window..." and choose either window 1 or 2.

    Then go to View -> Watch and Call Stack window" and you will be able to continuously watch a set of Global variables. Choose the tab at the bottom of the watch windows to switch between different lists. See:

    http://www.keil.com/support/man/docs/uv3/uv3_db_dbg_watchwin.htm

    There is not an easy way to jump back and forth between breakpoints; bookmarks were designed for that role.

Children