GPIO_ReadInputDataBit
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]]
*GPIO_ReadInputDataBit [#gd9de001]
#contents
**ヘッダ宣言 [#v71022ae]
**関数プロトタイプ [#m5f9750a]
uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint1...
**動作 [#m9e6cfb0]
設定したGPIOポートのピンの値を読みます。
**引数 [#g1b7c3f1]
-GPIOx&br;
&br;
#include(Macro/GPIOx,notitle)
&br;
-GPIO_Pin&br;
&br;
#include(Macro/GPIO_Pin,notitle)
&br;
**戻り値 [#ma9c9271]
-入力ピンの状態をuint8_t型で返します。
**呼び出し関数 [#n7f04fd1]
-無し
**サンプル [#b3a8a204]
/* Reads the seventh pin of the GPIOB and store it in Re...
uint8_t ReadValue;
ReadValue = GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_7);
**参照 [#k8ba8938]
-STM32マイコン徹底入門 P91
終了行:
[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]]
*GPIO_ReadInputDataBit [#gd9de001]
#contents
**ヘッダ宣言 [#v71022ae]
**関数プロトタイプ [#m5f9750a]
uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint1...
**動作 [#m9e6cfb0]
設定したGPIOポートのピンの値を読みます。
**引数 [#g1b7c3f1]
-GPIOx&br;
&br;
#include(Macro/GPIOx,notitle)
&br;
-GPIO_Pin&br;
&br;
#include(Macro/GPIO_Pin,notitle)
&br;
**戻り値 [#ma9c9271]
-入力ピンの状態をuint8_t型で返します。
**呼び出し関数 [#n7f04fd1]
-無し
**サンプル [#b3a8a204]
/* Reads the seventh pin of the GPIOB and store it in Re...
uint8_t ReadValue;
ReadValue = GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_7);
**参照 [#k8ba8938]
-STM32マイコン徹底入門 P91
ページ名: