open.m

来自「一个MATLAB的应用程序」· M 代码 · 共 18 行

M
18
字号
function dummy = open(varargin)
%OPEN Open RDTX(tm) channels to the target DSP.
%   OPEN(R, CHANNEL1, MODE1, CHANNEL2, MODE2,...) opens new RTDX channels
%   with specified string names CHANNEL1, CHANNEL2, etc. and corresponding 
%   specified read/write modes MODE1, MODE2, etc., and stores these attributes
%   in the RTDX object R.
%       MODE: 'r' or 'R' to configure channel for read, or
%             'w' or 'W' to configure for write
%
%   OPEN(R, CHANNEL, MODE) opens a single, new RTDX channel.
%
%   Note:  Code Composer Studio(tm) API will error out if corresponding channel
%   name is not defined and enabled in the target DSP code.
%
%   See also CLOSE

% Copyright 2002 The MathWorks, Inc.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?