STM32F107VCT6的GPIO配置
#define LED_GPIO GPIOC
#define LED_PIN GPIO_Pin_9
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
//LED
GPIO_InitStructure.GPIO_Pin = LED_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽式輸出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(LED_GPIO, &GPIO_InitStructure);
GPIO_WriteBit(LED_GPIO, LED_PIN, Bit_RESET);
}
輸入配置
#define MON_GPIO GPIOC
#define MON_PIN GPIO_Pin_9
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
//監(jiān)視管腳
GPIO_InitStructure.GPIO_Pin = MON_PIN;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD; //GPIO_Mode_IN_FLOATING浮空輸入模式
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(MON_GPIO, &GPIO_InitStructure);
}
評論