ソースを参照

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

読み込み中…
キャンセル
保存