123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- * Copyright (c) 2022, Xiaohua Semiconductor Co., Ltd.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-04-28 CDT first version
- */
- #ifndef __DRV_CAN_H__
- #define __DRV_CAN_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <board.h>
- #include <rtdevice.h>
- #include <rtthread.h>
- /* hc32 can device */
- struct can_dev_init_params
- {
- char *name;
- };
- int rt_hw_can_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /*__DRV_CAN_H__ */
- /************************** end of file ******************/
|