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! STM32L4 Freezes At Freezing Temperatures

Hi Everybody,I have an issue with STM32L433CCU6, when it's entering or exiting STOP 1 mode at temperatures from -36dC to -29dC uP completely freezesBasic overview of program:watchdog is set to 25 secondsclock: HSE 8MHz -> PLL 16MHz (SYSCLK) -> /2 -> ...

tomasf by Associate II
  • 2714 Views
  • 11 replies
  • 0 kudos

Resolved! Hello!! what is wrong ? I want to do an external interrupt with button (gpio A0) to turn on the led (gpio D14) (STM32F407DISC) and do not work..

void init_led(){RCC->AHB1ENR|=0x8;GPIOD->MODER|=0x10000000;}void led_on(){GPIOD->ODR |= 0x4000;}void led_off(){GPIOD->ODR &= 0xBFFF;}void init_button(){RCC->AHB1ENR|=0X1; //ENABLE CLOCK TO GPIOAGPIOA->MODER &= ~0x03; // make gpioa0 mode inputEXTI->FT...

MHMallek by Associate II
  • 867 Views
  • 4 replies
  • 0 kudos

Best way to implement UART polling packet receiver.

Hi, I'm doing a firmware for a micro STM32F4.The micro is always in an infinite loop in the main(), at the end of each cycle it should check if there are any data on UART buffer, in case there are read all data and continue with the normal infinite l...

Resolved! Timer2 is 2 times faster Stm32f107

Hello,As you can see, based on datasheet, the input frequency of Timer 2 is 36Mhz. I have attached 25Mhz crystal to my MCU and here is clock and timer configuration. I need to have 30mS interrupt but I get 16mS.void CLOCK(void){ RCC_HSEConfig(RCC_HS...

0690X00000AqqqcQAB.png
parisa by Senior
  • 686 Views
  • 2 replies
  • 0 kudos

Resolved! COMPx_OUT as a retriggerable monostable output

Hi, I am using an STM32L4 MCU and I need to make the COMPx_OUT acting as a retriggerable monostable output. ​I know I can use timers as blinking source for COMPx_OUT, but this would not help, and as far I understand, the only way to solve my problem ...

simo zz by Senior II
  • 579 Views
  • 1 replies
  • 0 kudos