STM32CubeIDE (MCUs)

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Nucleo-G431KB help with DMA GPIO Output

Hi there!I've just started working with STM32CubeIDE and after a bit of a vertical learning curve I'm slowly getting to grips with most aspects of it.I want to DMA to GPIO and there doesn't appear to be any way to do this through the .ioc GUI interfa...

etheory by Senior
  • 1574 Views
  • 24 replies
  • 0 kudos

When I set a pin as ADC with DMA and enable DMA Continuous Request on this pin, this pin has 1V on it. No matter if the pin is connected to something or not. Any idea why?

I am using STM32G071 Nucleo Board, but this is also the case when I only use the uC IC and not Nucleo Board.I am using CubeIDE and HAL programming.Below is the link to the Nucleo board:https://www.st.com/content/ccc/resource/technical/layouts_and_dia...

SalPaz by Associate II
  • 165 Views
  • 0 replies
  • 1 kudos

Resolved! DMA IRQ Handler is called twice for ADC

Hi,I am using 3 ADC modules triggered with TIM3 to start in the same time.I read the result in the DMAx_Channely_IRQHandler function and for debug only I do a toggle in a GPIO.I have 3 DMAx_Channely_IRQHandler functions , one for each ADC with DMA an...

DKuro.1 by Associate III
  • 639 Views
  • 2 replies
  • 0 kudos

STM32H750 + I2S Full Duplex Master + DMA (TX and RX)

Hello,I managed to get full duplex I2S + DMA working on an STM32F405 with Cube + HAL, however have now switched to an STM32H750 for more processing power.In STM32CubeIDE version 1.3.1, while there is an option to add a DMA stream for TX, there is unf...

PSalm.1 by Associate
  • 602 Views
  • 2 replies
  • 0 kudos

multichannel ADC with DMA reads only 0

For my project, i have to read the PA6 and PB0 pins at the same time on my STML082KZT6. These are the ADC_Inch 6 and 8. I have made a code example on STM32CubeMX for the allocations, however the only readings i get are zero.I have allocated uint32_t ...

JWeij.1 by Associate
  • 179 Views
  • 0 replies
  • 0 kudos

I2S master RX with DMA transfer to memory

Hi,I am using STM32CubeIDE for audio application development. In my application STM32 will be working as I2S Master Receiver so I wanted to collect data continuously without losing any data.I have configured DMA with circular mode enabled. Looking at...