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

Please Help...How do I "Go To Definition Of"

Everytime I highlight a variable or function and select "Go To Definition Of" it gives me an error that Browse Information does not exist. I have Browse Information selected in the output tab.

Does this feature exist in uVision?

What say you?

Parents
  • Correct - pragma ASM requires pragma SRC

    "I guess I have to use Find in Files to find every variable initiaization and function definition."

    Yes, that's another reason to avoid inline assembler unless absolutely necessary!

    Note that it also means that you won't be able to do 'C' source-level debugging on any of those files...

    Might be worth reviewing the use of inline assembler and removing it wherever possible - or, at least, creating separate assembler modules for any bits that really do need to be in assembler...

Reply
  • Correct - pragma ASM requires pragma SRC

    "I guess I have to use Find in Files to find every variable initiaization and function definition."

    Yes, that's another reason to avoid inline assembler unless absolutely necessary!

    Note that it also means that you won't be able to do 'C' source-level debugging on any of those files...

    Might be worth reviewing the use of inline assembler and removing it wherever possible - or, at least, creating separate assembler modules for any bits that really do need to be in assembler...

Children