8000 Update Kconfig.projbuild · Staars/esp32-arduino-lib-builder@e4394ad · GitHub
[go: up one dir, main page]

Skip to content

Commit e4394ad

Browse files
authored
Update Kconfig.projbuild
1 parent 6828cd3 commit e4394ad

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

components/arduino_tinyusb/Kconfig.projbuild

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ menu "Arduino TinyUSB"
5959

6060
config TINYUSB_MSC_BUFSIZE
6161
int "MSC Buffer size"
62-
default 64
62+
range 512 4096
63+
default 512
6364
depends on TINYUSB_MSC_ENABLED
6465
help
6566
MSC Buffer size
@@ -123,6 +124,39 @@ menu "Arduino TinyUSB"
123124

124125
endmenu
125126

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+
126160
menu "DFU Runtime driver"
127161
depends on TINYUSB_ENABLED
128162

0 commit comments

Comments
 (0)
0