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

STM32H7 + LAN8742: No DHCP Request Observed

Hi,I'm using an STM32H7 board with a LAN8742 PHY, configured via STM32CubeMX.LwIP is initialized without RTOS, and Ethernet is in RMII mode.The main goal of this project is to receive data over UART and forward it via Ethernet.I want the STM32 board ...

WhatsApp Image 2025-07-14 at 16.08.30_914e31a7.jpg WhatsApp Image 2025-07-14 at 16.08.30_c81398da.jpg
Matan by Associate
  • 48 Views
  • 0 replies
  • 0 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...