瀏覽代碼

Query device status, idVendor and idProduct

main
PaulStoffregen 7 年之前
父節點
當前提交
adc8a3239f
共有 1 個檔案被更改,包括 3 行新增0 行删除
  1. +3
    -0
      USBHost_t36.h

+ 3
- 0
USBHost_t36.h 查看文件

@@ -322,6 +322,9 @@ protected:
// All USB device drivers inherit from this base class.
class USBDriver : public USBHost {
public:
operator bool() { return (device != nullptr); }
uint16_t idVendor() { return (device != nullptr) ? device->idVendor : 0; }
uint16_t idProduct() { return (device != nullptr) ? device->idProduct : 0; }
// TODO: user-level functions
// check if device is bound/active/online
// query vid, pid

Loading…
取消
儲存