led.c 578 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #include "led.h"
  2. void GPIO_Config(u32 RCC_APBnPeriphn, GPIO_TypeDef* GPIOx, u16 PIN)
  3. {
  4. RCC_AHB1PeriphClockCmd(RCC_APBnPeriphn,ENABLE);
  5. //GPIO³õʼ»¯
  6. GPIO_InitTypeDef GPIO_InitStructure;
  7. GPIO_InitStructure.GPIO_Pin = PIN;
  8. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
  9. GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //ÍÆÍìÊä³ö
  10. GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100MHz
  11. GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//GPIO_PuPd_DOWN;
  12. GPIO_Init(GPIOx,&GPIO_InitStructure);
  13. }