ファームウェア関数一覧

USART_Init

ヘッダ宣言

関数プロトタイプ

void USART_Init(USART_TypeDef* USARTx, USART_InitTypeDef* USART_InitStruct)

動作

引数

戻り値

出力値

呼び出し関数

サンプル

/* The following example illustrates how to configure the USART1 */
USART_InitTypeDef USART_InitStructure;
USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_Odd;
USART_InitStructure.USART_HardwareFlowControl =
USART_HardwareFlowControl_RTS_CTS;
USART_InitStructure.USART_Mode = USART_Mode_Tx I USART_Mode_Rx;
USART_Init(USART1, &USART_InitStructure);

参照


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS