创芯科技USB_CAN【库文件】

只用到【只收】【只发】功能

23.11.18

using help;
//using Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.NetworkInformation;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;// 1先引用  CAN_namespace   用于参数类型 //  using USB_CAN;
// 2再引用 help的方法namespace CAN_namespace
{#region 全局类型【声明】:通讯接口/// <summary>/// 全局类型:通讯接口/// </summary>public interface Iface_RTX  // 开,关,收,发,轮询{/// <summary>/// 连接/// </summary>/// <typeparam name="T">连接</typeparam>/// <param name="a">ip地址</param>/// <param name="b">端口</param>/// <returns></returns>bool connect<T>(T a, T b);/// <summary>/// 断开/// </summary>/// <returns></returns>bool Close();/// <summary>/// 只收/// </summary>/// <returns></returns>int RXs(ref object obj);//int RXs<T>(ref T obj);//测试/// <summary>/// 只发,格式148报文/// </summary>/// <param name="cmd"></param>/// <returns></returns>bool TXs(string cmd);/// <summary>/// 轮询/// </summary>/// <typeparam name="T"></typeparam>/// <param name="cmd"></param>/// <param name="t"></param>/// <returns></returns>bool sendAndReceive<T>(string cmd, ref T t);//万物皆文本}#endregion#region 对象public class Help_USB_CAN : Iface_RTX{//作者qq750273008 祁成  更新日期:2023.11.13//===============================================//[Browsable(true)]    //可浏览//[Category("自定义属性")]   // 属性分栏//[Description("属性的说明")]   ////================================================#region 全局//1申明委托》委托命令public delegate void WT_GET_Data<T>(T ciA402);//↑ui显示发送命令public delegate void WT_SET_Data(byte[] butes, string data);//↓下执行对象#region CAN参数类型:全局;【设备类型,主板信息,单帧信息,配置表/*------------兼容ZLG的数据类型---------------------------------*///1.设备类型/// <summary>/// 设备类型(单路,双路,以太网CAN)/// </summary>public enum DeviceType : byte   //设备类型【USB的【单路,双路】,以太网的【单路,双路】can】{DEV_USBCAN = 3, // USB单路CANDEV_USBCAN2 = 4,// USB双路CANVCI_USBCAN1 = 3,VCI_USBCAN2 = 4,// 我买的属于这个(创新科技CAN-Pro)VCI_USBCAN2A = 4,VCI_USBCAN_E_U = 20,// 以太网单路CANVCI_USBCAN_2E_U = 21// 以太网双路CAN}//设备类型public enum CAN设备类型 : int{DEV_USBCAN = 3, // USB单路CANDEV_USBCAN2 = 4,// USB双路CANVCI_USBCAN1 = 3,VCI_USBCAN2 = 4,VCI_USBCAN2A = 4,VCI_USBCAN_E_U = 20,// 以太网单路CANVCI_USBCAN_2E_U = 21// 以太网双路CAN}//2.ZLGCAN系列接口卡信息的数据类型。/// <summary>/// 主板设备【31F01031C93】v3.41  VCI_ReadBoardInfo/// </summary>public struct VCI_BOARD_INFO //主板信息{ // VCI_ReadBoardInfo【要先运行VCI_OpenDevice(4,0,0);】   VCI_FindUsbDevice2public UInt16 hw_Version;//【0x0900】硬件版本,比如0x0100表示V1.00。public UInt16 fw_Version;//【0x0341】固件版本,v3.41public UInt16 dr_Version;//【0x0900】驱动版本,public UInt16 in_Version;//【0x0905】接口版本,public UInt16 irq_Num;//   【0x00】  保留参数。public byte can_Num;  //   【0x02】  表示有几路CAN通道。[MarshalAs(UnmanagedType.ByValArray, SizeConst = 20)]public char[] str_Serial_Num;// 板卡序列号。【31F01031C93】[MarshalAs(UnmanagedType.ByValArray, SizeConst = 40)]public char[] str_hw_Type;// 硬件类型【55 53 42 43 41 4e 2d 49 49】“USBCAN-II”[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]public UInt16[] Reserved;// 系统保留。}//2-1.USB-CAN总线适配器板卡信息的数据类型1,该类型为VCI_FindUsbDevice函数的返回参数。/// <summary>/// USB-CAN设备主板信息,该类型为VCI_FindUsbDevice函数的返回参数。/// </summary>public struct VCI_BOARD_INFO1 // 读取USB主板信息 设备【31F01031C93】v3.41{// VCI_FindUsbDevicepublic UInt16 hw_Version;//【0x0900】 硬件版本,0x0100表示V1.00。 // public UInt16 fw_Version;//【0x0341】 固件版本,v3.41, public UInt16 dr_Version;//【0x0900】 驱动版本,public UInt16 in_Version;//【0x0905】 接口版本, public UInt16 irq_Num;//   【0x0000】 保留参数。public byte can_Num;//     【0x02】   表示有几路CAN通道。public byte Reserved;//    【0x00】   保留。[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]public char[] str_Serial_Num;// 此板卡的序列号。【43 41 4e 2d 31 43 39 33】"CAN-1C93"[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]public char[] str_hw_Type;// 硬件类型“USBCAN V1.00”【55 53 42 43 41 4e 2d 49 49】"USBCAN-II"[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]public char[] str_Usb_Serial;// 序列号【31 43 39 33】// "1C93"}//3.定义CAN每帧的数据类型。/// <summary>/// CAN的每一帧详细信息(每帧对象)/// </summary>public unsafe struct VCI_CAN_OBJ  //CAN每帧对象,{public uint ID;// 帧ID。        【u32】帧id,数据格式为靠右对齐。 详情请参照: 《8.附件1: ID对齐方式.pdf》说明文档。public uint TimeStamp;        //【u32】设备时间标识。 时间标示从CAN卡上电开始计时,计时单位为0.1ms。public byte TimeFlag;         //是否使用时间标识,=1时TimeStamp有效public byte SendType;         //发送类型。=0时为正常发送(重发超时时间为1秒,1秒内没有发出则取消);=1时为单次发送public byte RemoteFlag;       //是否远程帧标志。 =0时为数据帧, =1时为远程帧(数据段空)。public byte ExternFlag;       //是否扩展帧标志。 =0时为标准帧(11位ID), =1时为扩展帧(29位ID)。public byte DataLen;          //有效字节 DLC (<=8),即CAN帧Data有几个字节。约束了后面Data[8]中有效字节数。public fixed byte Data[8];    //数据包,如DataLen定义为3,即Data[0]、 Data[1]、 Data[2]是有效的。public fixed byte Reserved[3];//系统保留。}//4.定义配置CAN的数据类型/// <summary>/// USB-CAN2、配置表(参数表)/// </summary>public struct VCI_INIT_CONFIG // 配置参数 设备【31F01031C93】v3.41{public UInt32 AccCode;// bit全部匹配,此帧才可以被接收。否则不能接收。(//标准帧右移21bit分析)// 相当于机械钥匙,凸起和凹槽必须匹配,才能开锁(接收)// b31对应帧id最高位,所以11bit要左移21bit(//分析标准帧时右移21bit)public UInt32 AccMask;// 屏蔽码。使AccCode的某个bit功能失效。左对齐,bit31~bit21置1为屏蔽AccCode的bit匹配功能,// 相当于机械钥匙的bit销位,是否失效(bit置1为失效)// 。屏蔽码推荐设置为0xFFFFFFFF,即全部接收。public UInt32 Reserved;// 保留。public byte Filter;   // 1接收所有帧。2只收标准帧,3只收扩展帧。public byte Timing0;  //波特率参数,具体配置,请查看二次开发库函数说明书。(1Mbps):《Timing0=0x00,Timing1=0x14》public byte Timing1;    // 0x14       波特率参数 1MHz(T0=0x00,T1=0x14)public byte Mode;     //模式,0表示正常模式,1表示只听模式,2自测模式(环回模式)。}/*------------其他数据结构描述---------------------------------*/public struct CHGDESIPANDPORT // 扩展端口?{[MarshalAs(UnmanagedType.ByValArray, SizeConst = 10)]public byte[] szpwd;[MarshalAs(UnmanagedType.ByValArray, SizeConst = 20)]public byte[] szdesip;public Int32 desport;public void Init(){szpwd = new byte[10];szdesip = new byte[20];}}public struct VCI_FILTER_RECORD //滤帧配置{UInt32 ExtFrame;// 过滤的帧类型【1】过滤扩展帧【0】过滤标准帧。UInt32 Start;//起始帧ID UInt32 End;  //结束帧ID }/*------------数据结构描述完成---------------------------------*/#endregion#endregion#region 字段//private CancellationTokenSource cts;//线程令牌//private ManualResetEvent resetEvent = new ManualResetEvent(true);// 暂停业务//=====================================================Help_String help_String = new Help_String();//文本处理//设备类型public const int VCI_USBCAN = 3;// USB单路CANpublic const int VCI_USBCAN2 = 4;// USB双路CAN// E表示以太网public const int VCI_USBCAN_E_U = 20;// 以太网单路CANpublic const int VCI_USBCAN_2E_U = 21;// 以太网双路CANconst uint CAN1 = 0; // 字段,内部使用const uint CAN2 = 1;const byte STATUS_OK = 1;const byte STATUS_ERR = 0;#endregion#region 属性//public Iface_RTX help_rtx { get; set; }// 接口扩展/// <summary>/// ↑:byte包,文本/// </summary>//static public WT_GET_Data  Wt_get;//↑event委托=》呼叫上ui层  让上层显示:发送命令/// <summary>/// ↓:byte包,文本/// </summary>static public WT_SET_Data Wt_set;//↓委托=》呼叫下位机执行public VCI_BOARD_INFO1[] get_FindUsbDevice{get{VCI_BOARD_INFO1[] pInfo = new VCI_BOARD_INFO1[5];Int32 num = VCI_FindUsbDevice(ref pInfo[0]);// 查找5个设备return pInfo;}}/// <summary>/// USB设备id:查找50个USB设备【31F01031C93】/// </summary>public VCI_BOARD_INFO[] get_FindUsbDevice2{get{VCI_BOARD_INFO[] pInfo = new VCI_BOARD_INFO[50];UInt32 num = VCI_FindUsbDevice2(ref pInfo[0]);// 查找50个设备return pInfo;}}public VCI_BOARD_INFO get_ReadBoardInfo{get{Set_Open();VCI_BOARD_INFO info = new VCI_BOARD_INFO();Int32 num = VCI_ReadBoardInfo(VCI_USBCAN2, 0, ref info);return info;}}#endregion#region 构造#endregion#region 事件#endregion#region APP方法【 开,关,收,发,复位/// <summary>/// 打开CAN:设备类型,硬件id,CAN通道id,参数表/// </summary>/// <param name="DeviceType"></param>/// <param name="DeviceInd"></param>/// <param name="CANInd"></param>/// <param name="pInitConfig"></param>/// <returns></returns>public Int32 Set_Open()//(DeviceType deviceType, uint deviceID,uint canX, VCI_INIT_CONFIG Config)// 设备类型,设备id,通道,配置参数{//打开CAN:设备类型,硬件索引,CAN通道索引,初始化参数,//查找CAN并打开can1通道Int32 sta = 1;// 故障标记UInt32 DeviceType = (int)VCI_USBCAN2;// 设备类型4【USB双路CAN】UInt32 DeviceInd = 0;// 设备IDVCI_BOARD_INFO1 bord = new VCI_BOARD_INFO1();// 设备信息【结构体】int num = VCI_FindUsbDevice(ref bord);// 查找USB设备【31F01031C93】v3.41if (num < 1){// 找不到设备return 0;}// 配置表VCI_INIT_CONFIG config = new VCI_INIT_CONFIG();// 参数表【结构体】// bit全部匹配,此帧才可以被接收。否则不能接收。【左对齐】(//标准帧右移21bit分析)config.AccCode = 0;//bit【钥匙销子】匹配id,(右移21bit分析【32-11】)b31对应帧id最高位【左对齐】config.AccMask = 0xffffffff;// 屏蔽码。使AccCode的某个bit功能失效。左对齐,【标准帧11bit】bit31~bit21置1为屏蔽AccCode的bit匹配功能,config.Filter = 1;//0或1接收所有帧。2只接收标准帧,3只接收扩展帧。config.Timing0 = 0x00;//波特率 1MHz【T0=0x00,T1=0x14】  // 查手册config.Timing1 = 0x14;config.Mode = 0;//模式,0表示正常模式,1表示只听模式,2表示自发自收模式(环回模式)// usb硬件sta &= VCI_使能设备(DeviceType, DeviceInd);// 通电sta &= VCI_初始化通道(DeviceType, DeviceInd, CAN1, ref config);// CAN 1sta &= VCI_初始化通道(DeviceType, DeviceInd, CAN2, ref config);// CAN 2sta &= VCI_CAN通道工作(DeviceType, DeviceInd, CAN1);// CAN 1//sta &= VCI_CAN通道工作(DeviceType, DeviceInd, CAN2);// CAN 2// 硬件信息【在VCI_OpenDevice运行后才可读设备信息】VCI_BOARD_INFO pInfo = new VCI_BOARD_INFO();// 设备信息Int32 num1 = VCI_ReadBoardInfo(4, 0, ref pInfo);//   VCI_ReadBoardInfo     VCI_FindUsbDeviceif (num1 >= 1){string 序列号 = new string(pInfo.str_Serial_Num);string 设备名称 = new string(pInfo.str_hw_Type);}return (Int32)(sta == 1 ? 1 : 0);// 1完成,0故障//================================//VCI_INIT_CONFIG config = new VCI_INIT_CONFIG();// 参数表//config.AccCode = 0;// bit全部匹配,此帧才可以被接收。否则不能接收。【左对齐】(//标准帧右移21bit分析)//config.AccMask = 0xffffffff;//全部接收  // 屏蔽码。使AccCode的某个bit功能失效。左对齐,bit31~bit21置1为屏蔽AccCode的bit匹配功能,//config.Filter = 0;//0或1接收所有帧。2标准帧滤波,3是扩展帧滤波。//config.Timing0 = 0x00;//波特率参数 1MHz(T0=0x00,T1=0x14)//config.Timing1 = 0x14;//config.Mode = 0;//模式,0表示正常模式,1表示只听模式,2自测模式//uint i = can.set_Open(Help_USB_CAN.VCI_USBCAN2, 0, 0, ref config);// CAN 1//i &= can.set_Open(Help_USB_CAN.VCI_USBCAN2, 0, 1, ref config);// CAN 2}/// <summary>/// 关闭CAN:设备类型,设备id/// </summary>/// <param name="DeviceType"></param>/// <param name="DeviceInd"></param>/// <returns></returns>public Int32 Set_Close(UInt32 DeviceType, UInt32 DeviceInd)// UInt32 DeviceType, UInt32 DeviceInd{Int32 sta = 1;// 故障标记sta &= VCI_CloseDevice(DeviceType, DeviceInd);//设备关sta &= VCI_UsbDeviceReset(DeviceType, DeviceInd, 0);// 设备复位return sta;}public Int32 Set_ClearBuffer(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd){//设备类型,设备id,通道idInt32 sta = 1;sta &= VCI_ClearBuffer(DeviceType, DeviceInd, CANInd);//sta&= VCI_ClearBuffer(DeviceType, DeviceInd, 1);// CAN2return sta;}/// <summary>/// 接收:设备类型,设备索引,CAN通道索引,参数表,最大帧数2000,超时时间/// </summary>/// <param name="DeviceType">设备类型</param>/// <param name="DeviceInd">设备id</param>/// <param name="CANInd">通道id</param>/// <param name="pReceive">数据包</param>/// <param name="Len">小于2500帧</param>/// <param name="WaitTime">保留=0</param>/// <returns></returns>public Int32 get_Receive(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_CAN_OBJ pReceive, UInt32 Len, Int32 WaitTime){//VCI_CAN_OBJ pReceive 设置为数组,2000帧// 设备类型,设备id,通道id,数据包,帧数,等待时间【保留0】return VCI_Receive(DeviceType, DeviceInd, CANInd, ref pReceive, Len, WaitTime);}/// <summary>/// 发送:设备类型,设备索引,CAN通道索引,参数表,要发帧数/// </summary>/// <param name="DeviceType">设备类型</param>/// <param name="DeviceInd">设备id</param>/// <param name="CANInd">通道id</param>/// <param name="pSend">数据包</param>/// <param name="Len">帧数小于1000</param>/// <returns></returns>public Int32 set_Send(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_CAN_OBJ pSend, UInt32 Len){// 设备类型,设备id,通道id,数据包,帧数return VCI_Transmit(DeviceType, DeviceInd, CANInd, ref pSend, Len);}public Int32 set_ResetCAN(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd){// 复位can通道return VCI_ResetCAN(DeviceType, DeviceInd, CANInd);}/// <summary>/// 获取CAN设备信息【需要先打开设备】/// </summary>/// <param name="DeviceType"></param>/// <param name="DeviceInd"></param>/// <param name="pInfo"></param>/// <returns></returns>public Int32 get_BoardInfo(UInt32 DeviceType, UInt32 DeviceInd, ref VCI_BOARD_INFO pInfo){//需要设备开启后,才能读取return VCI_ReadBoardInfo(DeviceType, DeviceInd, ref pInfo);//=======================================================//VCI_BOARD_INFO info = new VCI_BOARD_INFO();//uint i = can.get_Board(4, 0, ref info);}//==以下不再重要=======================================================================//==以下不再重要========/// <summary>/// 使能硬件:设备类型,设备id。/// </summary>/// <param name="DeviceType">Help_USB_CAN.VCI_USBCAN2 = 4;双路CAN</param>/// <param name="DeviceInd">第1个CAN通道是0</param>/// <param name="Reserved">备用=0</param>/// <returns></returns>public Int32 VCI_使能设备(UInt32 DeviceType, UInt32 DeviceInd){// 相当于 插电return VCI_OpenDevice(DeviceType, DeviceInd, 0x00);// 通电}/// <summary>/// 初始化硬件:can设备类型,设备id,CAN通道id,VCI_INIT_CONFIG初始化参数结构体/// </summary>/// <param name="DeviceType">can设备类型</param>/// <param name="DeviceInd">设备索引0</param>/// <param name="CANInd">CAN通道索引0</param>/// <param name="pInitConfig">VCI_INIT_CONFIG初始化参数结构</param>/// <returns></returns>public Int32 VCI_初始化通道(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_INIT_CONFIG pInitConfig){return VCI_InitCAN(DeviceType, DeviceInd, CANInd, ref pInitConfig);}//设备类型。设备索引,CAN通道索引。初始化参数结构。/// <summary>/// CAN工作:设备类型,设备id,CAN通道id(返回【1】成功; 【0】失败; 【-1】设备不存在或USB掉线。)/// </summary>/// <param name="DeviceType"></param>/// <param name="DeviceInd"></param>/// <param name="CANInd"></param>/// <returns></returns>public Int32 VCI_CAN通道工作(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd){return VCI_StartCAN(DeviceType, DeviceInd, CANInd);}/// <summary>/// CAN发送:设备类型,设备索引,CAN通道索引,VCI_CAN_OBJ数组的首指针,(帧数量 最大为10)/// </summary>/// <param name="DeviceType"></param>/// <param name="DeviceInd"></param>/// <param name="CANInd"></param>/// <param name="pSend"></param>/// <param name="Len"></param>/// <returns></returns>public Int32 VCI_set发送(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_CAN_OBJ pSend, UInt32 Len){return VCI_Transmit(DeviceType, DeviceInd, CANInd, ref pSend, Len);}public Int32 VCI_get缓存区帧数(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd){return VCI_GetReceiveNum(DeviceType, DeviceInd, CANInd);// 缓存区,帧数}/// <summary>/// CAN接收:设备类型,设备id,CAN通道id,VCI_CAN_OBJ数组的首指针,本次接收的最大帧数 2500 ,超时时间ms/// </summary>/// <param name="DeviceType"></param>/// <param name="DeviceInd"></param>/// <param name="CANInd"></param>/// <param name="pReceive"></param>/// <param name="Len"></param>/// <param name="WaitTime"></param>/// <returns></returns>public Int32 VCI_get接收(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_CAN_OBJ pReceive, UInt32 Len, Int32 WaitTime){//VCI_CAN_OBJ[] obj = new VCI_CAN_OBJ[2000];//uint i = can.VCI_get接收(4, 0, 1, ref obj[0], 2000, 0);return VCI_Receive(DeviceType, DeviceInd, CANInd, ref pReceive, Len, WaitTime);}#endregion#region 后台方法#region 元始库方法//方法/*------------兼容ZLG的函数描述---------------------------------*/[DllImport("controlcan.dll")]public static extern Int32 VCI_OpenDevice(UInt32 DeviceType, UInt32 DeviceInd, UInt32 Reserved);//返回值=1,表示操作成功;=0表示操作失败;=-1表示USB-CAN设备不存在或USB掉线。//使能设备//(can通道不工作,只设备工作)[DllImport("controlcan.dll")]public static extern Int32 VCI_CloseDevice(UInt32 DeviceType, UInt32 DeviceInd);//返回值=1,表示操作成功;=0表示操作失败;=-1表示USB-CAN设备不存在或USB掉线。//关闭设备[DllImport("controlcan.dll")]public static extern Int32 VCI_InitCAN(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_INIT_CONFIG pInitConfig);//初始化can通道(参数配置)b31对应帧id最高位,所以11bit要左移21bit[DllImport("controlcan.dll")]public static extern Int32 VCI_ReadBoardInfo(UInt32 DeviceType, UInt32 DeviceInd, ref VCI_BOARD_INFO pInfo);//读取主板信息【需要先VCI_OpenDevice】[DllImport("controlcan.dll")]public static extern Int32 VCI_GetReceiveNum(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd);//缓存区可用帧数(<=2000帧)[DllImport("controlcan.dll")]public static extern Int32 VCI_ClearBuffer(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd);//清空缓存区[DllImport("controlcan.dll")]public static extern Int32 VCI_StartCAN(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd);//CAN通道启动(启动can通道)[DllImport("controlcan.dll")]public static extern Int32 VCI_ResetCAN(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd);//CAN通道复位[DllImport("controlcan.dll")]public static extern Int32 VCI_Transmit(UInt32 DeviceType,UInt32 DeviceInd, UInt32 CANInd, ref VCI_CAN_OBJ pSend,UInt32 Length);//返回实际发送的帧数,=-1表示USB-CAN设备不存在或USB掉线。//Length 最大为1000,建议设为1,每次发送单帧,以提高发送效率//CAN通道发送(单次<=10帧)[DllImport("controlcan.dll")]public static extern Int32 VCI_Receive(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, ref VCI_CAN_OBJ pReceive, UInt32 Len, Int32 WaitTime);//CAN通道接收(函数调用间隔至少应设置在5ms以上。)【Len为单次封顶帧数2500帧被读出/*------------其他函数描述---------------------------------*/[DllImport("controlcan.dll")]public static extern Int32 VCI_ConnectDevice(UInt32 DevType, UInt32 DevIndex);//设备连接[DllImport("controlcan.dll")]public static extern Int32 VCI_UsbDeviceReset(UInt32 DevType, UInt32 DevIndex, UInt32 Reserved);//设备复位[DllImport("controlcan.dll")]public static extern Int32 VCI_FindUsbDevice(ref VCI_BOARD_INFO1 pInfo);//返回前5个设备信息//若计算机中插入多于5个适配器,则使用VCI_FindUsbDevice2函数,最大支持50个USB-CAN适配器。[DllImport("controlcan.dll")]public static extern UInt32 VCI_FindUsbDevice2 (ref VCI_BOARD_INFO pInfo);//如:VCI_BOARD_INFO pInfo[50]。 [DllImport("controlcan.dll")]public static extern Int32 VCI_SetReference(UInt32 DeviceType, UInt32 DeviceInd, UInt32 CANInd, UInt32 RefType, ref VCI_FILTER_RECORD pData);//设置滤帧(设备类型,设备id,通道id,参数类型,参数包)【只监听某一范围的帧】//RefType=1,添加滤帧表 指向VCI_FILTER_RECORD结构的指针//RefType=2,启用滤帧表//RefType=3,清除滤帧表。/*------------函数描述结束---------------------------------*/#endregion#endregion#region 窗体移动//private Point mouseOff;//鼠标移动位置变量//private bool leftFlag;//标签是否为左键//private void Frm_MouseDown(object sender, MouseEventArgs e)//鼠标按下//{//    if (e.Button == MouseButtons.Left)//    {//        mouseOff = new Point(-e.X, -e.Y); //得到变量的值//        leftFlag = true;                  //点击左键按下时标注为true;//    }//}//private void Frm_MouseMove(object sender, MouseEventArgs e)//鼠标移动//{//    if (leftFlag)//    {//        Point mouseSet = Control.MousePosition;//        mouseSet.Offset(mouseOff.X, mouseOff.Y);  //设置移动后的位置//                                                  //Location = mouseSet;//Form 窗体父类字段//    }//}//private void Frm_MouseUp(object sender, MouseEventArgs e)//鼠标松开//{//    if (leftFlag)//    {//        leftFlag = false;//释放鼠标后标注为false;//    }//}#endregion#region 错误//try//{//    byte[] buffer = Encoding.Default.GetBytes(data);//以计算机的编码发送//    serialPort.Write(buffer, 0, buffer.Length);//  开始发送//}//catch (Exception ex) { MessageBox.Show(ex.Message); }//显示错误#endregion#region 接口实现public bool connect<T>(T a, T b){// 打开USB-CAN设备的can1通道//throw new NotImplementedException();int sta = Set_Open();return sta == STATUS_OK ? true : false; // 1完成,0故障}bool Iface_RTX.Close(){//throw new NotImplementedException();if (Set_Close(VCI_USBCAN2, 0) == 1){return true;}return false;}public Int32 RXs(ref object Obj){//throw new NotImplementedException();// 缓存区可用帧数=============================//int i = VCI_GetReceiveNum(Help_USB_CAN.VCI_USBCAN2, CAN_inD, CAN1);// can1VCI_CAN_OBJ[] obj = new VCI_CAN_OBJ[2500];// 创新科技CAN分析仪,单次最大缓存2500帧接收,间隔5ms以上Int32 num = VCI_get接收(VCI_USBCAN2, 0, CAN1, ref obj[0], 2500, 0);//  注意 CAN1  通道if (num > 0)// CAN1接收帧数{Obj = obj;return num;#region 取一帧      【1   4    8】//=================================================//byte[] bytes = new byte[13];//bytes[0] = obj[0].DataLen;   //  【1】有效字节//uint id = obj[0].ID; //     帧 id【4】帧id//bytes[1] = (byte)(id >> 24);//bytes[2] = (byte)(id >> 16);//bytes[3] = (byte)(id >> 8);//bytes[4] = (byte)(id & 0xff);//fixed (VCI_CAN_OBJ* p_obj = &obj[0])// 8字节    第一帧//{//    bytes[5] = p_obj->Data[0];//  【8】包数据//    bytes[6] = p_obj->Data[1];//    bytes[7] = p_obj->Data[2];//    bytes[8] = p_obj->Data[3];//    bytes[9] = p_obj->Data[4];//    bytes[10] = p_obj->Data[5];//    bytes[11] = p_obj->Data[6];//    bytes[12] = p_obj->Data[7];//}//return bytes;#endregion}return 0;}//public int RXs<T>(ref T obj)// 待测试//{//    //throw new NotImplementedException();//    VCI_CAN_OBJ[] obj2 = new VCI_CAN_OBJ[2000];// 创新科技CAN分析仪最大支持2000帧接收,间隔5ms以上//    int num = VCI_get接收(4, 0, CAN1, ref obj2[0], 2000, 50);//    if (num > 0)// CAN1接收帧数//    {//        //obj = obj2.ToList<T>();//        return num;//    }//    return 0;//    }public unsafe bool TXs(string cmd)//  "08   00000602  4064600000000000"   //   CAN_namespace.Iface_RTX.{// 1  4  8 (DLC字节,帧id,Byte8数据包)//throw new NotImplementedException();cmd.Replace(" ", "");//去除空白byte[] buffercmd = help_String.StringsToHexBytes(cmd);//准备报文  //去除空白   StringsToHexBytesVCI_CAN_OBJ[] buffer = new VCI_CAN_OBJ[10];string id = cmd.Substring(2, 8);// 从站地址  00000602// 4   buffer[0].ID = Convert.ToUInt32(id, 16);//从站id// 重发功能 0开,1关buffer[0].SendType = 0;//【0】正常,失败有重发  【1】只发单次,失败无重发// 1      buffer[0].DataLen = buffercmd[0];//数据长度 DLC (<=8),即CAN帧Data有几个字节。约束了后面Data[8]中的有效字节。// 8           buffer[0].Data[0] = buffercmd[5];// byte8buffer[0].Data[1] = buffercmd[6];buffer[0].Data[2] = buffercmd[7];buffer[0].Data[3] = buffercmd[8];buffer[0].Data[4] = buffercmd[9];buffer[0].Data[5] = buffercmd[10];buffer[0].Data[6] = buffercmd[11];buffer[0].Data[7] = buffercmd[12];// 上车Int32 ret = VCI_set发送(Help_USB_CAN.VCI_USBCAN2, 0, CAN1, ref buffer[0], 1);// 库函数(发送TXs)if (ret == 1) return true;return false;}public unsafe object sendAndReceive(string stringcmd){//"1803052000018705"//"04000006014000200000000000"//throw new NotImplementedException();stringcmd.Replace(" ", "");//去除空白byte[] buffercmd = help_String.StringsToHexBytes(stringcmd);//准备报文  //去除空白   StringsToHexBytesVCI_CAN_OBJ[] buffer = new VCI_CAN_OBJ[10];string id = stringcmd.Substring(7, 3);// 从站地址buffer[0].ID = Convert.ToUInt32(id, 16);//从站idbuffer[0].SendType = 1;//发送帧类型。=0时为正常发送(发送失败会自动重发,重发超时时间为4秒, 4秒内没有发出则取消);=1时为单次发送buffer[0].DataLen = buffercmd[0];//数据长度 DLC (<=8),即CAN帧Data有几个字节。约束了后面Data[8]中的有效字节。buffer[0].Data[0] = buffercmd[5];buffer[0].Data[1] = buffercmd[6];buffer[0].Data[2] = buffercmd[7];buffer[0].Data[3] = buffercmd[8];buffer[0].Data[4] = buffercmd[9];buffer[0].Data[5] = buffercmd[10];buffer[0].Data[6] = buffercmd[11];buffer[0].Data[7] = buffercmd[12];Int32 ret = set_Send(VCI_USBCAN2, 0, 0, ref buffer[0], 1);// 发1帧//byte[] buff = SendAndReceive(buffer, stringcmd);//  收发报文//if (buff == null) throw new Exception("ACK 未应答。。。");//if (buff != null)//{//    string str = help_String.BytesToHexStrings(buff);//    return str;//}return null;// 发送后未接收}//public unsafe object RXs()//  VCI_CAN_OBJ  //CAN帧参数//{//    //throw new NotImplementedException();//    // 缓存区可用帧数=============================//    uint i = VCI_GetReceiveNum(Help_USB_CAN.VCI_USBCAN2, 0, 0);// can1//    if (i > 0)// CAN1接收帧数//    {//        uint CAN1 = 0;//        VCI_CAN_OBJ[] obj = new VCI_CAN_OBJ[2000];// 创新科技CAN分析仪最大支持2000帧接收//        i = VCI_get接收(4, 0, CAN1, ref obj[0], 1, 0);//  注意 CAN1  通道//        #region 取一帧//        //=================================================//        byte[] bytes = new byte[13];//        bytes[0] = obj[0].DataLen;   //obj[0].//        uint id = obj[0].ID; //       帧 id//        bytes[1] = (byte)(id >> 24);//        bytes[2] = (byte)(id >> 16);//        bytes[3] = (byte)(id >> 8);//        bytes[4] = (byte)(id & 0xff);//        fixed (VCI_CAN_OBJ* p_obj = &obj[0])// 8字节    第一帧//        {//            bytes[5] = p_obj->Data[0];//            bytes[6] = p_obj->Data[1];//            bytes[7] = p_obj->Data[2];//            bytes[8] = p_obj->Data[3];//            bytes[9] = p_obj->Data[4];//            bytes[10] = p_obj->Data[5];//            bytes[11] = p_obj->Data[6];//            bytes[12] = p_obj->Data[7];//        }//        return bytes;//        #endregion//        //return obj;//    }//    return null;//}//public unsafe object RXs()//  VCI_CAN_OBJ  //CAN帧参数//{// CAN1 接收//    //throw new NotImplementedException();//    // 缓存区可用帧数=============================//    //Help_Delay.delayTime(0.005);// usb大概3~5ms//    int i = VCI_GetReceiveNum(Help_USB_CAN.VCI_USBCAN2, CAN_inD, CAN1);// can1//    if (i > 0)// CAN1接收帧数//    {//        VCI_CAN_OBJ[] obj = new VCI_CAN_OBJ[2000];// 创新科技CAN分析仪最大支持2000帧接收,间隔5ms以上//        i = VCI_get接收(4, 0, CAN1, ref obj[0], 2000, 50);//  注意 CAN1  通道//        #region 取一帧      【1   4    8】//        //=================================================//        //byte[] bytes = new byte[13];//        //bytes[0] = obj[0].DataLen;   //  【1】有效字节//        //uint id = obj[0].ID; //     帧 id【4】帧id//        //bytes[1] = (byte)(id >> 24);//        //bytes[2] = (byte)(id >> 16);//        //bytes[3] = (byte)(id >> 8);//        //bytes[4] = (byte)(id & 0xff);//        //fixed (VCI_CAN_OBJ* p_obj = &obj[0])// 8字节    第一帧//        //{//        //    bytes[5] = p_obj->Data[0];//  【8】包数据//        //    bytes[6] = p_obj->Data[1];//        //    bytes[7] = p_obj->Data[2];//        //    bytes[8] = p_obj->Data[3];//        //    bytes[9] = p_obj->Data[4];//        //    bytes[10] = p_obj->Data[5];//        //    bytes[11] = p_obj->Data[6];//        //    bytes[12] = p_obj->Data[7];//        //}//        //return bytes;//        #endregion//        return obj;//    }//    return null;//}//public unsafe object TXs(string stringcmd)// "04000006014000200000000000"//{//被CanOpen调用//    //throw new NotImplementedException();//    stringcmd.Replace(" ", "");//去除空白//    byte[] buffercmd = help_String.StringsToHexBytes(stringcmd);//准备报文  //去除空白   StringsToHexBytes//    VCI_CAN_OBJ[] buffer = new VCI_CAN_OBJ[10];//    string id = stringcmd.Substring(2, 8);// 从站地址  00000601//    buffer[0].ID = Convert.ToUInt32(id, 16);//从站id//    // 重发功能 0开,1关//    buffer[0].SendType = 0;//0(4秒内有重发)  1只发单次//    buffer[0].DataLen = buffercmd[0];//数据长度 DLC (<=8),即CAN帧Data有几个字节。约束了后面Data[8]中的有效字节。//    buffer[0].Data[0] = buffercmd[5];// byte8//    buffer[0].Data[1] = buffercmd[6];//    buffer[0].Data[2] = buffercmd[7];//    buffer[0].Data[3] = buffercmd[8];//    buffer[0].Data[4] = buffercmd[9];//    buffer[0].Data[5] = buffercmd[10];//    buffer[0].Data[6] = buffercmd[11];//    buffer[0].Data[7] = buffercmd[12];//    Int32 ret = VCI_set发送(Help_USB_CAN.VCI_USBCAN2, 0, CAN1, ref buffer[0], 1);// 库函数(发送TXs)//    return ret;//}//public int Close()//{//    //throw new NotImplementedException();//    return (int)set_Close((UInt32)CAN设备类型.VCI_USBCAN2, CAN_inD);//}public bool sendAndReceive<T>(string cmd, ref T t){throw new NotImplementedException();}#endregion}#endregion}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/146484.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MybatisPlus学习

一.快速入门 1.相关数据库创建 CREATE TABLE USER(id BIGINT(20) NOT NULL COMMENT 主键ID,NAME VARCHAR(30) NULL DEFAULT NULL COMMENT 姓名,age INT(11) NULL DEFAULT NULL COMMENT 年龄,email VARCHAR(50) NULL DEFAULT NULL COMMENT 邮箱,PRIMARY KEY (id));​​INSERT I…

后端返回 date 时间日期格式为 UTC 格式字符串,形如 2022-08-11T10:50:31.050+00:00前端如何修改为yyyy-mm-dd

在不指定任何特殊配置的情况下&#xff0c;返回的 date 类型的字段会自动转成 UTC 格式字符串&#xff0c;形如 2022-08-11T10:50:31.05000:00。 前端如何处理&#xff1f; vue举例 utils 下新建 mixins.js文件 // minins.js文件 import Vue from "vue"; import {…

MidJourney笔记(1)-入门

注册 MidJourney注册和使用方式,有点特别。在介绍注册之前,需要给大家先介绍Discord。 Discord是一家游戏聊天应用与社区,在国内用的人相对比较少,在国外用得比较多。 那MidJourney和Discord有什么关系呢? MidJourney是搭建在Discord上的一个人工智能程序,通过在Discord添…

《洛谷深入浅出基础篇》——P3405 citis and state ——哈希表

上链接&#xff1a;P3405 [USACO16DEC] Cities and States S - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)https://www.luogu.com.cn/problem/P3405 上题干&#xff1a; 题目描述 Farmer John 有若干头奶牛。为了训练奶牛们的智力&#xff0c;Farmer John 在谷仓的墙上放了一…

Spring对事务的实现

Spring对事务的支持 事务概述事务的四个处理过程事务的四个特性 引入事务场景Spring实现事务的两种方式声明式事务之注解实现方式 事务概述 在一个业务流程当中&#xff0c;通常需要多条DML&#xff08;insert delete update&#xff09;语句共同联合才能完成&#xff0c;这多…

若依启动步骤

1.创建数据库 2.启动redis 3.改后端的数据库连接配置 4.配置redis redis的地址&#xff1a;cmd中ipconfig命令查看 6.启动后端&#xff1a;如下 7.启动前端ruoyi-ui中 先运行npm install&#xff0c;再npm run dev。项目就启动成功了。 用户名&#xff1a;admin 密码&#x…

【2022改良版】学法减分助手PRO小程序源码

【2022改良版】学法减分助手PRO小程序源码 &#xff0c;交管推出个学法减分&#xff0c;每个驾驶员可以把被扣的6分&#xff0c;以看视频答题的形式学习回来&#xff0c;然后答题这个一共二十道题每道题60秒&#xff0c; 有好多人不会&#xff0c;用咱们的小程序就可以模拟练习…

计算机视觉:驾驶员疲劳检测

目录 前言 关键点讲解 代码详解 结果展示 改进方向&#xff08;打哈欠检测疲劳方法&#xff09; 改进方向&#xff08;点头检测疲劳&#xff09; GUI界面设计展示 前言 上次博客我们讲到了如何定位人脸&#xff0c;并且在人脸上进行关键点定位。其中包括5点定位和68点定…

交换机的工作原理

局域网交换技术是数据链路层上的技术&#xff0c;就是转发数据帧。在数据通信中&#xff0c;所有交换设备都执行两个基本操作&#xff1a; 交换数据帧生成并维护交换地址表 交换数据帧 交换机根据数据帧的MAC地址&#xff08;物理地址&#xff09;进行数据帧的转发操作。交换…

Stable Diffusion 入门

Stable Diffusion 入门 简介 稳定扩散&#xff08;Stable Diffusion&#xff09;是一种用于解决基于图论的问题的算法。在许多实际场景中&#xff0c;我们需要对图中的节点进行扩散&#xff0c;以便发现节点之间的关联性和信息传播路径。稳定扩散算法通过模拟节点之间的信息传…

二、程序员指南:数据平面开发套件

MEMPOOL库 内存池是固定大小对象的分配器。在DPDK中&#xff0c;它由名称标识&#xff0c;并使用环形结构来存储空闲对象。它提供一些其他可选服务&#xff0c;例如每个核心的对象缓存和一个对齐辅助工具&#xff0c;以确保对象填充以将它们均匀分布在所有DRAM或DDR3通道上。 …

C# public和internal的区别

在C#中&#xff0c;internal 和 public 是访问修饰符&#xff0c;它们控制着类和类成员的可访问性。 Public public 是最常用的访问修饰符。如果一个类或类成员被声明为 public&#xff0c;那么它可以从任何其他类或者是该类的实例访问到。换句话说&#xff0c;它没有任何访问…

LINUX入门篇【6】----第一个LINUX小程序---进度条及相关知识讲解

前言&#xff1a; 本篇我们将开始尝试构建我们的第一个LINUX的小程序----进度条作为一个十分常见的程序&#xff0c;在我们之后的工程实践中也是需要多次运用&#xff0c;但是介于我们目前还没有去学习网络等方面的知识&#xff0c;没法独立的去利用程序去下载一个真正的程序&…

JAVA基础12:字符串(上)

1.API 1&#xff09;API概述 API(Application Programming Interface):应用程序编程接口 编写一个机器人程序去控制机器人踢足球&#xff0c;程序需要向机器人发出向前跑、向后跑、射门、抢球等各种命令。机器人厂商一定会提供用于控制机器人的接口类&#xff0c;这些类中定…

Devart dotConnect ADO.NET Data Providers Crack

开发数据相关 .NET 应用程序的终极解决方案&#xff1a;快速、灵活、全面、功能丰富、支持 ORM 的 ADO.NET 提供程序 概述 实体框架 连接字符串 博客 高性能 ADO.NET 数据提供程序 dotConnect 是基于 ADO.NET 架构和采用多项创新技术的开发框架构建的增强型数据连接解决方​​…

【配置环境】VS Code怎么使用JavaScript的Mocha测试框架和Chai断言库

一&#xff0c;环境 Windows 11 家庭中文版&#xff0c;64 位操作系统, 基于 x64 的处理器VS Code 版本: 1.83.1 (user setup)Node.js 版本&#xff1a;20.9.0 二&#xff0c;安装背景 在运行测试用例时遇到 ReferenceError: describe is not defined 错误&#xff0c;网上搜寻…

信息系统项目管理师 第四版 第4章 信息系统管理

1. 管理方法 1.1. 管理基础 1.2. 规划和组织 1.3. 设计和实施 1.4. 运维和服务 1.5. 优化和持续改进. 2. 管理要点 2.1. 数据管理 2.2. 运维管理 2.3. 信息安全管理

C/C++预定义宏、 #line 、#error、 #pragma和泛型选择

文章目录 预定义宏_ _func_ _是C语言的预定义标识符 #line和#error#pragma泛型选择&#xff08;C11&#xff09;参考 预定义宏 C标准规定了一些预定义宏&#xff1a; _ _func_ _是C语言的预定义标识符 C99 标准提供一个名为_ _func_ _的预定义标识符&#xff0c;它展开为一…

python3:print()打印. 2023-11-18

Python3 print ()不换行输出 import random # 导入random for i in range(10):print(random.randint(1,999), end",") #random.randint(1,999)随机返回1-999间任意一个整数,包括1和999 #print()添加end"" 自定义参数&#xff0c;实现不换行输出效果.end的…

ElasticStack日志分析平台-ES 集群、Kibana与Kafka

一、Elasticsearch 1、介绍&#xff1a; Elasticsearch 是一个开源的分布式搜索和分析引擎&#xff0c;Logstash 和 Beats 收集的数据可以存储在 Elasticsearch 中进行搜索和分析。 Elasticsearch为所有类型的数据提供近乎实时的搜索和分析&#xff1a;一旦数据被索引&#…