USART_ClockInit
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[ファームウェア関数一覧>ファームウェア関数一覧#q5c66355]]
*USART_ClockInit [#x2c2a9ea]
#contents
**ヘッダ宣言 [#cfa8abd1]
**関数プロトタイプ [#efdf3200]
void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockI...
**動作 [#n9f81f1f]
-USARTx周辺回路用クロック関係レジスタを設定し初期化します。
**引数 [#f61abefb]
-USARTx&br;
セットする対象のUSARTを''USART1'',''USART2'',''USART3'','...
-USART_ClockInitStruct&br;
'''stm32f10x_usart.h'''で定義されているUSART_ClockInitTyp...
&br;
typedef struct
{
uint16_t USART_Clock;
uint16_t USART_CPOL;
uint16_t USART_CPHA;
uint16_t USART_LastBit;
} USART_ClockInitTypeDef;
&br;
--USART_Clock&br;
#include(Macro/USART_Clock,notitle)
&br;
--USART_CPOL&br;
#include(Macro/USART_CPOL,notitle)
&br;
--USART_CPHA&br;
#include(Macro/USART_CPHA,notitle)
&br;
--USART_LastBit&br;
#include(Macro/USART_LastBit,notitle)
&br;
**戻り値 [#v15c5b96]
-無し
**出力値 [#o8dd0133]
-無し
**呼び出し関数 [#g83437f1]
-無し
**サンプル [#b888959b]
/* The following example illustrates how to configure th...
Clock */
USART_ClockInitTypeDef USART_ClockInitStructure;
USART_ClockInitStructure.USART_Clock = USART_Clock_Disab...
USART_ClockInitStructure.USART_CPOL = USART_CPOL_High;
USART_ClockInitStructure.USART_CPHA = USART_CPHA_1Edge;
USART_ClockInitStructure.USART_LastBit = USART_LastBit_E...
USART_Init(USART1, &USART_ClockInitStructure);
**参照 [#j8f72271]
-STM32マイコン徹底入門 P.262
終了行:
[[ファームウェア関数一覧>ファームウェア関数一覧#q5c66355]]
*USART_ClockInit [#x2c2a9ea]
#contents
**ヘッダ宣言 [#cfa8abd1]
**関数プロトタイプ [#efdf3200]
void USART_ClockInit(USART_TypeDef* USARTx, USART_ClockI...
**動作 [#n9f81f1f]
-USARTx周辺回路用クロック関係レジスタを設定し初期化します。
**引数 [#f61abefb]
-USARTx&br;
セットする対象のUSARTを''USART1'',''USART2'',''USART3'','...
-USART_ClockInitStruct&br;
'''stm32f10x_usart.h'''で定義されているUSART_ClockInitTyp...
&br;
typedef struct
{
uint16_t USART_Clock;
uint16_t USART_CPOL;
uint16_t USART_CPHA;
uint16_t USART_LastBit;
} USART_ClockInitTypeDef;
&br;
--USART_Clock&br;
#include(Macro/USART_Clock,notitle)
&br;
--USART_CPOL&br;
#include(Macro/USART_CPOL,notitle)
&br;
--USART_CPHA&br;
#include(Macro/USART_CPHA,notitle)
&br;
--USART_LastBit&br;
#include(Macro/USART_LastBit,notitle)
&br;
**戻り値 [#v15c5b96]
-無し
**出力値 [#o8dd0133]
-無し
**呼び出し関数 [#g83437f1]
-無し
**サンプル [#b888959b]
/* The following example illustrates how to configure th...
Clock */
USART_ClockInitTypeDef USART_ClockInitStructure;
USART_ClockInitStructure.USART_Clock = USART_Clock_Disab...
USART_ClockInitStructure.USART_CPOL = USART_CPOL_High;
USART_ClockInitStructure.USART_CPHA = USART_CPHA_1Edge;
USART_ClockInitStructure.USART_LastBit = USART_LastBit_E...
USART_Init(USART1, &USART_ClockInitStructure);
**参照 [#j8f72271]
-STM32マイコン徹底入門 P.262
ページ名: