当前位置: 首页 > news >正文

C# WinForms 使用 CyUSB.dll 访问 USB 设备

1:环境配置

  1. 安装驱动与 SDK
    • 安装 Cypress EZ-USB FX3 SDK(确保包含 CyUSB.dll)
    • 将 CyUSB.dll 添加到项目引用(路径示例:C:\Program Files\Cypress\Cypress USB\Tools\CyUSB\lib\CyUSB.dll
  2. 创建 WinForms 项目
    • 添加 using CyUSB;命名空间

2:核心代码实现

using System;
using System.Windows.Forms;
using CyUSB;namespace USB_Communication_Demo
{public partial class MainForm : Form{private CyUSBDeviceList usbDeviceList;  // 设备列表private CyUSBDevice connectedDevice;    // 当前设备private const int TARGET_VID = 0x0483;  // 目标设备VID(替换为实际值)private const int TARGET_PID = 0x5750;  // 目标设备PID(替换为实际值)public MainForm(){InitializeComponent();InitializeUSB();}// 初始化USB设备监控private void InitializeUSB(){usbDeviceList = new CyUSBDeviceList(CyConst.DEVICES_ALL);usbDeviceList.DeviceAttached += (s, e) => RefreshDeviceList();  // 设备插入事件usbDeviceList.DeviceRemoved += (s, e) => RefreshDeviceList();   // 设备拔出事件RefreshDeviceList();  // 初始刷新}// 刷新设备列表(UI更新)private void RefreshDeviceList(){comboBoxDevices.Invoke((MethodInvoker)delegate {comboBoxDevices.Items.Clear();foreach (CyUSBDevice dev in usbDeviceList){if (dev.VendorID == TARGET_VID && dev.ProductID == TARGET_PID){comboBoxDevices.Items.Add($"VID:{dev.VendorID:X4} PID:{dev.ProductID:X4}");}}if (comboBoxDevices.Items.Count > 0) comboBoxDevices.SelectedIndex = 0;});}// 选择设备并连接private void btnConnect_Click(object sender, EventArgs e){if (comboBoxDevices.SelectedIndex >= 0){connectedDevice = usbDeviceList[comboBoxDevices.SelectedIndex] as CyUSBDevice;if (connectedDevice.Open()){lblStatus.Text = "设备已连接";btnSend.Enabled = true;}}}// 发送数据(OUT端点)private void btnSend_Click(object sender, EventArgs e){if (connectedDevice == null) return;try{byte[] data = { 0x01, 0x02, 0x03 };  // 示例数据int outEndpoint = 0x01;               // OUT端点号(需根据设备手册调整)CyUSBEndPoint endpoint = connectedDevice.EndPointOf(outEndpoint);endpoint.XferData(data, data.Length);lblLog.AppendText("数据发送成功\n");}catch (Exception ex){lblLog.AppendText($"发送失败: {ex.Message}\n");}}// 接收数据(IN端点)private void ReceiveData(){if (connectedDevice == null) return;try{int inEndpoint = 0x81;                // IN端点号(需根据设备手册调整)CyUSBEndPoint endpoint = connectedDevice.EndPointOf(inEndpoint);byte[] buffer = new byte[64];         // 缓冲区大小需匹配设备配置int bytesRead = endpoint.XferData(ref buffer, ref 64);if (bytesRead > 0){string hexData = BitConverter.ToString(buffer, 0, bytesRead);lblLog.AppendText($"接收数据: {hexData}\n");}}catch (Exception ex){lblLog.AppendText($"接收失败: {ex.Message}\n");}}// 窗体关闭时释放资源protected override void OnFormClosing(FormClosingEventArgs e){connectedDevice?.Close();usbDeviceList.Dispose();base.OnFormClosing(e);}}
}

说明

  1. 设备枚举与热插拔
    • 通过 CyUSBDeviceList实时监控 USB 设备插入/拔出事件
    • 使用 Invoke确保 UI 更新在主线程执行(避免跨线程异常)
  2. 数据传输
    • 发送数据:通过 EndPointOf获取 OUT 端点,调用 XferData写入数据
    • 接收数据:通过轮询或事件监听(需扩展)读取 IN 端点数据
  3. 资源管理
    • 使用 Dispose()释放 USB 设备列表资源
    • 关闭设备句柄防止资源泄漏

注意

  1. VID/PID 配置
    • 替换 TARGET_VIDTARGET_PID为实际设备的值(可通过设备管理器查看)
  2. 端点号确认
    • 使用工具(如 Cypress Control Center)或设备手册验证 IN/OUT 端点号
  3. 错误处理扩展
    • 添加重试机制(如发送失败时重试 3 次)
    • 检查设备状态:if (connectedDevice.IsOpen)
  4. 数据格式
    • HID 设备需跳过报告 ID(如 buffer.Skip(1).ToArray()

参考示例:在C# Winform中使用CyUSB.dll类库访问usb口的简单示例 www.youwenfan.com/contentcsd/112191.html

扩展功能建议

  • 异步接收数据:使用 BeginInvoke实现后台接收
  • 协议解析:根据设备协议解析接收到的二进制数据
  • 日志记录:将通信记录保存到文件
http://www.dtcms.com/a/356285.html

相关文章:

  • 当不想安装telnet或nc时,可使用 Linux 系统默认自带的bash原生网络功能或ping(辅助判断)测试连通性
  • Pytest 插件:pytest_runtest_protocol
  • Dify 1.8.0 全网首发,预告发布
  • ZArchiver解压器:强大的安卓解压缩工具
  • 外缺圆圆心检测
  • 【Linux】Make/Makefile (自动化构建):从“是什么”到“会用它”
  • [Ai Agent] 本地知识库检索运用
  • 控制系统仿真之PID校正-PID校正(八)
  • 从2M到G时代:WiFi如何重塑我们的生活?
  • 人工智能之数学基础:透过频率直方图理解概率密度函数
  • 计算机网络:数据库(sqlite3)
  • 【机器学习入门】3.2 ALS算法——从评分矩阵到精准推荐的核心技术
  • OpenAI Sora深度解析:AI视频生成技术如何重塑广告电商行业?影业合作已落地
  • LeetCode100-73矩阵置零
  • windows中Qwen3‑Coder 与 Claude Code 搭配使用
  • 网络请求优化:用 Retrofit 拦截器玩转日志、重试与缓存,OkHttp 和 Volley 谁更香?
  • React前端开发_Day4
  • 华为HCIP数通学习与认证解析!
  • 基于STM32设计的智能宠物喂养系统(华为云IOT)_273
  • STM32F103C8T6的智能实验室危化品管理系统设计与华为云实现
  • Java 获取淘宝关键词搜索(item_search)API 接口实战指南
  • vue3+antd实现华为云OBS文件拖拽上传详解
  • 华为云CCE的Request和Limit
  • AI+云,双擎驱动——华为云让智能触手可及
  • Django Admin 管理工具
  • Java中协变逆变的实现与Kotlin中的区别
  • 如何用 Kotlin 在 Android 手机开发一个应用程序获取国家或地区信息
  • echo、seq、{}、date、bc命令
  • 如何用 Kotlin 在 Android 手机开发一个应用程序获取网络时间
  • OpenCV之霍夫变换