File tree 1 file changed +35
-1
lines changed
components/arduino_tinyusb
1 file changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ menu "Arduino TinyUSB"
8000
div>
59
59
60
60
config TINYUSB_MSC_BUFSIZE
61
61
int "MSC Buffer size"
62
- default 64
62
+ range 512 4096
63
+ default 512
63
64
depends on TINYUSB_MSC_ENABLED
64
65
help
65
66
MSC Buffer size
@@ -123,6 +124,39 @@ menu "Arduino TinyUSB"
123
124
124
125
endmenu
125
126
127
+ menu "VIDEO driver"
128
+ depends on TINYUSB_ENABLED
129
+
130
+ config TINYUSB_VIDEO_ENABLED
131
+ bool "Enable USB VIDEO TinyUSB driver"
132
+ default y
133
+ help
134
+ Enable USB VIDEO TinyUSB driver.
135
+
136
+ config TINYUSB_DESC_VIDEO_STRING
137
+ string "VIDEO Device String"
138
+ default "Espressif VIDEO Device"
139
+ depends on TINYUSB_VIDEO_ENABLED
140
+ help
141
+ Specify name of the VIDEO device
142
+
143
+ config TINYUSB_VIDEO_STREAMING_BUFSIZE
144
+ int "VIDEO streaming endpoint size"
145
+ range 0 64
146
+ default 64
147
+ depends on TINYUSB_VIDEO_ENABLED
148
+ help
149
+ VIDEO streaming endpoint size
150
+
151
+ config TINYUSB_VIDEO_STREAMING_IFS
152
+ int "Number of VIDEO streaming interfaces"
153
+ range 1 3
154
+ default 1
155
+ depends on TINYUSB_VIDEO_ENABLED
156
+ help
157
+ The number of VIDEO streaming interfaces
158
+ endmenu
159
+
126
160
menu "DFU Runtime driver"
127
161
depends on TINYUSB_ENABLED
128
162
You can’t perform that action at this time.
0 commit comments