Hi -
I succeeded in bricking my Stellaris at my first attempt. I am using the IAR Embedded Workbench, connected to the evaluation board via USB from a Dell Vostro laptop. Lost communication with the eval board while stepping through the following program, while the counter was ~12, much less than the upper limit of 20:
int counter = 0;
int main() {
int *p_int;
p_int = &counter;
while (*p_int < 21) { << lost communciations here, while counter was ~12
++(*p_int);
}
p_int = (int *)0x20000004; // word-aligned
*p_int = 0xDEADBEEF;
return 0;
}
Resetting the eval board, rebooting the laptop & restarting the debugging environment has no effect.
Any suggestions?
- Steve