led.h 207 B

1234567891011
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "stm32f4xx.h"
  4. void GPIO_Config(u32 RCC_APBnPeriphn, GPIO_TypeDef* GPIOx, u16 PIN);
  5. void GPIO_IN_Config(u32 RCC_APBnPeriphn, GPIO_TypeDef* GPIOx, u16 PIN);
  6. #endif