首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

请教在CCS2000中,可以使用fopen()函数吗?

请教在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]

返回列表