GPIO_SetBits
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]]
*GPIO_SetBits [#mbdc838e]
#contents
**ヘッダ宣言 [#s6b6ca97]
**関数プロトタイプ [#u71ba60c]
void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)
**動作 [#e95a5952]
選択したGPIOポートのピン出力設定をセットします。
**引数 [#h8401c0b]
-GPIOx&br;
&br;
#include(Macro/GPIOx,notitle)
&br;
-GPIO_Pin&br;
&br;
#include(Macro/GPIO_Pin,notitle)
&br;
**戻り値 [#y95ee151]
-無し
**呼び出し関数 [#od533175]
-無し
**サンプル [#j1ee052d]
/* Set the GPIOA port pin 10 and pin 15 */
GPIO_SetBits(GPIOA, GPIO_Pin_10 | GPIO_Pin_15);
**参照 [#b39e45ad]
-STM32マイコン徹底入門 P83
終了行:
[[ファームウェア関数一覧>ファームウェア関数一覧#x6569942]]
*GPIO_SetBits [#mbdc838e]
#contents
**ヘッダ宣言 [#s6b6ca97]
**関数プロトタイプ [#u71ba60c]
void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)
**動作 [#e95a5952]
選択したGPIOポートのピン出力設定をセットします。
**引数 [#h8401c0b]
-GPIOx&br;
&br;
#include(Macro/GPIOx,notitle)
&br;
-GPIO_Pin&br;
&br;
#include(Macro/GPIO_Pin,notitle)
&br;
**戻り値 [#y95ee151]
-無し
**呼び出し関数 [#od533175]
-無し
**サンプル [#j1ee052d]
/* Set the GPIOA port pin 10 and pin 15 */
GPIO_SetBits(GPIOA, GPIO_Pin_10 | GPIO_Pin_15);
**参照 [#b39e45ad]
-STM32マイコン徹底入門 P83
ページ名: