Hi,
I can't output "Hello World" to console window.
I have the below error with EVM6657 board.
C66xx_0: Trouble Writing Register PC: (Error -1176 @ 0x5760) Unable to access device memory. Verify that the memory address is in valid memory. If error persists, confirm configuration, power-cycle board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 5.0.872.0)
Also the below is my source code. It is very simple.
#include <stdio.h>
/*
* hello.c
*/
int main(void) {
fprintf(stderr, "Hello World!\n");
return 0;
}
And I set stack size and heap size on CCS5.
What should I check for solving this error?
Please let me know.
Best regards,
Michi