diff --git a/packages/usb/hidapi-sync-stress-test.js b/packages/usb/hidapi-sync-stress-test.js new file mode 100755 index 00000000..99667fc2 --- /dev/null +++ b/packages/usb/hidapi-sync-stress-test.js @@ -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() +}