Receiving data from a USB device in C or C++

后端 未结 5 499
夕颜
夕颜 2021-02-01 09:05

I need a list of all plugged in USB devices and have the user select one to let the console application receive any data the USB device sends.

I can then start playing a

5条回答
  •  鱼传尺愫
    2021-02-01 09:34

    I simply need a list of all plugged in USB devices and have the user select one to let the console application receive any data the USB device sends.

    Getting the list isn't the big problem, it's receiving the data.

    I know you don't want to write a driver, but this is what drivers do: receive data from a device.

提交回复
热议问题