can.h 645 B

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