gpio.h 253 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. */
  7. #ifndef __GPIO_H__
  8. #define __GPIO_H__
  9. #define GET_PIN(gpiox, pinNumber) (rt_base_t)(gpiox << 5 | pinNumber)
  10. int rt_hw_gpio_init(void);
  11. #endif