📄 symbol.m
字号:
function symtab=symbol(cc)
%SYMBOL Reads the target's entire symbol table from Code Composer(tm).
% S = SYMBOL(CC) Returns the entire symbol table as an array of
% structures for the most recently loaded program. This method
% is only applicable after loading the target's program file. If
% the symbol table does not exist, a warning is generated and S is
% empty. The element 'address' in the returned structure array can
% be used directly as an input to the address field of CC.READ and
% CC.WRITE.
%
% Return value:
% S(n).name - String with symbol name
% S(n).address(1) - Address offset of symbol
% S(n).address(2) - Page of symbol
%
% See also DEC2HEX, LOAD, ADDRESS.
% Copyright 2001-2002 The MathWorks, Inc.
% $Revision: 1.11 $ $Date: 2002/06/12 15:30:27 $
error(nargchk(1,1,nargin));
if ~ishandle(cc),
error('First Parameter must be a CCSDSP Handle.');
end
symtab = ccsmexswitchyard([19,cc.boardnum,cc.procnum,0,0]);
% [EOF] symbol.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -