SPRAD28 October 2022 AM2431 , AM2432 , AM2434 , AM2631 , AM2631-Q1 , AM2632 , AM2632-Q1 , AM2634 , AM2634-Q1 , AM263P4 , AM263P4-Q1 , AM26C31 , AM26C31-EP , AM26C31M , AM26C32 , AM26C32-EP , AM26C32C , AM26C32M , AM26LS31 , AM26LS31M , AM26LS32A , AM26LS32AC , AM26LS32AM , AM26LS33A , AM26LS33A-SP , AM26LS33AM , AM26LV31 , AM26LV31E , AM26LV31E-EP , AM26LV32 , AM26LV32E , AM26LV32E-EP , AM26S10 , AM2732 , AM2732-Q1
To open the Variables view: View → Variables
The Variables view shows only Local variables that belong to the function currently being executed.
To see an example of this, import gpio_interrupt example and set a breakpoint inside gpio_interrupt.c in gpio_input_interrupt_main() and in the ISR GPIO_bankIsrFxn().
Run the program and let it halt at the first breakpoint in gpio_input_interrupt_main(). Take a look a the variables listed in the Variables view - notice it shows the variables local to this function. You can modify the value of a variable directly from the Variables view. Variables whose values have changed since the last time they were seen are highlighted in yellow.
To open the Expressions view: View → Expressions
The Expressions view allows you to watch local, global, and static variables, C-valid expressions, and registers.
Expressions whose values have changed since the last time they were seen are highlighted in yellow. You can modify the value of an expression directly from the Expressions view.