FAT header is stored in sector #63. When I read sector 63 at the end of f_mkfs (), it is found as expected. After that I call f_mount (). I have read sector 63 at the beginning of f_mount () and found that the data is 0xFF. There is nothing between f...
Hello @voyvoda . (Community Member) , I have implemented diskio.c file for my QPSI flash of 4MBytes with 4096 sector size. f_mkfs returns OK, but f_mount returns FR_NO_FILESYSTEM.I could not open your given attachment "stm32_spi_flash_fatfs".May you...
My Error is resolved by replacing: s_command.SIOOMode = QSPI_SIOO_INST_ONLY_FIRST_CMD; with s_command.SIOOMode = QSPI_SIOO_INST_EVERY_CMD;for write enable command after which I called AutoPolling function.