drv_gpio.h 346 B

123456789101112131415
  1. #ifndef __DRV_GPIO_H__
  2. #define __DRV_GPIO_H__
  3. #include "pin.h"
  4. #include <stm32f4xx.h>
  5. #define RCC_GPIOF_CLK_ENABLE
  6. #define __STM32_PORT(port) GPIO##port##_BASE
  7. #define GET_PIN(PORTx, PIN) (rt_base_t)((16 * (((rt_base_t)__STM32_PORT(PORTx) - (rt_base_t)GPIOA_BASE) / (0x0400UL))) + PIN)
  8. int rt_hw_pin_init(void);
  9. #endif /* __DRV_GPIO_H__ */