drv_can.h 506 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-01-09 chenbin the first version
  9. */
  10. #ifndef __DRV_CAN_H__
  11. #define __DRV_CAN_H__
  12. #ifdef __cplusplus
  13. extern "C"
  14. {
  15. #endif
  16. #include <board.h>
  17. #include <rtdevice.h>
  18. #include <rtthread.h>
  19. int rt_hw_can_init(void);
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif /*__DRV_CAN_H__ */
  24. /************************** end of file ******************/