Do i have to enable the "Flash Drive" along with the "Nand Flash" in the file_Config.c (Flash Configuration File) to implement flash file system on parallel nand flash?
So what is a sector on parallel nand chip? is it a block or a group of block or pages? I have to make the FS_FlashDev.h file but the documentation speak about "sector".
#define FLASH_DEVICE DSB(0x10000, 0x000000), /* Sector Size 64kB */ \ DSB(0x10000, 0x010000), /* Sector Size 64kB */ \ #define SF_NSECT 32 //-> is this the total number of sectors?
Which uC exactly do you use?
Since, to trigger a particular chip select, data must be written to memory region assigned to it (this is documented in a User Manual or Reference Manual of your uC in a chapter describing External Memory Controller)
i am using LPC1788 controller. The user manual is not much descriptive. Had to read a lot of data of other ic (user manuals and application notes).
The FlashID is correctly being read now. Will implement further and will keep posting.
Thanks a lot.