stm32f7xx_hal_driver
stm32f7xx_hal_driver copied to clipboard
Provides the STM32Cube MCU Component "hal_driver" of the STM32F7 series.
The code for reading data from the NAND Flash in the stm32f7xx_hal_nand.c is `*buff = *(uint8_t *)deviceaddress;` rather than `*(__IO uint8_t *)deviceaddress;` which may cause the data always to be...
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...
**Describe the set-up** * STM32F723 * IDE 1.14.1, HAL 1.3.1 **Describe the bug** Inspection of the code for [HAL_PCD_SetTestMode()](https://github.com/STMicroelectronics/stm32f7xx_hal_driver/blob/2e3aac48671f6f5d86c8e85b314b50589c1dc93c/Src/stm32f7xx_hal_pcd.c#L2031) shows that the RW bits for TCTL in the OTG_DCTL register...
…hanges should be backwards compatible. In reference to [this issue, #14](https://github.com/STMicroelectronics/stm32f7xx-hal-driver/issues/14) TThe previous version of the HAL_NOR did not accurately handle 16-bit and 8-bit NOR devices. There were many instances...
**Describe the set-up** * The board (either ST RPN reference or your custom board) * IDE or at least the compiler and its version Custom STM32F756BG Board. Macronix MX29LV040CTI (or...
Currently HAL doesn't enable you to encrypt more than 65KB in one go nor doest it enable you to upload data by chunks. Its smol :c I changed my stm32f7xx_hal_cryp.h...