type.h

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

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

/*
 * $Log: type.h,v $
 * Revision 1.1  2001/02/26 18:39:10  heeschen
 * v00.20Alpha
 * Mods resulting from tests of v00.12Beta.
 *
 * Revision 1.1  2001/02/14 17:13:52  heeschen
 * v00.11 Beta
 * Capturing this new FBTC55 module. Successfully
 * reads/writes flash memory. Untested for bootability
 * of written program.
 *
 * Revision 1.2  2000/12/07 19:57:25  heeschen
 * v0.00002 of the FBTC54 program.
 * Changes made as a result of code review 12/05/00.
 * Doc. CR_12_05_00.doc is the minutes of the review.
 * Biggest change was to the RTDX comm. method, and
 * changing several macros into functions.
 *
 */

#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 + -
显示快捷键?