How to setup PVD STM32U5xx with system VDD running at 1.85v
Hello,
As mentioned in the title, the custom board system VDD is 1.85 volt, I wonder if there are anyways that I can setup the PVD to work with such voltage. I follow the example and I only get the interrupt at startup but then cutting power off, obviously I see no other interrupt.
HAL_NVIC_SetPriority(PVD_PVM_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(PVD_PVM_IRQn);
PWR_PVDTypeDef ConfigPVD;
ConfigPVD.Mode = PWR_PVD_MODE_IT_RISING_FALLING;
ConfigPVD.PVDLevel = PWR_PVDLEVEL_0;
HAL_PWR_ConfigPVD(&ConfigPVD);
HAL_PWR_EnablePVD();
