:orphan: .. title:: USB_DFU_WAIT_DELAY_MS .. option:: CONFIG_USB_DFU_WAIT_DELAY_MS *wait_for_usb_dfu() timeout* Type: ``int`` Help ==== A thread can use wait_for_usb_dfu() call for wait a prescribed time (in ms) for DFU to begin Direct dependencies =================== \ :option:`USB_DFU_CLASS ` && \ :option:`USB_DEVICE_STACK ` *(Includes any dependencies from ifs and menus.)* Default ======= - 12000 Kconfig definition ================== .. highlight:: kconfig At ``subsys/usb/class/dfu/Kconfig:21`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:45`` → ``subsys/usb/Kconfig:144`` → ``subsys/usb/class/Kconfig:140`` Menu path: (Top) → Sub Systems and OS Services → USB Device Support → USB DFU Class Driver .. parsed-literal:: config USB_DFU_WAIT_DELAY_MS int "wait_for_usb_dfu() timeout" range 1000 120000 default 12000 depends on \ :option:`USB_DFU_CLASS ` && \ :option:`USB_DEVICE_STACK ` help A thread can use wait_for_usb_dfu() call for wait a prescribed time (in ms) for DFU to begin *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*