drv_gpio.h 405 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-02-22 airm2m first version
  9. */
  10. #ifndef __DRV_GPIO_H__
  11. #define __DRV_GPIO_H__
  12. #include <drv_common.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. int rt_hw_pin_init(void);
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* __DRV_GPIO_H__ */