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

📄 flash.bak

📁 FreeScale imx21开发板Nand flash烧写程序
💻 BAK
字号:
// ***************************************************************************
//
//  Filename:       flash.h
//
//  Created:        Louis Lai (6/20/2003)
//
//  Modified:       $Author: $ $Date: $
//
// ***************************************************************************


// ***************************************************************************
//  include file opening statements
// ***************************************************************************
#ifndef __FLASH_H
#define __FLASH_H

#ifndef TRUE
    #define TRUE               (1 == 1)
#endif
#ifndef FALSE
    #define FALSE              (1 == 2)
#endif


// ***************************************************************************
//  pragmas
// ***************************************************************************


// ***************************************************************************
//  includes
// ***************************************************************************


// ***************************************************************************
//  macros
// ***************************************************************************



// ***************************************************************************
//  definitions
// ***************************************************************************


// ***************************************************************************
//  types
// ***************************************************************************
//typedef struct _FLASH_INFO      FLASH_INFO;
//typedef struct _FLASH_SEGM		FLASH_SEGM;


// ******************************************************
// data
// ******************************************************

//struct _FLASH_SEGM                                  // Erase sector group info
//{                                                   // -----------------------
//    U32                         nSectors;           // number of sectors
//    U32                         nSize;              // size of sectors (bytes)
//};


//struct _FLASH_INFO                                  // Flash device type info
//{                                                   // -----------------------
//    U32                         nSize;              // density in bytes
//    U32                         nWidth;             // bus width in bits
//
//    U32                         nSectorGroups;      // # erase sector groups
//    FLASH_SEGM                  xSectorGroups[4];   // erase sector geometries
//
//	U32                         nBurstClock;        // burst clock freq (MHz)
//    BOOL                        bBurstMode;         // burst mode enabled?
//
//    U32                         nMaxFrequency;      // maximum burst frequency
//    U32                         nTaccAsync;         // async. access time
//    U32                         nTaccSync;          // sync initial acc. time
//
//    char                        xTypeName[64];      // device type
//};

// ***************************************************************************
//  inline functions
// ***************************************************************************


// ***************************************************************************
//  include file closing statements
// ***************************************************************************
#endif // #ifndef __FLASH_H

⌨️ 快捷键说明

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