ファームウェア関数一覧
RCC_WaitForHSEStartUp †
ヘッダ宣言 †
関数プロトタイプ †
ErrorStatus RCC_WaitForHSEStartUp(void)
動作 †
引数 †
戻り値 †
- ErrorStatus
ErrorStatus | 説明 |
SUCCESS | HSE oscillator が安定し利用する用意が出来ました |
ERROR | HSE oscillator は準備が出来ていません |
呼び出し関数 †
サンプル †
ErrorStatus HSEStartUpStatus;
/* Enable HSE */
RCC_HSEConfig(RCC_HSE_ON);
/* Wait till HSE is ready and if Time out is reached exit */
HSEStartUpStatus = RCC_WaitForHSEStartUp();
if(HSEStartUpStatus == SUCCESS)
{
/* Add here PLL and system clock config */
}
else
{
/* Add here some code to deal with this error */
}
参照 †