代码:
#include "stm32f10x.h" // Device header
GPIO_InitTypeDef GPIO_InitStructur;//定义变量结构体
int main(void){
/*使用RCC开启GPIO的时钟*/
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);//开启PA端口时钟
/*使用GPIO_INit函数初始化GPIO*/
GPIO_InitStructur.GPIO_Mode = GPIO_Mode_Out_PP;//推挽输出
GPIO_InitStructur.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1;//零号引脚
GPIO_InitStructur.GPIO_Speed = GPIO_Speed_50MHz;//输出50HZ
//GPIO_InitStructur.GPIO_Pin = GPIO_Pin_1;//1号引脚
GPIO_Init(GPIOA, &GPIO_InitStructur);//
/*使用输出或输入函数控制GOIO口*/
GPIO_ResetBits(GPIOA, GPIO_Pin_0);//指定端口设置为低电平
GPIO_WriteBit(GPIOA, GPIO_Pin_1, Bit_RESET);//写函数
}