void GPIO_DeInit(GPIO_TypeDef* GPIOx);
void GPIO_AFIODeInit(void);
void GPIO_Init(GPIO_TypeDef* GPIOx, GPIO_InitTypeDef* GPIO_InitStruct);
void GPIO_StructInit(GPIO_InitTypeDef* GPIO_InitStruct);//输出 读
uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx);
uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx);//输入 写
//高电平
void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);//低电平
void GPIO_ResetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);
void GPIO_WriteBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, BitAction BitVal);
void GPIO_Write(GPIO_TypeDef* GPIOx, uint16_t PortVal);
RCC里面的AHB外设时钟控制函数
void RCC_AHBPeriphClockCmd(uint32_t RCC_AHBPeriph, FunctionalState NewState);
RCC里面的APB2外设时钟控制函数
void RCC_APB2PeriphClockCmd(uint32_t RCC_APB2Periph, FunctionalState NewState);RCC里面的APB1外设时钟控制函数
void RCC_APB1PeriphClockCmd(uint32_t RCC_APB1Periph, FunctionalState NewState);
GPIO的八种工作模式
模拟输入
GPIO_Mode_AIN = 0x0,浮空输入
GPIO_Mode_IN_FLOATING = 0x04,下拉输入
GPIO_Mode_IPD = 0x28,上拉输入
GPIO_Mode_IPU = 0x48,开漏输出 高电平相当于高阻态,没有驱动能力,低电平有驱动能力
GPIO_Mode_Out_OD = 0x14,推挽输出 高低电平均有驱动能力,一般输出用推挽模式
GPIO_Mode_Out_PP = 0x10,复用开漏
GPIO_Mode_AF_OD = 0x1C,复用推挽
GPIO_Mode_AF_PP = 0x18