stm32f7xx_hal_driver icon indicating copy to clipboard operation
stm32f7xx_hal_driver copied to clipboard

Fix the bug that HAL_NAND_Read_Page_8b and HAL_NAND_Read_SpareArea_8b cannot read data normally.

Open huoxingdawang opened this issue 2 years ago • 1 comments

This PR fixed the issue #6 .

By changing the *buff = *(uint8_t *)deviceaddress; to *buff = *(__IO uint8_t *)deviceaddress; , now the data could be read correctly.

Additionally, I have signed the CLA as required by CONTRIBUTING.md.

huoxingdawang avatar Sep 07 '23 14:09 huoxingdawang

ST Internal Reference: 168944

TOUNSTM avatar Dec 15 '23 10:12 TOUNSTM