You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[...省略]/*Summary Recursive routine populates EndPointsComboBox with strings representing all the endpoints in the device.*/privatevoidGetEndpointsOfNode(TreeNodedevTree){EndPointsComboBox.Items.Clear();// 这里会清除之前的节点,导致只留下了最后的Alt6节点foreach(TreeNodenodeindevTree.Nodes){if(node.Nodes.Count>0)GetEndpointsOfNode(node);// 递归else{CyUSBEndPointept=node.TagasCyUSBEndPoint;if(ept==null){//return;}elseif(!node.Text.Contains("Control")){CyUSBInterfaceifc=node.Parent.TagasCyUSBInterface;strings=string.Format("ALT-{0}, {1} Byte {2}",ifc.bAlternateSetting,ept.MaxPktSize,node.Text);EndPointsComboBox.Items.Add(s);}}}}[...省略]
自动选择接口描述符流程
[...省略]/*Summary Search the device with VID-PID 04b4-00F1 and if found, select the end point*/privatevoidSetDevice(boolbPreserveSelectedDevice){[...省略]
PpxBox.Text="16";//Set default value to 8 PacketsQueueBox.Text="8";if(EndPointsComboBox.Items.Count>0){/** * ALT-6, 1024 Byte Isoc in endpoint (0x82) * ALT-6, 1024 Byte Isoc out endpoint (0x06) */EndPointsComboBox.SelectedIndex=0;// 设置索引,会自动触发对应的事件StartBtn.Enabled=true;}elseStartBtn.Enabled=false;[...省略]}[...省略]/*Summary This is a system event handler, when the selected index changes(end point selection).*/privatevoidEndPointsComboBox_SelectedIndexChanged(objectsender,EventArgse){// Get the Alt setting// EndPointsComboBox.Text = "ALT-6, 1024 Byte Isoc in endpoint (0x82)"stringsAlt=EndPointsComboBox.Text.Substring(4,1);bytea=Convert.ToByte(sAlt);MyDevice.AltIntfc=a;// a = 6// Get the endpointintaX=EndPointsComboBox.Text.LastIndexOf("0x");stringsAddr=EndPointsComboBox.Text.Substring(aX,4);byteaddr=(byte)Util.HexToInt(sAddr);EndPoint=MyDevice.EndPointOf(addr);// Ensure valid PPX for this endpointPpxBox_SelectedIndexChanged(sender,null);}[...省略]