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! RTC Wakeup does not wakeup system from sleep mode STM32L431?

Hello, I'm using RTC Wakeup to periodically kick WDG while system is in a sleep mode.I have setup RTC wakeup as following:/* RTC init function */ void MX_RTC_Init(void) {   /** Initialize RTC Only */ hrtc.Instance = RTC; hrtc.Init.HourFormat ...

SAkhi.951 by Associate III
  • 2845 Views
  • 3 replies
  • 0 kudos

Resolved! STM32F303RE Tim2 ch2 PWM Mode

Hi everyone, I'm trying to use the Timer2 CH2 PWM Mode 1 to generate a 1 Hz signal with 50% Duty Cycle out of my PA0 pin but i can't get anything. Here's my code:#include"stm32f3xx.h"   void TIM_PWM(void);   int main(void){ TIM_PWM(); while(1){ } }...

Nick- by Associate II
  • 1716 Views
  • 2 replies
  • 0 kudos

Resolved! How get the List file from assembler?

HelloI'm using CubeIDE.I want to get list file which is containing OP code from "Startup_stm32f427zgtx.s" as a output of assembler.I heard that I could use -Wa, -al option here and there on the Webs, but I couldn't get the list file of the assembler....

SSeo.17 by Associate III
  • 1879 Views
  • 2 replies
  • 0 kudos

STM32F3 SPI3 not working

Hey,I'm working with STM32F303RET6.I'm having trouble transmitting data with SPI3 (PB3, PB4, PB5 and PA15).Before I'll post my code here, I want to say that I am also working with SPI2 (PB12, PB13, PB14 and PB15) with the exact same configuration on ...

RLosc.1 by Associate II
  • 2075 Views
  • 5 replies
  • 0 kudos

Resolved! Circular buffer resetting start point?

I'm trying to use DMA to handle my incoming Rx data and, ideally, I'd like to just increment the index to keep track of the incoming data, essentially like this:#define uartsize 2000 #define dma_buffer_interrupt_size 1   uint8_t UART_in_Buffer[uarts...

JayDev by Senior II
  • 2994 Views
  • 2 replies
  • 0 kudos

Resolved! stm32h743 adc1 eos flag will not be set until I read the DR

Hi all, recently I am trying to use ADC to sample 4 channel current signals. Since there is no critical time requirement, I plan to use scan mode. In my opinion, the ADC will automatically complete four channel signal conversion stuff, then set the...

Whono.1 by Associate II
  • 3209 Views
  • 7 replies
  • 1 kudos

STM32L4Rxxx OctoSPI with PSRAM

Dear All,In "RM0432 Reference manual STM32L4+ Series advanced Arm ® -based 32-bit MCUs" in chapter "19.3 OCTOSPI implementation" and table "Table 119. OCTOSPI implementation" there are some differences in supported features between families. All fami...