Other Parts Discussed in Thread: UNIFLASH
Hi,
I am trying to run a simple hello world program on the Stellaris LM3S9B96 development board. The main function is as follows. After loading the .out file via the debugger, the device thread appears to get stuck in some infinite loop while running the _c_int00 () at boot.asm. Thus the debugger never makes it to the main function. If I remove the #include iostream reference, the debugger loads the .out file with no issues and the program halts at the start of main. I seen a similar post on this issue but there wasn't any responses posted from TI. Can someone tell me if I have something misconfigured or if I need to add something to the linker command file.
#include <stdio.h>
#include <iostream.h>
int main() {
printf("\r\nHello World");
fflush(stdout);
return 0; }
