File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ this WebUSB serial console at any time.
21
21
22
22
You can type into either console, and CircuitPython output is sent to all active consoles.
23
23
24
+ One example of a web page you can use to test drive this feature can be found at:
25
+
26
+ https://adafruit.github.io/Adafruit_TinyUSB_Arduino/examples/webusb-serial/index.html
27
+
28
+
24
29
## How to enable
25
30
26
31
Update your platform's mpconfigboard.mk file to enable and disable specific types of USB interfaces.
@@ -44,7 +49,7 @@ CIRCUITPY_USB_HID = 0
44
49
CIRCUITPY_USB_MIDI = 0
45
50
CIRCUITPY_USB_VENDOR = 1
46
51
47
- Notice that to enable VENDOR, we had to give up HID. There may be platforms that can have both.
52
+ Notice that to enable VENDOR on ESP32-S2 , we had to give up HID. There may be platforms that can have both, or even all three .
48
53
49
54
## Implementation Notes
50
55
@@ -73,7 +78,7 @@ genhdr/autogen_usb_descriptor.h.
73
78
74
79
Also worth pointing out - the re-use of the CDC connect/disconnect mechanism is not actually part
75
80
of the WebUSB standard, it's more of "common idiom". We make use of it here because we need to know
76
- when we should be paying attention to the WebUSB serial interface,and when we should ignore it..
81
+ when we should be paying attention to the WebUSB serial interface, and when we should ignore it..
77
82
78
83
## Possible future work areas
79
84
You can’t perform that action at this time.
0 commit comments