STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Hi, I am trying to obtain values from potentiomater which is connected to PA0 (ADC channel 0), through ADC.

However, the values that I obtain (I show them on LCD display) are not only inconsistent, but also the potentiometer's rotation doesn't effect the value? I have searched a lot and tried different ways but I couldn't find the problem in my code. Pleas...

STM32F427 TIM7 One-Shot - Incorrect duration first time use

This is a sanity check question.I use TIM7 is one-shot mode - used to detect if a process is stuck.The very first time the timer is used - the one-shot duration is not close to what is expected -- it's about .2usec in duration.Every use after the fir...

Joe.H by Senior
  • 327 Views
  • 0 replies
  • 0 kudos

No Interrupts at all reveived on STM32F413

Hey guysI'm currently wondering why i'm not reveiving any interrupts at all on my STM32F413I used cube mx to create a new project.For starters I'd like to send some data via UART with an interupt transfer.uint8_t dummy[4] = { 0 }; volatile HAL_Status...

JHeni by Associate II
  • 428 Views
  • 0 replies
  • 0 kudos

how can I reduce the ADC interrupt entering time?

The project is using MCU stm32f103C8T6 for controlling. Here we use the peripheral ADC for current sampling, and we need the time from the interrupt happening to the interrupt executing less than 2us. But the codes following spending about 6us. How...