type.h

来自「ti dsp 5402 的BOOT程序。利用此程序实现将代码写入到FLASH 的」· C头文件 代码 · 共 38 行

H
38
字号
/* type.h
 *
 * Copyright (c) 2000 Texas Instruments Incorporated
 *
 *  Originally created by DNA Software,
 *  Modified by Russ Heeschen for demo.
 */

/*
 * $Log: type.h,v $
 * Revision 1.1  2000/12/08 18:39:54  heeschen
 * Added type.h to the package.
 * Added a command file for hex conversion to TI ASCII as
 * well as Motorola. Added file is FlashBlink_ahex.cmd.
 *
 *
 */

#if !defined( TYPE__H )
#define       TYPE__H

typedef enum 
{
   FALSE = 0,
   TRUE  = !FALSE
} BOOL;

typedef float f32;

typedef long s32;
typedef unsigned long u32;

typedef short s16;
typedef unsigned short u16;

#endif

⌨️ 快捷键说明

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