📄 global.h
字号:
/****************************************************************************/
/* TEXAS INSTRUMENTS PROPRIETARY INFORMATION */
/* */
/* (c) Copyright, Texas Instruments Incorporated, 2006. */
/* All Rights Reserved. */
/* */
/* Property of Texas Instruments Incorporated. Restricted Rights - */
/* Use, duplication, or disclosure is subject to restrictions set */
/* forth in TI's program license agreement and associated documentation. */
/****************************************************************************/
/****************************************************************************/
/* global.h */
/* */
/* All global variables are identified in this file. */
/* */
/* If GLOBAL_ALLOCATE is defined, this file is being included from global.c */
/* to allocate global variables. Otherwise, the file is being included to */
/* define references to the global objects. */
/* */
/* If GLOBAL_ALLOCATE is defined: */
/* SCLASS has a nil value, thus causing the compiler to define the objects */
/* and allocate memory for them. */
/* */
/* If GLOBAL_ALLOCATE is not defined: */
/* SCLASS has a value of "extern," thus causing the compiler to reference */
/* the objects for the remainder of the file scope. */
/****************************************************************************/
#ifndef __GLOBAL_H
#define __GLOBAL_H
#include "app_Cfg.h"
/****************************************************/
/* Definition of flash table address/config numbers */
/****************************************************/
#define FLASH_TABLEADDR 0xfa008000
#define SDRAM_TABLEADDR 0xf8008000
#define CONFIGNO_SEQ 0 /* sequencer configuration number */
#define CONFIGNO_SWASIC 1 /* ASIC parameter configuration number */
/****************************************************/
/* Define storage class for this compilation. */
/****************************************************/
#ifdef GLOBAL_ALLOCATE
#define SCLASS
#else
#define SCLASS extern
#endif
SCLASS uint32 gID_MemPool; /* memory pool */
SCLASS SettingsStruct *gpSettings; /* Projector Settings */
SCLASS ConfigurationStruct *gpConfiguration; /* App Config */
SCLASS CalibrationStruct *gpCalStructure; /* Calibration */
SCLASS EdidStruct *gpEdidStructure; /* EDID */
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -