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

Watchdog doesn't fire while hanging in I2C

Hi,I have a situation where the configured watchdog on my STM32L031 does not trigger even though the MCU gets stuck in an I2C function. In my program flow, I first run through some initializations (as well as I2C_Init()) and then start the IWDG (Star...

I2C Transmission.png Start IWDG.png I2C Init.png
Brigei by Associate III
  • 620 Views
  • 12 replies
  • 4 kudos

STM32H735 Wake Up pull configuration STANDBY mode

I am configuring wakeup pin PA0 to WAKEUP1 by wirting 01 (pull-up) at WKUPPUPD (PWR_KUPEPR) as said at RefManual by using "HAL_PWREx_EnableWakeUpPin ".   PWREx_WakeupPinTypeDef sPinParams; sPinParams.PinPolarity = PWR_PIN_POLARITY_LOW; sPinParams.P...

amartin by Associate II
  • 306 Views
  • 3 replies
  • 0 kudos

Resolved! No OSC_IN on STM32H503KB (32-pin QFN)

The 32-pin package doesn't seem to have any kind of external clock input at all, and the device does not feature "crystal-less USB". How do we provide a stable clock for USB then?

maxter by Associate II
  • 193 Views
  • 1 replies
  • 2 kudos

STM32U031R8 Current consumption is too high

Greetings,I have acquired Nucleo-U031R8 as I was searching for ULP controllers and specification of this one was good. I am currently trying to lower current consumption as low as possible. Previously, I have used Nucleo-L073RZ where I was able to ac...

JeetS_0-1749011288617.png
JeetS by Associate II
  • 517 Views
  • 7 replies
  • 0 kudos

MicroSecond Delay in FreeRTOS

I am dealing with an I2C lockup issue where the I2C bus is locked up periodically and I need to toggle the SCL pin to free up the bus.  To test my theory and make sure that the fix works I just used an osDelay(1) call.  I know this is a 1ms delay but...