コード例 #1
0
/**
  * @brief Disable the Vddio2 Monitor.
  * @retval None
  */
void HAL_PWREx_DisableVddio2Monitor(void)
{
  __HAL_PWR_VDDIO2_EXTI_DISABLE_IT();
  __HAL_PWR_VDDIO2_EXTI_DISABLE_FALLING_EDGE();

}
コード例 #2
0
ファイル: stm32f0xx_hal_pwr_ex.c プロジェクト: nvdl/pymite
/**
  * @brief Disable the Vddio2 Monitor.
  * @retval None
  */
void HAL_PWR_DisableVddio2Monitor(void)
{
	__HAL_PWR_VDDIO2_EXTI_DISABLE_IT();
	__HAL_PWR_VDDIO2_EXTI_CLEAR_EGDE_TRIGGER();

}