stm32f4xx_hal_driver
stm32f4xx_hal_driver copied to clipboard
Provides the STM32Cube MCU Component "hal_driver" of the STM32F4 series.
According to RM0090 p1279, RM0368 p708, or RM0383 p707, application write 1 into rc_w1 type bit to clear the interrupt status bits of OTG_FS_GINTSTS register. Inc/stm32f32f4xx_hal_pcd.h:200 macro __HAL_PCD_CLEAR_FLAG also differs...
The issue is really simple : in stm32f4xx_hal_rcc_ex.h, **the value of RCC_I2SCLKSOURCE_EXT is wrong**. - RCC_I2SCLKSOURCE_EXT must be equal to RCC_CFGR_I2SSRC (0x00800000) instead of 0x00000001. - __HAL_RCC_I2S_CONFIG macro must be...
Fixed unused variable compiler warning in stm32f4xx_hal_pwr.c for function HAL_PWR_EnterSLEEPMode
Fixed unused variable compiler warning in stm32f4xx_ll_adc.h for function LL_ADC_DMA_GetRegAddr when ADC_MULTIMODE_SUPPORT not defined we are compiling the stm32f4xx_hal_drvier as a library to test our HAL on the stm32f401 dev...
**Describe the set-up** * The board: custom board with STM32F407ZET6 * IDE: STM32CubeIDE 1.9.0 **Describe the bug (skip if none)** In some cases HAL_I2C_Mem_Read will finish reading given number of...
**Describe the set-up** * STM32F427 * arm-none-eabi-gcc.exe (GNU Arm Embedded Toolchain 9-2020-q2-update) 9.3.1 20200408 (release) * HAL V1.8.0 **Describe the bug (skip if none)** Issue with `Src/stm32f4xx_hal_eth.c`, function `HAL_ETH_ReleaseTxPacket`. There...
Problem: Extra bytes are sent on the UART when using the interrupt driven API. Analysis: I set up an UART transmission/reception using interrupts. In main() i call HAL_UART_Receive_IT() which calls...
In the description of USB audio device unit, only mute control (0x01) is set, which can be recognized normally. However, setting mute control and volume control (0x01 | 0x02) will...
**Caution** The Issues are strictly limited for the reporting of problem encountered with the software provided in this project. For any other problem related to the STM32 product, the performance,...
Not a bug, just annoying. Please add it to your "nice to do on the next update" list. This is a follow up to [PR 1015](https://github.com/stm32duino/Arduino_Core_STM32/pull/1015). The line `(void)(tmpreg); `...