Yichen Zhao
Yichen Zhao
It's different from serial port communication. So I didn't implement it using dart. If you can use C++: Please see [How to get USB vendor and product Id programmatically in...
I will try to support the feature in next version. But I find that win32 package does't support function SetupDiGetDeviceInstanceIdW for now. Please refer to [issue](https://github.com/timsneath/win32/issues/495)
Do you mean USB HID? USB HID is different from the COM port or virtual com port. They use different win32 APIs. The serial port is just a COM port...
What is the size of your data?If data is large, **higher** baudrate is better. And async functions may be delayed due to other program. There some para which you can...
@Abduraimbek I test the barcode data with virtual serial port driver. I send data from COM6. Then I can get data immediately in COM5. The delay is about max 10ms....
I have change code to improve read performance. Now read latency drops. Updates will be released in version `1.2.0`
Emm... I think it's due to open function in tap property. Hot reload may reload open function again. But you have opened this port or you don't have any available...
How much data do you read at a time? Maybe: 1. I just translated C++ code to dart interface. But win32 package is a little different from Win32 API. The...
@nirmalaranawat @Zopenzop I can get data correctly even though data size is larger than transmited by MCU. Do you have any small code example? Now I update all dependcies to...
> @FengChendian At a time I receive 8-10 bytes of data. Also, if ReadIntervalTimeout, ReadTotalTimeoutConstant or ReadTotalTimeoutMultiplier are not suitable for my project, should I fork this repo and get...