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! DMA throwing transfer error when reading from the ADC

Processor: STM32H753I am attempting to continuously read an ADC, and transfer the data into a circular data buffer with the ADC. I configured everything in CubeMX. No matter what I try, I get a transfer error from the DMA the first time it reads. I t...

dknipe by Associate II
  • 1853 Views
  • 8 replies
  • 2 kudos

Resolved! PTP(d) vs. PHY, master problems

Heyho,any PTP specialists around here?I'm currently working with a new board using the H733 with a KSZ8863RLL ethernet PHY, and I have a strange PTP synchronization problem:If a board with a KSZ8863 is the PTP master, no slave can synchronize.The sla...

LCE by Principal II
  • 1304 Views
  • 4 replies
  • 2 kudos

Measure frequency of many lines

Hello, I'm developing a board to control a desk pc setup.In addition to other things like controlling the lights, some motors and other stuff, the board has to control and monitor some PWM fans.The fans report back the revolutions using a tachometer,...

BRapo.1 by Associate II
  • 639 Views
  • 1 replies
  • 0 kudos

Jump to Boot app

Hello, I am using bootloader software on stm32U5 microcontroller. After updating the software while in boot mode, the processor jumps to the user app without resetting itself. However, when jumping from the User app to the boot app, it does not switc...

cetin by Associate
  • 673 Views
  • 1 replies
  • 1 kudos

STM32f446re

HAL_ADC_Start(&hadc1); HAL_ADC_PollForConversion(&hadc1,1000); readValue1 = HAL_ADC_GetValue(&hadc1); HAL_ADC_Stop(&hadc1); HAL_Delay(100);   HAL_ADC_Start(&hadc2); HAL_ADC_PollForConversion(&hadc2,1000); readValue2 = HAL_ADC_GetValue(&hadc2); HAL_...

Reading two PWM signals using only two channels.

Hi! Library used: Standard Peripheral Library (Yea, I must use this one)Hardware:Test bench that can generate two pwm signals ( A and B )Cable that connects the test bench to the other boardOther board that should read the signal, delivered by the ca...