STM32U595 used PA12 and PA11 as INPUT gpios,can't get the HIGH level
Hi,I used PA12 & PA11 as input gpios(pull-up) in STM32U595VJT6Q ,read the pins are always '0'.The IOs connected NOTHING.
I reference RM0456 :

I config USBPWREN and VDD11USBDIS bits used the HAL functions before GPIO_Init():
HAL_PWREx_EnableUSBHSTranceiverSupply();
HAL_PWREx_DisableVDD11USB();
BUT I read the pins still '0'.How can i do?
The details of HAL function like as:
HAL_StatusTypeDef HAL_PWREx_EnableUSBHSTranceiverSupply(void)
{
uint32_t vos;
/* Get the system applied voltage scaling range */
vos = HAL_PWREx_GetVoltageRange();
/* Check the system applied voltage scaling range */
if ((vos == PWR_REGULATOR_VOLTAGE_SCALE1) || (vos == PWR_REGULATOR_VOLTAGE_SCALE2))
{
SET_BIT(PWR->VOSR, (PWR_VOSR_USBPWREN | PWR_VOSR_USBBOOSTEN));
}
else
{
return HAL_ERROR;
}
return HAL_OK;
}
void HAL_PWREx_DisableVDD11USB(void)
{
/* Set VDD11USBDIS bit */
SET_BIT(PWR->VOSR, PWR_VOSR_VDD11USBDIS);
}

