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

📄 type.h

📁 ti dsp 5510 的BOOT程序。利用此程序实现将代码写入到FLASH 的功能。
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -