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! How to start an ADC conversion at some analog signal level?

What I have: STM32L496, analog signal input.What I need: on some level of analog signal start an ADC conversion with some delay (80...200 ns. Basically, 55-80 ns is the propagation delay for builtin comparator and 20 ns is the shortest sampling time)...

KNuzh.1 by Associate
  • 926 Views
  • 3 replies
  • 0 kudos

drop in replacement for STM32L433.

Hi I am using a STM32L433 100 pin and require more memory as using a display. I have looked at the STM32L452VET6 100pin , and looks identical apart from having more memory. I only use the HAL for initialisation and USB interface. Looking at the HAL ...

problem with programming the STM32H755iit

I have a problem with programming the STM32H755iit- Jtag gives an error- DfuSe 3.0.6 Demo sees very few internal sectors, and hungs instantlyThe SMPS is off, and I connected this like this: see pictureThe CAP reads 1.0 voltVDDLDO_1 = 3v3VDDLDO_2 = 3...

Hans T by Senior
  • 1524 Views
  • 5 replies
  • 1 kudos

Resolved! High speed error with encoder, STM32F103

Hello,We are using an encoder ( https://www.andymark.com/products/redline-encoder-kit ) with 4096 CPR and are trying to measure speed and direction of a motor with an STM32F103. However, we cannot read stable values and in high frequencies we cannot ...

pccasio by Associate II
  • 1763 Views
  • 6 replies
  • 0 kudos

Why am I getting a HardFault with -O2 optimization only?

In my STM32F091 project, the Debug build works all just fine.Release build does not.So I kept -O2 to keep the behavior, but added -g3 to be able to debug.Fixed a couple typical bugs like a forgotten volatile on an ISR-accessed flag etc.Now I get a HA...

SKled.1 by Senior II
  • 1706 Views
  • 5 replies
  • 0 kudos

STM32H7 SPI IRQn never triggered

Hi,I am using SPI1 and interrupt are enabled in this functionvoid HAL_SPI_MspInit(SPI_HandleTypeDef* hspi) { ........................   /* SPI1 interrupt Init */ HAL_NVIC_SetPriority(SPI1_IRQn, 0, 0); HAL_NVIC_EnableIRQ(SPI1_IRQn); /*...