📄 writebin.m
字号:
function dummy = writebin(rr,index,data)
%WRITEBIN Writes binary data into DSP register
% WRITEBIN(rr,DATA)
% WRITEBIN(rr,DATA,[],TIMEOUT) - Writes a block of binary string (DATA) into
% the register block described by rr. DATA is string containing '0' or '1' or
% a cell array of such binary strings. This operation will fail if DATA has
% more entries that register ranged specifed by rr. Conversely, if DATA has less
% elements than the register range, DATA will be written starting at the first
% address.
%
% WRITEBIN(rr,DATA,INDEX)
% WRITEBIN(rr,DATA,INDEX,TIMEOUT) - Writes a single binary string (DATA) at
% the specifed index (address offset).
%
%
% DN = WRITEBIN(rr,TIMEOUT) - The time alloted to perform the read is
% limited by the rr.TIMEOUT property of the rr object. However,
% this method can be used to explicitly define a different timeout
% for the read. For example, this may be necessary for very large
% data transfers.
%
% See also WRITE, READ, READ2BIN.
% Copyright 2002 The MathWorks, Inc.
% $Revision: 1.5 $ $Date: 2002/05/14 19:47:03 $
error(nargchk(2,3,nargin));
if ~ishandle(rr),
error('First Parameter must be a REGISTEROBJ Handle.');
end
if nargin==2,
data = index;
elseif nargin==3 & isempty(index)
index = 1;
end
% convert strings/cell array into unsigned integer vector
if iscell(data), % Data is a cell array of hexidecimal (value sized)
data = dec2hex(bin2dec(data));
elseif ischar(data),
data = dec2hex(bin2dec(data));
else
error('DATA must be binary strings (or cell array of them)');
end
if nargin==2, write(rr,data);
else write(rr,index,data);
end
% [EOF] writebin.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -