How memory-mapped works on STM32L4?
Hello all,
I am trying to implement an external loader for my board. Which uses a W25M02GV (QSPI NAND FLASH)
I am following the https://github.com/STMicroelectronics/stm32-external-loader
I am trying to configure an STM32L4 to use this memory in mapped-mode, but I didn't understand how memory-mapped works for the underground. At least I didn't found any doc that explains it.
As I am understanding from its datasheet, this memory doesn't have any read command with the page address that outputs the content.
It seems necessary to use 2 commands: The first one (13h) receives the page address and then gets the page content in an internal buffer. Then afterward, a second command reads it from this buffer (there are a continuous mode, which at the end of the buffer continue from the next page and so on)
But, it seems that when configuring the memory-mapped mode it needs a single read command with a page address to work?
Thanks =)
