2023-12-30 03:34 AM
Hello, I have been trying to make a driver for the Winbond(W25N01GV) NAND flash over QSPI(to use it in memory-mapped mode) but I've been failing so far. Can somebody give me some ideas about what I am doing wrong? I used W25Q256 before, but now I want to replace it with W25N01.
PS: If you know any working qspi driver I would be happy to send me the link.
Solved! Go to Solution.
2023-12-30 04:13 AM
It's not going to work in Memory Mapped mode, it is NAND and accesses at a block level, and not byte addressable like NOR.
It is designed to work as mass storage. See BlackBox logger examples used on Flight Controller applications using STM32.
For Gbit NOR look at W25Q01G, MT25QL01, MX66L01G type parts
2023-12-30 04:13 AM
It's not going to work in Memory Mapped mode, it is NAND and accesses at a block level, and not byte addressable like NOR.
It is designed to work as mass storage. See BlackBox logger examples used on Flight Controller applications using STM32.
For Gbit NOR look at W25Q01G, MT25QL01, MX66L01G type parts
2023-12-30 04:18 AM