Resolved! LL_DMA_IsActiveFlag complement in HAL
hello,How can I get the flags from the DMA with HAL drivers. Like the LL comands e.g. LL_DMA_IsActiveFlag_HT5 for the half transfer flag of stream5.lg erik
hello,How can I get the flags from the DMA with HAL drivers. Like the LL comands e.g. LL_DMA_IsActiveFlag_HT5 for the half transfer flag of stream5.lg erik
Hello,i have a problem. I cant write any values into ADC12 common configuration register CCR. It is not possible if ADCs are disabled (as recomended in ref.man.) either they are enabled. I tried to change it using LL functions or CMSIS registers acce...
CubeMX version: 5.4.0Firmware: FW_F7 V1.15.0IDE: Cube v1.1.0MX_DMA_Init() is located after other peripheral init functions, causing DMA register writes to fail in the peripheral init functions as the DMA clock is not enabled.MX_DMA_Init() should be c...
When I generate code for the STM32h750 via cubeMX, I see in stm32h7xx_ll_delayblock.h:#if defined(HAL_SD_MODULE_ENABLED) || defined(HAL_QSPI_MODULE_ENABLED)I have QSPI enabled, but SD disabled, and the code following the #if is accounted for in the c...
After some of research about SD Card integration with STM32 MCU, I realized that SDIO is the simpliest and most supported protocol between ST community. However, I've also found that there is no low power MCU which satisfy my specs:1 * SPI1 * I2C1 * ...
void DMA1_Channel5_IRQHandler() { if(DMA_GetFlagStatus(DMA1_FLAG_TC5)) { transfer_complete_flag=1; DMA_ClearFlag(DMA1_FLAG_TC5); } if(DMA_GetFlagStatus(DMA1_FLAG_HT5)) { ht_c=1; DMA_ClearFlag(DMA1_FLAG_HT5); } } int counter=0; ...
I am using an STM32F072 MCU in my project and in the development phase, things seem to be working properly. The boot0 pin is pulled low and I can upload firmware via the ST-LINK debugger. When the product is released to the costumer, there are two po...
Also when I try to generate code, I get the error below. I won't have ethernet connectivity for two days.Is there a way around the error using the st link usb port?
I have a board named NUCLEO-L552ZE-Q, but i can not use CubeMX to generate initial code, In CubeMX environment, STM32Cube_FW_L5_V0.7.0.zip can not be downloaded.
Hello everyone.I have problem with ADC module of STM32F3. I have two board, one board use STM32F334K8T6 is the first version of my prototype, one board use STM32F334C8T6 is new version. I have use ADC module in my program and using STD lib. but with ...