[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]] *GPIO_ReadInputData [#n9ff0e45] #contents **ヘッダ宣言 [#hb8b80a5] **関数プロトタイプ [#aa7cb661] uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx) **動作 [#uddc4d82] 設定したGPIOポートのピン全体の値を読みます。 **引数 [#x27378f5] -GPIOx*&br; -GPIOx&br; &br; #include(Macro/GPIOx,notitle) &br; **戻り値 [#j26e1999] -指定したGPIOポート入力ピン全体の状態をuint16_t型で返します。 **呼び出し関数 [#d4be81fb] -無し **サンプル [#b9c0d51a] /*Read the GPIOC input data port and store it in ReadValue variable*/ uint16_t ReadValue; ReadValue = GPIO_ReadInputData(GPIOC); **参照 [#xdfcc5aa] -STM32マイコン徹底入門 P118