STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! How DMA works in UART

Hello ! I've been wondering how DMA works in UART. I've checked some codes for example HAL_UART_Transmit_DMA(). I know it is set to sned 8 bit to peripheral. But I wondered when DMA knows that UART sent 8 bit when it is TX DMA or recevied 8 bit when ...

Xenon02_1-1700343951013.png Xenon02_2-1700343959811.png Xenon02_0-1700343925953.png
Xenon02 by Senior
  • 18384 Views
  • 13 replies
  • 3 kudos

Speaker audio distorted even though it is quiet

I'm doing a project where I want to have a toy say audio clips when a button is pressed. Right now I'm trying to accomplish this with an STM32F407G-DISC1. I have a small speaker (16 ohms, 0.25 W) connected to my breadboard with the DAC OUT1 of the MC...

Resolved! Proper way to use scanf with uint8_t

What is the best way to use sscanf with uint8_t?When I use: uint8_t x ; char* y = "23" ; sscanf ( y , "%hhu" , &x ) ;I stuck at: void HardFault_Handler(void) I found following workaround that works: uint16_t x1 ; uint8_t x2 ; const char* y ...

uart1_printf_debug

hi i would like to use uart1_printf_debug debugging on a serial terminal but error message "undefine reference to "uart1_printf_debug" what file to include except stdio.h? 

nucleo-f103rb canbus problem

Hello,I have a problem with canbus on nucleo-f103rb. When I start the debug the registers look like before.png. After a while its look like after.png. But i cannot send any data to peak pcan in both cases. Here my code;/* USER CODE BEGIN Header *//**...

Difficulty with speed of updating PWM duty cycle

Hi, I'm a relatively new programmer, attempting to program a "Bluepill" module, which has the STM32F103C8T6 microcontroller. I'd like to be able to quickly change the duty cycle on a PWM output, so that I can adjust the position of a servo motor as I...