Starting from:

$30

EMBSYS100-Assignment 2 IAR IDE, Machine Instructions, Addresses, Variables and Pointers Solved

The goals for the assignment this week:

1.      To explore the IAR IDE and the different debug views.

2.      Get a better understanding of machine instructions, addresses, variables and pointers.

Setup:

1.      Create a new project in IAR following the steps from the slide deck

2.      Create a counter local variable and increment the counter several times.

3.      Run the program in the simulator environment and answer the following questions:

Observe and answer:

1.      Inject 0x1FFFFFFF for the “counter” value in the variable window, then step thru the program only once to increment “counter”.

a)      What is the value of the “counter” from the “Locals” window?

b)     What is the value of the “counter” in the “Register” window?

c)      Which flags are set in the APSR register? Explain why?

 

2.      If your write all Fs (0XFFFFFFFF) in the Register value for “counter” then step thru the program once to increment “counter”

a)      What happens to the value of “counter” in the “Locals” window?

b)     What flags, if any, are set in the APSR?

 

3.      Change the “counter” variable type in your code to “unsigned”. Inject the values “0x1FFFFFFF” then step thru the program to increment the “counter” once:

a)      What is the value of “counter” in the “Locals” window after incrementing for each value?

b)     What flags, if any, are set in the APSR? Explain why?

 

4.      Change the “counter” variable type in your code to “unsigned”. Inject the values “0xFFFFFFFF” then step thru the program to increment the “counter” once:

a)      What is the value of “counter” in the “Locals” window after incrementing for each value?

b)     What flags, if any, are set in the APSR? Explain why?

 

5.      Move the “counter’ variable outside of main (at the top of the file):

a)      What is the scope of the variable “counter”?

b)     Is it still visible in the “Locals” view?

c)      In which window view can we track “counter” now? 

d)     What is the address of the “counter” variable in memory?

6.      Change the source code to the following, then run the program still in the simulator:

 

int counter = 0x0; int main() {

int *p_int = (int *)0x20000000;

++(*p_int);

++(*p_int); ++(*p_int); counter ++;

return 0;

}
 

a)      What is the value of “counter” at the end of the program (halting at the return 0 statement)

b)     Explain why the counter value has changed?

 

 

7.      Change the setting of IAR to run the same program on the evaluation board:

 

Setup:

1.      Connect evaluation board to your computer through ST Link cable.

2.      Set the IAR to using STLink:

3.      Project - Options - Debugger - Device: ST-Link

4.      Download setting is flash loader

5.      Make sure ST-Link Interface is set to SWD 6. Run the same code described in the simulator.

 
 

a)      What is the address where “counter” is stored?  

b)     Is the “counter” variable stored in RAM or ROM?

c)      What is the value of “counter” at the end of the program (halting at the return 0 statement).

More products