This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

在EXP_MSP430F5529开发板上用TI-RTOS的FatFs打开文件出错

Other Parts Discussed in Thread: MSP430F5529

我正在用EXP_MSP430F5529 experiment开发板跑TI-RTOS。开发工具CCS6.0,. 我从TI 资源管理器里找到TF卡测试的TI-RTOS例程,并把它下载到开发板上,可以创建input.txt,并在上面写入字符串,然后也可以创建和读取output.txt里的内容,并在终端上显示内。但是当我自己新建一个CCS工程,加载了同例程一样的SDSPI,Fatfs驱动,在用C语言IO操作流打开文件(fopen)的时候,终端出现了错误提示“{module-rope:8029}: line 307: error {id:0xfae0000, args:[0x3c46, 0x224]}”

我设置了FatFs的文件名前缀"fatfs",并在c文件内定义了" const char  inputfile[] = "fatfs:"STR(DRIVE_NUM)":input.txt"; "  ,也开启了SDSPI。

请问这是怎么回事?