12345678910111213141516171819202122 |
- #ifndef __CAN_H
- #define __CAN_H
- #include "queue.h"
- //////////////////////////////////////////////////////////////////////////////////
- // BMS3-MCU1 V1.0开发板
- // CAN驱动代码
- // 作者:yukang
- // 创建日期:2018/9/10
- // 版本:V1.0
- // 版权所有,盗版必究。
- // Copyright(C) 国轩高科 2014-2024
- // All rights reserved
- //////////////////////////////////////////////////////////////////////////////////
- void CAN2_Init(void); // CAN1初始化
- u8 CAN2_Send_Msg(u8 *msg, u8 len, u32 can_id); // CAN1发送数据
- u8 CAN2_Receive_Msg(u8 *buf); // CAN1接收数据
- #define CAN_BUF1_BLOCK_LEN 100 // CAN1缓冲块数量
- #endif
|