Add script to test hidapi stability by using readSync() calls.
This commit is contained in:
12
packages/usb/hidapi-sync-stress-test.js
Executable file
12
packages/usb/hidapi-sync-stress-test.js
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
const uhk = require('./uhk');
|
||||||
|
|
||||||
|
const device = uhk.getUhkDevice();
|
||||||
|
let counter = 1;
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
console.log(`hidapi sync test ${counter++}`);
|
||||||
|
const sendData = new Buffer([uhk.usbCommands.getProperty, uhk.systemPropertyIds.hardwareConfigSize]);
|
||||||
|
device.write(uhk.getTransferData(sendData));
|
||||||
|
device.readSync()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user