2012-04-03 80 views
3
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。在董事會我有bootloader在裏面。當我發送一個b到板子後,它會在拍攝abs文件後閃動板子。它在超級終端中正常工作,但在matlab中運行時不閃爍。我是matlab新手。我的代碼有什麼問題嗎?我不知道這是否適合提問。對不起,如果不是。matlab串行通訊

回答

0

您是否需要在b命令的結尾處發送換行符?像這樣:

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