STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! STM32F407VE USART DMA RECEIVE

Hello everyone, I am a beginner on STM32F4. I want to using DMA for receiving data via USART. But it doesnot work, please help me to solve the problem. Here is my code:void USART2_ConfigDMA(void){  DMA_InitTypeDef DMA_InitStructure;  RCC->AHB1ENR = ...

HNguy.6 by Associate II
  • 772 Views
  • 3 replies
  • 0 kudos

Sinusoidal Waveform Acquisition

I found an application note described about the sinusoidal wave acquisition using 10bits ADC and 2 DMA. My question is how they display the reconstructed waveform? by UART? or by DAC?Below link is the application note AN4173https://www.st.com/conten...

0690X000008Am1ZQAS.jpg
LXian.19 by Associate
  • 605 Views
  • 2 replies
  • 0 kudos

A question about STM32F767 USART Receiver timeout register

Dear all, I am using the usart2 of the STM32F767 to implement the Modbus function. I used the Receiver timeout interrupt to detect if a piece of data is over. However,sometimes a timeout interrupt had occurred. when data is still receive. I set the ...

0690X000008AsNgQAK.png
xshen by Associate II
  • 404 Views
  • 0 replies
  • 0 kudos

Resolved! Does the Nucleo-H743ZI slows down after power off ?

I am leaning to program the H743ZI and have a simple application where the user leds blink at a certain rate given by a delay produced by a for loop.When the code is uploaded, I get the desired rate. If I disconnect and connect the board again, the p...

LuizLS by Associate II
  • 671 Views
  • 2 replies
  • 0 kudos

STM32F407 stuck in RTC wakeup handler

platform:rtems there is my setup, the RTC get time works finevoid rtc_wakeup_setup() { rtc_write_enable(); // set wakeup clock // Disable the wake-up counter printk("wakeup block begin\n"); STM32F4_RTC_CR &= ~STM32F4_RTC_CR_W...