User Activity

This is the code I'm using to read the page of 16 data chunks of 256 bytes each:#define K9xxG08_ECC_Enable() FSMC_NAND_DEVICE->PCR2 |= FSMC_PCR2_ECCEN #define K9xxG08_ECC_Disable() FSMC_NAND_DEVICE->PCR2 &= ~FSMC_PCR2_ECCEN #define K9xxG08...
Posted on May 04, 2015 at 02:31I found a bug in stm32f4xx_hal_nand.c module, in ''HAL_NAND_Read_Page'' function!Need to change this line: *(__IO uint8_t *)((uint32_t)(deviceAddress | ADDR_AREA)) = 0x00; to this: *(__IO uint8_t *)((uint32_t)(deviceAd...