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

📄 tvpver.h

📁 ti的数字电视芯片 tvp9000的源码
💻 H
字号:
/***************************************************************************** 
*    Property of Texas Instruments Incorporated, Copyright 2004
*    All rights reserved
******************************************************************************/
/*********************************************************************
*
* Description:
*  TvpVer.h contains the version number of the library
*  
*  Contents:
*      version definitions
*   
**********************************************************************/
/*********************************************************************
*
* $Revision: $  
*
* $History: TvpVer.h $
* 
*********************************************************************/

#ifndef TVP_VER_DOT_H_IS_DEFINED
#define TVP_VER_DOT_H_IS_DEFINED


#define TVP_RTSL_VER    0x0B000207       /* RTSL     code   */  
#define TVP_FW_VER      0x0B000207       /* Firmware code   */
#define TVP_AUDIO_VER   0x0B000207       /* Audio code      */
#define TVP_BOOT_VER    0x0F000001       /* boot code       */
#define TVP_VIDEO_VER   0x0B000207       /* Video code      */

typedef struct {
     unsigned long rtsl;     /* RTSL     code   */  
     unsigned long firmware; /* Firmware code   */
     unsigned long audio;    /* Audio code      */
     unsigned long boot;     /* boot code       */
     unsigned long video;    /* Video code      */
} TvpVersion;  

void tvpSysGetVersion(TvpVersion *p);
        
#endif
                                       

⌨️ 快捷键说明

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