User Activity

Hello. I was playing around with Debian on the STM32mp157F-DK2 and stumble on this issue/bug when I tried to debug M4 from CubeIDE and got something like this:Info : Listening on port 6666 for tcl connections Info : Listening on port 4444 for telnet ...
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...