ファームウェア関数一覧
USART_ClockInit †
ヘッダ宣言 †
関数プロトタイプ †
void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockInitTypeDef* USART_ClockInitStruct)
動作 †
- USARTx周辺回路用クロック関係レジスタを設定し初期化します。
引数 †
戻り値 †
出力値 †
呼び出し関数 †
サンプル †
/* The following example illustrates how to configure the USART1
Clock */
USART_ClockInitTypeDef USART_ClockInitStructure;
USART_ClockInitStructure.USART_Clock = USART_Clock_Disable;
USART_ClockInitStructure.USART_CPOL = USART_CPOL_High;
USART_ClockInitStructure.USART_CPHA = USART_CPHA_1Edge;
USART_ClockInitStructure.USART_LastBit = USART_LastBit_Enable;
USART_Init(USART1, &USART_ClockInitStructure);
参照 †