GPIO_Init
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]]
*GPIO_Init [#g3bf3266]
#contents
**ヘッダ宣言 [#o55bd3fc]
**関数プロトタイプ [#t4ecbbf7]
void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GP...
**動作 [#l09d32b6]
GPIO_Init構造体の設定に従って、GPIOx周辺回路レジスタの値...
**引数 [#m9c07792]
-GPIOx*&br;
#include(Macro/GPIOx,notitle)
-GPIO_InitStruct&br;
--GPIO_Pin
#include(Macro/GPIO_Pin,notitle)
&br;
--GPIO_Speed
#include(Macro/GPIO_Speed,notitle)
&br;
--GPIO_Mode
#include(Macro/GPIO_Mode,notitle)
&br;
**戻り値 [#g67b6b61]
-無し
**呼び出し関数 [#x5733a21]
-無し
**サンプル [#z78f0fe7]
/* Configure all the GPIOA in Input Floating mode */
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
**参照 [#k5f2a49d]
-STM32マイコン徹底入門 P.75
終了行:
[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]]
*GPIO_Init [#g3bf3266]
#contents
**ヘッダ宣言 [#o55bd3fc]
**関数プロトタイプ [#t4ecbbf7]
void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GP...
**動作 [#l09d32b6]
GPIO_Init構造体の設定に従って、GPIOx周辺回路レジスタの値...
**引数 [#m9c07792]
-GPIOx*&br;
#include(Macro/GPIOx,notitle)
-GPIO_InitStruct&br;
--GPIO_Pin
#include(Macro/GPIO_Pin,notitle)
&br;
--GPIO_Speed
#include(Macro/GPIO_Speed,notitle)
&br;
--GPIO_Mode
#include(Macro/GPIO_Mode,notitle)
&br;
**戻り値 [#g67b6b61]
-無し
**呼び出し関数 [#x5733a21]
-無し
**サンプル [#z78f0fe7]
/* Configure all the GPIOA in Input Floating mode */
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_Init(GPIOA, &GPIO_InitStructure);
**参照 [#k5f2a49d]
-STM32マイコン徹底入門 P.75
ページ名: