Greetings There is a usb device. The system recognized it and installed the driver. There is a dump of the device with a special program (hex codes of data exchange). Is it possible to write a C ++ program to interact with this device? What can you read about this problem?
Thanks in advance!
CreateFile("\\\\.\\DEVICE\\devicename", ...)
function and exchanging data packets usingDeviceIoControl(hDevice, ...)
. - karmadro4