drv_gpio.h 392 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2020-2020, Bluetrum Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-11-19 greedyhao first version
  9. */
  10. #ifndef DRV_GPIO_H__
  11. #define DRV_GPIO_H__
  12. #include "drv_common.h"
  13. #include "board.h"
  14. #define __AB32_PORT(port) GPIO##port
  15. int rt_hw_pin_init(void);
  16. #endif // DRV_GPIO_H__