I have updated my KEIL from 5.15 to 5.33. In KEIL 5.15 I set Reset and Run option in Flash->Configure Flash Tools->Debug( Selecting St-link) Settings->flash download and after programming my MCU start working. However, after updating KEIL to…
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 the array easily. Can keil do like this??