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

📄 type.h

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