专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
DSP
TI DSP中各种数据类型的定义
2019-07-13 10:08
发布
生成海报
站内文章
/
DSP
14722
0
1463
DSP/BIOS中的匈牙利记法为:
Sm开头的表示8-bit类型;
Md开头的表示16-bit类型;
Lg开头的表示32-bit类型;
Int表示有符号整型;
Uns表示无符号类型;
Bits表示按bit计算类型;
/* ============================================================================ * 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. * =========================================================================== */ /* * ======== tistdtypes.h ======== */ /* * These types are also defined by other TI components. They are bracketed * with _TI_STD_TYPES to avoid warnings for duplicate definition. * * You may get warnings about duplicate type definitions when using this * header file with earlier versions of DSP/BIOS and CSL. * * You can use the '-pds303' compiler option to suppress these warnings. */ #ifndef _TI_STD_TYPES #define _TI_STD_TYPES /* * This '#ifndef STD_' is needed to protect from duplicate definitions * of Int, Uns, etc. in DSP/BIOS v4.x (e.g. 4.90, 4.80) since these versions * of DSP/BIOS did not contain the '#ifndef_TI_STD_TYPES' logic. */ #ifndef STD_ /* * Aliases for standard C types */ typedef int Int; typedef unsigned Uns; typedef char Char; /* pointer to null-terminated character sequence */ typedef char *String; typedef void *Ptr; /* pointer to arbitrary type */ typedef unsigned short Bool; /* boolean */ #endif /* STD_ */ /* * Uint8, Uint16, Uint32, etc are defined to be "smallest unit of * available storage that is large enough to hold unsigned or integer * of specified size". */ /* Handle the 6x ISA */ #if defined(_TMS320C6X) /* Unsigned integer definitions (32bit, 16bit, 8bit) follow... */ typedef unsigned int Uint32_t; typedef unsigned short Uint16_t; typedef unsigned char Uint8_t; /* Signed integer definitions (32bit, 16bit, 8bit) follow... */ typedef int Int32_t; typedef short Int16_t; typedef char Int8_t; /* Handle the 54x, 55x and 28x ISAs */ #elif defined(_TMS320C5XX) || defined(__TMS320C55X__) || defined(_TMS320C28X) /* Unsigned integer definitions (32bit, 16bit, 8bit) follow... */ typedef unsigned long Uint32; typedef unsigned short Uint16; typedef unsigned char Uint8; /* Signed integer definitions (32bit, 16bit, 8bit) follow... */ typedef long Int32; typedef short Int16; typedef char Int8; #else /* Other ISAs not supported */ #error
is not supported for this target #endif /* defined(_6x_) */ #endif /* _TI_STD_TYPES */
Ta的文章
更多
>>
高速SerDes PCB 设计
0 个评论
TI DSP中各种数据类型的定义
0 个评论
热门文章
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮