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

📄 csl_sysdata.c

📁 TI达芬奇dm644x各硬件模块测试代码
💻 C
字号:
/*  ============================================================================
 *   Copyright (c) Texas Instruments Inc 2002, 2003, 2004, 2005                 
 *                                                                              
 *   Use of this software is controlled by the terms and conditions found in the
 *   license agreement under which this software has been supplied.             
 *   ===========================================================================
 */
 
/* ---- File: <csl_sysData.c> ---- */

#include <csl_sysData.h>
#include <csl_version.h>
#include <soc.h>

#pragma DATA_SECTION (CSL_sysDataObj, ".bss:csl_section:sys");

CSL_SysDataObj CSL_sysDataObj = {

    NULL,               /* alternate base address router */
    NULL,               /* physical to virtual address mapping routine */
    NULL,               /* virtual to physical address mapping routine */
    CSL_VERSION_ID,     /* defined in csl_version.h */
    CSL_CHIP_ID,        /* defined in _csl_device.h */
    NULL,               /* pointer to the chip-register overlay */
    0,                  /* XIO shared pins in use mask */

    {0},                /* CSL peripheral resources in-use mask-matrix */
    {0},                /* CSL modules' init Done bit flag matrix */

/*  these lines have been intentionally
    left blank to align with the declaration
    of the structure in csl_sysData.h
*/

    0,                  /* intcAllocMask[ ] */
    0                   /* intcEventHandlerRecord[ ] */

};

CSL_SysDataHandle CSL_sysDataHandle = &CSL_sysDataObj;

⌨️ 快捷键说明

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