Files
agent/packages/usb/wait-for-kboot-idle.js
2018-01-31 02:25:37 +01:00

8 lines
152 B
JavaScript
Executable File

#!/usr/bin/env node
const uhk = require('./uhk');
const device = uhk.getUhkDevice();
(async function() {
await uhk.waitForKbootIdle(device);
})();