SerPIC = serial('COM10');
set(SerPIC,'BaudRate', 115200, 'DataBits', 8, 'Parity', 'none','StopBits', 1, 'FlowControl', 'software');
fopen(SerPIC); %--open the serial port to the PIC
fprintf(SerPIC, '%s', 'b');
fid = fopen('D:\pipt1.abs');
tline = fgets(fid);
while ischar(tline)
  fprintf(SerPIC, '%s',tline )
    tline = fgets(fid);
end
fclose(fid);
fclose(SerPIC) %--close the serial port when done
delete(SerPIC)
clear SerPIC


我正在使用Tms570ls20216 USB。在板上,我有引导程序。当我向板上发送b时,它将在吸收abs文件后刷新板。它在超级终端中正常工作,但在Matlab中运行时却没有闪烁。我是Matlab的新手。我的代码有什么问题吗?我不知道这是否是问这个问题的合适地方。很抱歉,如果不是这样。

最佳答案

您是否需要在b命令的末尾发送换行符?像这样:

fprintf(SerPIC, 'b\n');  %add line feed, no need for %s from the original code

08-26 14:34