Hello,
I am using "Design Studio v3.4" to program an application on (s32k144 evb q100)
I tried to create a simple .txt file but when I debug and run the code it goes to "DefaultISR"
here is my code:
_______________________________________
#include <stdio.h>
#include <stdlib.h>
FILE *fp;
int main(void)
{
for(;;)
{
fp=fopen("file2.txt", "a");
fprintf(fp,"I am writing to file2.txt \n");
fclose(fp);
}
}