We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49df2b commit ea9af98Copy full SHA for ea9af98
1 file changed
src/usb/sagas.ts
@@ -461,8 +461,6 @@ function* handleUsbConnectPybricks(hotPlugDevice?: USBDevice): Generator {
461
continue;
462
}
463
464
- console.debug('Received USB message:', result.data);
465
-
466
switch (result.data.getInt8(0)) {
467
case PybricksUsbInEndpointMessageType.Response:
468
yield* put(
@@ -509,8 +507,6 @@ function* handleUsbConnectPybricks(hotPlugDevice?: USBDevice): Generator {
509
507
for (;;) {
510
508
const action = yield* take(chan);
511
512
- console.debug('Processing USB action:', action);
513
514
if (usbPybricksSubscribe.matches(action)) {
515
const message = new DataView(new ArrayBuffer(2));
516
message.setUint8(0, PybricksUsbOutEndpointMessageType.Subscribe);
0 commit comments