STM32 MCUs products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

New possibilities for the ultra-low power segment!

STM32U0 is the first Cortex-M0+ with a static consumption of only 160 nA in standby mode with RTC (Real-Time Clock) and 16 nA in shutdown. It also achieves 118 points in CoreMark and targets SESIP level 3 and PSA level 1 focusing on firmware code pro...

gif-stm32u0.gif

Mask interrupt temporary

Hi All,I need to enable interrupt on GPIO PC0 only for 1sec: before and later interrupt form PC0 must be ignored.I've tried with disable the interrupt at the init and enable in a thread, wait for 1 sec and then disable again, but it doesn't work!stat...

Any indicator for why STM32 leaves SLEEP / STOP Mode?

I'm using the STM32L152. At certain points in my code I go into STOP mode. It seems to come out immediately. I'm not sure what interrupt or event is causing this. Is there any indication somewhere what event caused the processor to change modes? Than...

LThal by Associate II
  • 214 Views
  • 3 replies
  • 0 kudos

STM32F303 ADC Simultaneous 4 ADC sampling

Hello ,I have recently bought a Nucleo-144 with an STM32F303ZE . Ive been testing out basic programmes including ADCs and I am new to STM32 and embedded in general .Problem:I need to sample 4 channel input Intermediate Frequency(2MHz signal , and i ...

USakt by Associate
  • 375 Views
  • 0 replies
  • 0 kudos

How to wake up from stop mode with alarm A?

Hello, I'm trying to wake up from stop 1 with the alarm A, and I was wondering if someone can help me with this. Here is my code (I'm using HAL libraries first, the "easy" way base on the example ST gives: PWR/STOP1_RTC):...int main(void){ GPIO_Ini...

Emm1592 by Associate II
  • 407 Views
  • 1 replies
  • 0 kudos

Resolved! Information on STM32H745

This part is mentioned in several places: AN4938, Rev 3​, http://www.openstm32.org/tiki-view_forum_thread.php?forumId=2&threadId=7657&comzone=show#threadId7657 but I can't find specifics on it.

How to call __wfi on RTEMS?

HI, ALL!RTEMS is a RTOS. I want to make it enter stop mode like below codeif(PWR_STOPEntry == PWR_STOPEntry_WFI) {     /* Request Wait For Interrupt */   __WFI(); } else {   /* Request Wait For Event */   __WFE(); }so i have to call __wfi like under ...

Labels