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.
工具/软件:Linux
你好
我正在 AWM 内核中的 Linux 中工作
我有疑问
我有2个应用。 其中的第一个通过 DSPLINK 与 DSP 内核交换数据。 第二个将文件写入 SD 卡
两个应用程序同时运行
当文件大小超过40MB 时,第一个应用程序异常关闭。 该文件存储 DSP 存储器的内容
文件写入程序
char rec_buf [2048];
我打开文件
resultfile = open (name、O_RDWR | O_creat | O_append、0640);
我记下一个文件
对于(I = 0;I <30000;I ++)
test_a =写入(resultfile、rec_Buf、函数 strlen (rec_Buf));
关闭(结果文件);
为什么 DSP 存储器和 AWP 内核存在冲突