|
|||||||||||
Technical Support On-Line Manuals RL-ARM User's Guide (MDK v4) RL-RTX RL-FlashFS Technical Data NAND Flash Translation Layer Embedded File System Memory Organization Allocation Information File Data Fragments Limitations Configuring RL-FlashFS Source Files Configuration Options File System Flash Drive SPI Flash Drive RAM Drive Memory Card Drive USB Flash Drive NAND Flash Drive Using RL-FlashFS Using Flash Devices Flash Driver Sector Layout Converting FlashPrg.c Converting FlashDev.c Limitations When Using Internal Flash Using SPI Flash Devices SPI Flash Driver SPI Sector Layout Using RAM Devices Using Memory Card Devices MCI Driver SPI Driver Using FlashFS with USB Devices FAT Driver Using NAND Devices NAND Driver NAND Page Data Layout Function Overview File I/O Routines File Maintenance Routines File Time Support Routines Flash Driver Routines FAT Driver Routines MCI Driver Routines SPI Driver Routines NAND Driver Routines IOC Interface Routines System Routines RL-TCPnet RL-CAN RL-USB Example Programs Library Reference Appendix |
NAND DriverThe NAND Driver implements low-level routines for the NAND Flash device. Driver modules are located in the folder \ARM\RL\FlashFS\Drivers and have the file name NAND_device family.c. Copy the driver module to the project folder. Any module can be used as a template for creating new NAND drivers. The driver control block structure is defined in the file File_Config.h as follows: typedef struct { U32 (*Init) (NAND_DRV_CFG *cfg); U32 (*UnInit) (NAND_DRV_CFG *cfg); U32 (*PageRead) (U32 row, U8 *buf, NAND_DRV_CFG *cfg); U32 (*PageWrite) (U32 row, U8 *buf, NAND_DRV_CFG *cfg); U32 (*BlockErase) (U32 row, NAND_DRV_CFG *cfg); } const NAND_DRV; Developers can adapt the code in the following functions:
| ||||||||||
|
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.