csl_version.h
来自「dsp在音频处理中的运用」· C头文件 代码 · 共 48 行
H
48 行
#ifndef _CSL_VERSION_H_
#define _CSL_VERSION_H_
#ifdef __cplusplus
extern "C" {
#endif
/*****************************************************\
* Copyright 2003, Texas Instruments Incorporated. *
* All rights reserved. *
* Restricted rights to use, duplicate or disclose *
* this code are granted through contract. *
\*****************************************************/
#include <tistdtypes.h>
#define CSL_VERSION_ID (0x03001202) /* 0xAABBCCDD -> Arch (AA); API Changes (BB); Major (CC); Minor (DD) */
#define CSL_VERSION_STR "@# CSL Revision: 3.00.18.02;"
#define CSL_CHIP_ID (0x5912)
#define CSL_CHIP_STR "TMS320C5912 PG 1.0 (ARM9)"
/**
@brief Retrieves the version ID
*/
Uint32
CSL_versionGetID (
void
);
/**
@brief Retrieves the version string
*/
const char *
CSL_versionGetStr (
void
);
#ifdef __cplusplus
}
#endif
#endif /* _CSL_VERSION_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?