drv_can.h 438 B

123456789101112131415161718192021222324252627
  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-06-21 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. int rt_hw_can_init(void);
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /*__DRV_CAN_H__ */
  21. /************************** end of file ******************/