Other Parts Discussed in Thread: CCSTUDIO, TMS320F28027, TMDSEMU200-U
In main.c flie program, I Need to read the address of the variables through DSS scripting syntax. Please Suggest the syntax for reading Variable address.
For example, my main.c program is
void main(void)
{
int a=2;
int b=5;
int i;
i=a+b;
}
during reading the address of Symbols we can use the syntax as below
// Get the address of that symbol
var address = debugSession.symbol.getAddress("main")
*****Similar to that i need for // Get the address of that Variables
Please refer the API documentation for DSS :