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! Enabling Same Interrupt Number on Separate Ports [STM32H7]

I understand that any external interrupt on PA13, PB13, PC13, PD14 .. or PI15 will all execute the same ISR:EXTI15_10_IRQHandler(void) { HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_13); }    Which calls HAL_GPIO_EXTI_IRQHandler before finally calling th...

bnguy.1 by Associate III
  • 2312 Views
  • 4 replies
  • 0 kudos

What is the production status of STM32H75 chips?

I once again checked at Digikey and they had only one of those. Will the rest of them ever come backI would to like have STM32H76x 144 pin lgfp, but it is of no use if there are none available when I finish my PCB.

LMI2 by Lead
  • 501 Views
  • 3 replies
  • 0 kudos

Time base interrupt STM32G4 HAL overflowing?

Hello everyone,this is my first post here, please my apologies if I mistake some terms since we jumped into the ST controller world in the company around 6 months ago and I am still learning about the technologies.I have been working so far on a proj...

0693W00000Bb7UVQAZ.jpg
CMart.8 by Associate
  • 667 Views
  • 2 replies
  • 0 kudos

Resolved! STM32L4, can't wake up with RTC Alarm A after Stop 2 mode (WFE)

Hi all,As stated above, I can't seem to wake up the controller from STOP2 mode using WFE with the ALARM A. Here's my alarm and EXTI settings:if(EXTI->PR1 & EXTI_PR1_PIF18) { EXTI->PR1 |= EXTI_PR1_PIF18; ///< Clear pending interrupt if necessary } EX...

AFahr.1 by Associate III
  • 1469 Views
  • 5 replies
  • 0 kudos

Resolved! Error in Datasheet Rev.8 of STM32L412CB?

I am developing an application for a STM32L412CB and use the comparator COMP1. I designed my pinout with CubeMX and put the output of the comparator on PB0. I also checked table 14 in the Datasheet Rev.8 on page 58, if it is correct. Now I wanted to ...