usb
This commit is contained in:
@@ -441,8 +441,8 @@ PICout operator<<(PICout s, const PIUSB::Endpoint & v) {
|
|||||||
|
|
||||||
PIString PIUSB::constructFullPathDevice() const {
|
PIString PIUSB::constructFullPathDevice() const {
|
||||||
PIString ret;
|
PIString ret;
|
||||||
ret << PIString::fromNumber(vendorID(), 16).toLowerCase() << ":" << PIString::fromNumber(productID(), 16).toLowerCase() << ":"
|
ret = PIString::fromNumber(vendorID(), 16).toLowerCase() + ":" + PIString::fromNumber(productID(), 16).toLowerCase() + ":" +
|
||||||
<< deviceNumber() << ":" << endpointRead().address << ":" << endpointWrite().address;
|
deviceNumber() + ":" + endpointRead().address + ":" + endpointWrite().address;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user