Tool/software:
Hi everyone,
I'm experiencing an issue with Code Composer Studio (CCS) where the fopen function hangs during execution.
When I run my code, the fopen function seems to hang indefinitely. Additionally, the execution shows as suspended and ends at __CSL_intcIsrNMI: CALLDISP 1.
Here's a simplified version of my code:
#include <stdio.h>
int main() {
FILE *file = fopen("example.dat", "rb");
if (file == NULL) {
perror("Unable to open file!");
return 1;
}
// Additional code here...
fclose(file);
return 0;
}
I am also seeing similar problems with printf and fgets functions.

Setup:
- CCS Version: 9.3.0.00012
- Target Device: TMS320C6655
- Host OS: Windows 10
Has anyone encountered similar problems or have any suggestions on what might be causing this behavior?
Any help would be greatly appreciated!
Thanks,
Rahul