STEPBYSTEP设计一个USB调试助手之十二:实现标准请求SETUP模板填充

原创 嵌入式Lee 2024-04-16 08:00

一. 前言

前面我们已经实现了控制传输并进行了测试,但是每次8字节的SETUP内容都需要手动填入,一般可能记不住需要去翻规格书,所以我们可以优化下UI,实现对于标准请求可以设定提示,根据提示进行设置。我们通过子窗口来实现,需要将子窗口中设置的SETUP返回到主窗口中。以上子窗口和主窗口的信息交互我们通过信号槽来实现。

.UI设计

2.1创建类

文件->New File... 按照如下添加WidgetForm

2.2 设计UI

Form.ui设计如下

ui文件内容如下


<ui version="4.0"> <class>Formclass> <widget class="QWidget" name="Form"> <property name="geometry"> <rect> <x>0x> <y>0y> <width>673width> <height>377height> rect> property> <property name="windowTitle"> <string>Formstring> property> <layout class="QVBoxLayout" name="verticalLayout" stretch="10,0,0,0"> <item> <layout class="QGridLayout" name="gridLayout" rowstretch="1,0,0" columnstretch="3,0,0,0,0,0,0"> <item row="1" column="4"> <widget class="QLineEdit" name="lineEdit_2"/> item> <item row="0" column="6"> <widget class="QLabel" name="label_5"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>wLengthstring> property> widget> item> <item row="1" column="0"> <layout class="QGridLayout" name="gridLayout_2"> <item row="0" column="1"> <widget class="QLabel" name="label_6"> <property name="text"> <string>Typestring> property> widget> item> <item row="0" column="0"> <widget class="QLabel" name="label_7"> <property name="text"> <string>Directionstring> property> widget> item> <item row="0" column="2"> <widget class="QLabel" name="label_8"> <property name="text"> <string>Recipientstring> property> widget> item> <item row="1" column="0"> <widget class="QComboBox" name="comboBox"/> item> <item row="1" column="1"> <widget class="QComboBox" name="comboBox_3"/> item> <item row="1" column="2"> <widget class="QComboBox" name="comboBox_4"/> item> layout> item> <item row="0" column="1"> <widget class="QLabel" name="label_2"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>bRequeststring> property> widget> item> <item row="0" column="2"> <widget class="QLabel" name="label_3"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>wValue_Lstring> property> widget> item> <item row="1" column="2"> <widget class="QLineEdit" name="lineEdit"/> item> <item row="0" column="4"> <widget class="QLabel" name="label_4"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>wIndex_Lstring> property> widget> item> <item row="0" column="3"> <widget class="QLabel" name="label_9"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>wValue_Hstring> property> widget> item> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>bmRequestTypestring> property> widget> item> <item row="1" column="6"> <widget class="QLineEdit" name="lineEdit_3"/> item> <item row="0" column="5"> <widget class="QLabel" name="label_10"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> <horstretch>0horstretch> <verstretch>0verstretch> sizepolicy> property> <property name="text"> <string>wIndex_Hstring> property> widget> item> <item row="1" column="1"> <widget class="QComboBox" name="comboBox_2"/> item> <item row="1" column="5"> <widget class="QLineEdit" name="lineEdit_5"/> item> <item row="1" column="3"> <widget class="QLineEdit" name="lineEdit_4"/> item> layout> item> <item> <widget class="QLabel" name="label_11"> <property name="text"> <string>提示string> property> widget> item> <item> <widget class="QTextEdit" name="textEdit"/> item> <item> <widget class="QPushButton" name="pushButton"> <property name="text"> <string>确认string> property> widget> item> layout> widget> <resources/> <connections/>ui>

.交互

3.1 信号槽实现子窗口返回数据到主窗口

Form.h

类中添加信号函数

signals:void sendData(QString data);

Form.cpp中添加确认按键处理,发送信号数据

void Form::on_pushButton_clicked(){    QString str = "800600020000FE00";
QByteArray setup_data; setup_data.resize(8); uint8_t Direction = ui->comboBox->currentIndex(); uint8_t Type = ui->comboBox_3->currentIndex(); uint8_t Recipient = ui->comboBox_4->currentIndex(); uint8_t bRequest = ui->comboBox_2->currentIndex(); uint8_t wValue_L = ui->lineEdit->text().toUInt(); uint8_t wValue_H = ui->lineEdit_4->text().toUInt(); uint8_t wIndex_L = ui->lineEdit_2->text().toUInt(); uint8_t wIndex_H = ui->lineEdit_5->text().toUInt(); uint16_t wLength = ui->lineEdit_3->text().toUInt();
setup_data[0] = (uint8_t)(Direction<<7) | (uint8_t)(Type<<4) | (uint8_t)(Recipient<<0); setup_data[1] = bRequest; setup_data[2] = wValue_L; setup_data[3] = wValue_H; setup_data[4] = wIndex_L; setup_data[5] = wIndex_H; setup_data[6] = wLength & 0xFF; setup_data[7] = (wLength>>8) & 0xFF;
str = ByteArrayToHexString(setup_data); emit sendData(str); this->close();}

主窗口类中添加成员

QWidget *setupform;

添加信号槽

private slots:    void reshow_setup(QString);

主窗口构造函数处,new Form实例,链接信号和槽

    setupform = new Form;connect(setupform,SIGNAL(sendData(QString)),this,SLOT(reshow_setup(QString)));

主窗口实现槽处理

void MainWindow::reshow_setup(QString str){    this->show();    ui->textEdit_5->setText(str);}

3.2 子窗口初始化

form.cpp

构造函数初始化如下,设置默认参数

Form::Form(QWidget *parent)    : QWidget(parent)    , ui(new Ui::Form){    ui->setupUi(this);
ui->comboBox->clear(); ui->comboBox->addItems(QStringList("0=Host-to-device")); ui->comboBox->addItems(QStringList("1=Device-to-host")); ui->comboBox->setCurrentIndex(1);
ui->comboBox_3->clear(); ui->comboBox_3->addItems(QStringList("0=Standard")); ui->comboBox_3->addItems(QStringList("1=Class")); ui->comboBox_3->addItems(QStringList("2=Vendor")); ui->comboBox_3->addItems(QStringList("3=Reserved")); ui->comboBox_3->setCurrentIndex(0);
ui->comboBox_4->clear(); ui->comboBox_4->addItems(QStringList("0=Device")); ui->comboBox_4->addItems(QStringList("1=Interface")); ui->comboBox_4->addItems(QStringList("2=Endpoint")); ui->comboBox_4->addItems(QStringList("3=Other")); ui->comboBox_4->setCurrentIndex(0);
ui->comboBox_2->clear(); ui->comboBox_2->addItems(QStringList("0=GET_STATUS")); ui->comboBox_2->addItems(QStringList("1=CLEAR_FEATURE")); ui->comboBox_2->addItems(QStringList("2=Reserved")); ui->comboBox_2->addItems(QStringList("3=SET_FEATURE")); ui->comboBox_2->addItems(QStringList("4=Reserved")); ui->comboBox_2->addItems(QStringList("5=SET_ADDRESS")); ui->comboBox_2->addItems(QStringList("6=GET_DESCRIPTOR")); ui->comboBox_2->addItems(QStringList("7=SET_DESCRIPTOR")); ui->comboBox_2->addItems(QStringList("8=GET_CONFIGURATION")); ui->comboBox_2->addItems(QStringList("9=SET_CONFIGURATION")); ui->comboBox_2->addItems(QStringList("10=GET_INTERFACE")); ui->comboBox_2->addItems(QStringList("11=SET_INTERFACE")); ui->comboBox_2->addItems(QStringList("12=SYNCH_FRAME")); ui->comboBox_2->setCurrentIndex(6);
ui->textEdit->setText(QString("wValue_L:填描述符索引\n")+ QString("wValue_H:填描述符类型\n")+ QString("DEVICE=1,CONFIGURATION=2,STRING=3,INTERFACE=4,ENDPOINT=5,DEVICE_QUALIFIER=6,OTHER_SPEED_CONFIGURATION=7,INTERFACE_POWER=8\n")+ QString("wIndex:填0/语言ID(04 09)\n")+ QString("wLength:填描述符长度")); ui->lineEdit_3->setText("255");
ui->lineEdit->setText("0"); ui->lineEdit_4->setText("0"); ui->lineEdit_2->setText("0"); ui->lineEdit_5->setText("0"); ui->lineEdit_3->setText("255");}

3.3 setup自动设置

bRequest为准进行解析

void Form::on_comboBox_2_activated(int index){    //uint8_t bRequest = ui->comboBox_2->currentIndex();    switch(index)    {    case 0:        /* GET_STATUS */        ui->comboBox->setCurrentIndex(1);        ui->textEdit->setText("wIndex_L:填0/接口号/端点号");        ui->lineEdit_3->setText("2");    break;    case 1:        /* CLEAR_FEATURE */        ui->comboBox->setCurrentIndex(0);        ui->comboBox_3->setCurrentIndex(0);        ui->textEdit->setText(QString("wIndex_L:填0/接口号/端点号\n")+                              QString("wValue_L:\n")+                              QString("ENDPOINT_HALT=0(Recipient:Endpoint),\n")+                              QString("DEVICE_REMOTE_WAKEUP=1(Recipient:Device),\n")+                              QString("TEST_MODE=2(Recipient:Device)"));        ui->lineEdit_3->setText("0");    break;    case 3:        /* SET_FEATURE */        ui->comboBox->setCurrentIndex(0);        ui->comboBox_3->setCurrentIndex(0);        ui->textEdit->setText(QString("wIndex_L:填0/接口号/端点号\n")+                              QString("wValue_L:")+                              QString("ENDPOINT_HALT=0(Recipient:Endpoint),\n")+                              QString("DEVICE_REMOTE_WAKEUP=1(Recipient:Device),\n")+                              QString("TEST_MODE=2(Recipient:Device)"));        ui->lineEdit_3->setText("0");    break;    case 5:        /* SET_ADDRESS */        ui->comboBox->setCurrentIndex(0);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(0);        ui->textEdit->setText("wValue_L:填地址");        ui->lineEdit_3->setText("0");    break;    case 6:        /* GET_DESCRIPTOR */        ui->comboBox->setCurrentIndex(1);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(0);        ui->textEdit->setText(QString("wValue_L:填描述符索引\n")+                              QString("wValue_H:填描述符类型\n")+                              QString("DEVICE=1,CONFIGURATION=2,STRING=3,INTERFACE=4,ENDPOINT=5,DEVICE_QUALIFIER=6,OTHER_SPEED_CONFIGURATION=7,INTERFACE_POWER=8\n")+                              QString("wIndex:填0/语言ID(04 09)\n")+                              QString("wLength:填描述符长度"));        ui->lineEdit_3->setText("255");    break;    case 7:        /* SET_DESCRIPTOR */        ui->comboBox->setCurrentIndex(0);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(0);        ui->textEdit->setText(QString("wValue_L:填描述符索引\n")+                              QString("wValue_H:填描述符类型\n")+                              QString("DEVICE=1,CONFIGURATION=2,STRING=3,INTERFACE=4,ENDPOINT=5,DEVICE_QUALIFIER=6,OTHER_SPEED_CONFIGURATION=7,INTERFACE_POWER=8\n")+                              QString("wIndex:填0/语言ID(04 09)\n")+                              QString("wLength:填描述符长度"));    break;    case 8:        /* GET_CONFIGURATION*/        ui->comboBox->setCurrentIndex(1);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(0);        ui->textEdit->setText(QString("wValue:填0\n")+                              QString("wIndex:填0\n")+                              QString("wLength:填1"));        ui->lineEdit_3->setText("1");    break;    case 9:        /* SET_CONFIGURATION*/        ui->comboBox->setCurrentIndex(0);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(0);        ui->textEdit->setText(QString("wValue_L:填配置值\n")+                              QString("wIndex:填0\n")+                              QString("wLength:填0"));        ui->lineEdit_3->setText("0");    break;    case 10:        /* GET_INTERFACE */        ui->comboBox->setCurrentIndex(1);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(1);        ui->textEdit->setText(QString("wValue:填0\n")+                              QString("wIndex_L:填接口号\n")+                              QString("wLength:填1"));        ui->lineEdit_3->setText("1");    break;    case 11:        /* SET_INTERFACE */        ui->comboBox->setCurrentIndex(0);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(1);        ui->textEdit->setText(QString("wValue_L:填Alternate Setting\n")+                                      QString("wIndex_L:填接口号\n")+                                  QString("wLength:填0"));                              ui->lineEdit_3->setText("0");    break;    case 12:        /* GET_INTERFACE */        ui->comboBox->setCurrentIndex(1);        ui->comboBox_3->setCurrentIndex(0);        ui->comboBox_4->setCurrentIndex(2);        ui->textEdit->setText(QString("wValue:填0\n")+                                      QString("wIndex_L:填端点号\n")+                                  QString("wLength:填2\n")+                                  QString("Data:填2字节Frame Number"));        ui->lineEdit_3->setText("2");    break;    }}

.测试

setup设置,进入子窗口

根据提示获取设备描述符,再点击确认

点击开始获取设备描述符

测试获取配置描述符

测试获取字符串描述符

.总结

以上实现了标准请求的解析和提示,可以方便用户使用进行测试控制传输的标准请求,后面还可以继续完善除了标准请求的其他请求。


评论
  • 故障现象 一辆2007款法拉利599 GTB车,搭载6.0 L V12自然吸气发动机(图1),累计行驶里程约为6万km。该车因发动机故障灯异常点亮进厂检修。 图1 发动机的布置 故障诊断接车后试车,发动机怠速轻微抖动,发动机故障灯长亮。用故障检测仪检测,发现发动机控制单元(NCM)中存储有故障代码“P0300 多缸失火”“P0309 气缸9失火”“P0307 气缸7失火”,初步判断发动机存在失火故障。考虑到该车使用年数较长,决定先使用虹科Pico汽车示波器进行相对压缩测试,以
    虹科Pico汽车示波器 2025-01-15 17:30 43浏览
  • 百佳泰特为您整理2025年1月各大Logo的最新规格信息,本月有更新信息的logo有HDMI、Wi-Fi、Bluetooth、DisplayHDR、ClearMR、Intel EVO。HDMI®▶ 2025年1月6日,HDMI Forum, Inc. 宣布即将发布HDMI规范2.2版本。新规范将支持更高的分辨率和刷新率,并提供更多高质量选项。更快的96Gbps 带宽可满足数据密集型沉浸式和虚拟应用对传输的要求,如 AR/VR/MR、空间现实和光场显示,以及各种商业应用,如大型数字标牌、医疗成像和
    百佳泰测试实验室 2025-01-16 15:41 50浏览
  • 晶台光耦KL817和KL3053在小家电产品(如微波炉等)辅助电源中的广泛应用。具备小功率、高性能、高度集成以及低待机功耗的特点,同时支持宽输入电压范围。▲光耦在实物应用中的产品图其一次侧集成了交流电压过零检测与信号输出功能,该功能产生的过零信号可用于精确控制继电器、可控硅等器件的过零开关动作,从而有效减小开关应力,显著提升器件的使用寿命。通过高度的集成化和先进的控制技术,该电源大幅减少了所需的外围器件数量,不仅降低了系统成本和体积,还进一步增强了整体的可靠性。▲电路示意图该电路的过零检测信号由
    晶台光耦 2025-01-16 10:12 40浏览
  • 全球领先的光学解决方案供应商艾迈斯欧司朗(SIX:AMS)近日宣布,与汽车技术领先者法雷奥合作,采用创新的开放系统协议(OSP)技术,旨在改变汽车内饰照明方式,革新汽车行业座舱照明理念。结合艾迈斯欧司朗开创性的OSIRE® E3731i智能LED和法雷奥的动态环境照明系统,两家公司将为车辆内饰设计和功能设立一套全新标准。汽车内饰照明的作用日益凸显,座舱设计的主流趋势应满足终端用户的需求:即易于使用、个性化,并能提供符合用户生活方式的清晰信息。因此,动态环境照明带来了众多新机遇。智能LED的应用已
    艾迈斯欧司朗 2025-01-15 19:00 49浏览
  • 电竞鼠标应用环境与客户需求电竞行业近年来发展迅速,「鼠标延迟」已成为决定游戏体验与比赛结果的关键因素。从技术角度来看,传统鼠标的延迟大约为20毫秒,入门级电竞鼠标通常为5毫秒,而高阶电竞鼠标的延迟可降低至仅2毫秒。这些差异看似微小,但在竞技激烈的游戏中,尤其在对反应和速度要求极高的场景中,每一毫秒的优化都可能带来致胜的优势。电竞比赛的普及促使玩家更加渴望降低鼠标延迟以提升竞技表现。他们希望通过精确的测试,了解不同操作系统与设定对延迟的具体影响,并寻求最佳配置方案来获得竞技优势。这样的需求推动市场
    百佳泰测试实验室 2025-01-16 15:45 55浏览
  • 数字隔离芯片是现代电气工程师在进行电路设计时所必须考虑的一种电子元件,主要用于保护低压控制电路中敏感电子设备的稳定运行与操作人员的人身安全。其不仅能隔离两个或多个高低压回路之间的电气联系,还能防止漏电流、共模噪声与浪涌等干扰信号的传播,有效增强电路间信号传输的抗干扰能力,同时提升电子系统的电磁兼容性与通信稳定性。容耦隔离芯片的典型应用原理图值得一提的是,在电子电路中引入隔离措施会带来传输延迟、功耗增加、成本增加与尺寸增加等问题,而数字隔离芯片的目标就是尽可能消除这些不利影响,同时满足安全法规的要
    华普微HOPERF 2025-01-15 09:48 119浏览
  • 近期,智能家居领域Matter标准的制定者,全球最具影响力的科技联盟之一,连接标准联盟(Connectivity Standards Alliance,简称CSA)“利好”频出,不仅为智能家居领域的设备制造商们提供了更为快速便捷的Matter认证流程,而且苹果、三星与谷歌等智能家居平台厂商都表示会接纳CSA的Matter认证体系,并计划将其整合至各自的“Works with”项目中。那么,在本轮“利好”背景下,智能家居的设备制造商们该如何捉住机会,“掘金”万亿市场呢?重认证快通道计划,为家居设备
    华普微HOPERF 2025-01-16 10:22 72浏览
  • 随着智慧科技的快速发展,智能显示器的生态圈应用变得越来越丰富多元,智能显示器不仅仅是传统的显示设备,透过结合人工智能(AI)和语音助理,它还可以成为家庭、办公室和商业环境中的核心互动接口。提供多元且个性化的服务,如智能家居控制、影音串流拨放、实时信息显示等,极大提升了使用体验。此外,智能家居系统的整合能力也不容小觑,透过智能装置之间的无缝连接,形成了强大的多元应用生态圈。企业也利用智能显示器进行会议展示和多方远程合作,大大提高效率和互动性。Smart Display Ecosystem示意图,作
    百佳泰测试实验室 2025-01-16 15:37 45浏览
  • 实用性高值得收藏!! (时源芯微)时源专注于EMC整改与服务,配备完整器件 TVS全称Transient Voltage Suppre,亦称TVS管、瞬态抑制二极管等,有单向和双向之分。单向TVS 一般应用于直流供电电路,双向TVS 应用于电压交变的电路。在直流电路的应用中,TVS被并联接入电路中。在电路处于正常运行状态时,TVS会保持截止状态,从而不对电路的正常工作产生任何影响。然而,一旦电路中出现异常的过电压,并且这个电压达到TVS的击穿阈值时,TVS的状态就会
    时源芯微 2025-01-16 14:23 71浏览
  • 一个易用且轻量化的UI可以大大提高用户的使用效率和满意度——通过快速启动、直观操作和及时反馈,帮助用户快速上手并高效完成任务;轻量化设计则可以减少资源占用,提升启动和运行速度,增强产品竞争力。LVGL(Light and Versatile Graphics Library)是一个免费开源的图形库,专为嵌入式系统设计。它以轻量级、高效和易于使用而著称,支持多种屏幕分辨率和硬件配置,并提供了丰富的GUI组件,能够帮助开发者轻松构建出美观且功能强大的用户界面。近期,飞凌嵌入式为基于NXP i.MX9
    飞凌嵌入式 2025-01-16 13:15 61浏览
我要评论
0
点击右上角,分享到朋友圈 我知道啦
请使用浏览器分享功能 我知道啦