⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 info.m

📁 一个MATLAB的应用程序
💻 M
字号:
function oinfo = info(cc)
%INFO return information about the target DSP processor.
%   ICC = INFO(CC) returns information about the DSP processor in Code
%   Composer Studio(tm) which is referenced by CC.  The resulting
%   information is returned as a structure.  The following list
%   describes the elements of the resulting output structure: 
%
%   ICC.PROCNAME - String with the name of the DSP processor defined by 
%     the Code Composer setup utility.  In multiprocessor systems, this
%     name reflects the specific processor referenced by the CC object.
%   ICC.ISBIGENDIAN - Boolean value which describes the byte-ordering used
%     by the target DSP.  If the DSP processor is big-endian, this value
%     is true.  Conversely, little-endian processors will produce a false
%     value for this element.
%   ICC.FAMILY  - Decimal integer which represents the processor's
%     family ID, 0-999.  For example, 320 for Texas Instrument's DSPs.
%   ICC.SUBFAMILY - Hexidecimal integer which represents the processor's
%     subfamily ID, 0-3822.  Use DEC2HEX to convert this value to standard
%     notation.  For example, dec2hex(icc.subfamily) produces '67' with
%     the TMS320C6701 DSP.  
%   ICC.REVFAMILY - Decimal value which represents the processor's revision.
%     For example, the TMS320C6711 will produce 11 for this entry.
%   ICC.TIMEOUT - Default timeout used by Matlab during data transfers to
%     and from Code Composer Studio(tm).  All methods that require timeouts
%     have an optional timeout parameter.  If a specific timeout parameter 
%     is omitted by a method call, then this default value is used.
%
%  For example:
%   icc = cc.info;
%   sprintf('My DSP = TMS%03dC%2s%02d\n',...
%      icc.family,dec2hex(icc.subfamily),icc.revfamily)
%
%  Note - Code Composer's support for the DSP family information is incomplete. 
%  Thus, some processors will be reported as related members of the same family.
%
%   See also DEC2HEX, DISP.

% Copyright 2002 The MathWorks, Inc.

⌨️ 快捷键说明

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