stm32f7xx_hal_driver icon indicating copy to clipboard operation
stm32f7xx_hal_driver copied to clipboard

Provides the STM32Cube MCU Component "hal_driver" of the STM32F7 series.

Results 6 stm32f7xx_hal_driver issues
Sort by recently updated
recently updated
newest added

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...

bug
duplicate
hal

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...

bug
hal
internal bug tracker

**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...

bug
hal
usb
internal bug tracker

…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...

enhancement
hal
fmc
nor

**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...

bug
hal
internal bug tracker
fmc
nor

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...

enhancement
internal bug tracker
cryp
aes