We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f7dff commit eef5b92Copy full SHA for eef5b92
examples/device/webusb_serial/website/serial.js
@@ -174,7 +174,7 @@ class WebUsbSerialPort {
174
async _readLoop() {
175
while (this.isConnected) {
176
try {
177
- const result = await this.device.transferIn(this.endpointIn, 64);
+ const result = await this.device.transferIn(this.endpointIn, 16384);
178
if (result.data && this.onReceive) {
179
this.onReceive(result.data);
180
}
0 commit comments