• Stop watch for cortex M3 processors
    HI Iam using a cortex M3 processor. When i try to debug/ simulate a section of code, i observe that the time taken to execute certain code sections doesnt change if i change the PLL settings in the...
  • Stop watch for cortex M3 processors
    HI Iam using a cortex M3 processor. When i try to debug/ simulate a section of code, i observe that the time taken to execute certain code sections doesnt change if i change the PLL settings in the...
  • AGSI Stop vs. uvision Stop
    Hi all, I use the uvision Stop button to stop the running code. Then in my DLL, I reset and go to the begining of the program. All work. When I want to add the "Stop" functionality to the DLL...
  • AGSI Stop vs. uvision Stop
    Hi all, I use the uvision Stop button to stop the running code. Then in my DLL, I reset and go to the begining of the program. All work. When I want to add the "Stop" functionality to the DLL...
  • How to watch the *pointer = array[10] in the debug WATCH windows
    When the *pointer point to an array, as follow: int *pointer = malloc(sizeof(int) * 10); How can I watch the array in the debug WATCH windows? In Visual studio , we can use "pointer, 10" to watch...