STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! NUCLEO-H7S3L8 XIP_Template would not build

Hello,I'm currently working with the Nucleo-STM32H7S3L8 board and attempting to use the XIP_Template from its repository, which I've successfully cloned.I opened the template folder in STM32CubeIDE via "Open projects from a file system," selecting th...

oalselwi by Associate II
  • 201 Views
  • 2 replies
  • 1 kudos

Resolved! STM32H5: PVD interrupt not triggered

I am using STM32H573 and I have tried to enable PVD some what like this:void PVD_Init() { PWR_PVDTypeDef pvdconfig; HAL_NVIC_SetPriority(PVD_AVD_IRQn, 5, 0); HAL_NVIC_EnableIRQ(PVD_AVD_IRQn); pvdconfig.Mode = PWR_PVD_MODE_IT_RISING_FALLING; pv...