drv_pin.h 484 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2006-2024, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018-03-13 Liuguang the first version.
  9. * 2018-03-19 Liuguang add GPIO interrupt mode support.
  10. * 2024-02-06 yandld The first version for MCX
  11. */
  12. #ifndef __DRV_PIN_H__
  13. #define __DRV_PIN_H__
  14. #include <rtthread.h>
  15. #include <rtdevice.h>
  16. extern int rt_hw_pin_init(void);
  17. #endif /* __DRV_PIN_H__ */