STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32L082KZ getting started with TrueStudio

Hi!I've bought STM32L082 for development and installed Atollic TrueStudio but couldn't find L082KZ MCU (the nearest similar is only 082CZ). How can I use this IDE or Keil is the only option?

M_1 by Associate II
  • 490 Views
  • 1 replies
  • 0 kudos

TIM2 interrupt fires twice when optimize speed is set

Hello,I just test some interrupt stuff with Nucleo F439ZI and found that simply setting optimize to -Ofast leads to a timer 2 interrupt (compare event when generating a PWM) firing two times, while -O0 shows the expected behaviour. I test this with a...

Cubemx pwm for stm32f7 nucelo board

Hi there. I'm trying to generate a Pwm signal using my nucelo board but I'm having issues doing this using cubemx. ​I've configured the clocks and oscillator based on resources I've found online but I'm not too sure what the clock source should be. I...

Resuming STOP Mode in STM32L152

Hi All,I've implemented STOP mode with the following code: (Taken from https://www.digikey.com/eewiki/display/microcontroller/Low-Power+Modes+on+the+STM32L0+Series)void EnterSTOP(void) { PWR->CR |= PWR_CR_CWUF; // clear the WUF flag after 2 clock ...