请教在CCS2000中,可以使用fopen()函数吗?
- UID
- 154242
- 性别
- 男
|
请教在CCS2000中,可以使用fopen()函数吗?
我在使用的时候,通过定义了.cio section,并把.sysmem section 的长度调整后,编译没有任何问题。但是在运行的时候,总是无法打开文件,指针指向NULL。请问是为什么?(F2812)
相关程序如下 FILE *inputfile; inputfile = fopen("\\test","wt"); if(inputfile != NULL) { putc (1,inputfile); } else { printf("file open error!\n"); } fclose (inputfile); [em09] |
|
|
|
|
|