Matlab串口函数函数 说明
_____________________________________________________
serial 创建一个串口对象,格式:s = serial('coml' )
fopen 打开串口对象,格式:fope n( s)
fread 读取串口数据,格式: fread(s)
fclose 关闭串口对象,格式:fclose(s)
free 解除Matlab对串口对象的控制,使
serial 其他程序能对该串口进行读写操作
delete 删除对象s,格式:delete( s)
clear 从工作空间中删除对象s,格式:clear(s)
1