12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #include "led.h"
- void GPIO_Config(u32 RCC_APBnPeriphn, GPIO_TypeDef* GPIOx, u16 PIN)
- {
- RCC_AHB1PeriphClockCmd(RCC_APBnPeriphn,ENABLE);
- //GPIO³õʼ»¯
- GPIO_InitTypeDef GPIO_InitStructure;
- GPIO_InitStructure.GPIO_Pin = PIN;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
- GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //ÍÆÍìÊä³ö
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100MHz
- GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
- GPIO_Init(GPIOx,&GPIO_InitStructure);
- }
- void GPIO_IN_Config(u32 RCC_APBnPeriphn, GPIO_TypeDef* GPIOx, u16 PIN)
- {
- RCC_AHB1PeriphClockCmd(RCC_APBnPeriphn,ENABLE);
- //GPIO³õʼ»¯
- GPIO_InitTypeDef GPIO_InitStructure;
- GPIO_InitStructure.GPIO_Pin = PIN;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
- GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
- GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
- GPIO_Init(GPIOx,&GPIO_InitStructure);
- }
|