led.c 967 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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;
  12. GPIO_Init(GPIOx,&GPIO_InitStructure);
  13. }
  14. void GPIO_IN_Config(u32 RCC_APBnPeriphn, GPIO_TypeDef* GPIOx, u16 PIN)
  15. {
  16. RCC_AHB1PeriphClockCmd(RCC_APBnPeriphn,ENABLE);
  17. //GPIO³õʼ»¯
  18. GPIO_InitTypeDef GPIO_InitStructure;
  19. GPIO_InitStructure.GPIO_Pin = PIN;
  20. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
  21. GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  22. GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
  23. GPIO_Init(GPIOx,&GPIO_InitStructure);
  24. }