:orphan: .. title:: CDC_ACM_DTE_RATE_CALLBACK_SUPPORT .. option:: CONFIG_CDC_ACM_DTE_RATE_CALLBACK_SUPPORT *Support callbacks when the USB host changes the virtual baud rate* Type: ``bool`` Help ==== .. code-block:: none If set, enables support for a callback that is invoked when the remote host changes the virtual baud rate. This is used by Arduino style programmers to reset the device into the bootloader. Direct dependencies =================== \ :option:`USB_CDC_ACM ` && \ :option:`USB_DEVICE_STACK ` *(Includes any dependencies from ifs and menus.)* Default ======= - \ :option:`BOOTLOADER_BOSSA ` Kconfig definition ================== At ``/usb/class/Kconfig.cdc:53`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:49`` → ``/usb/Kconfig:153`` → ``/usb/class/Kconfig:6`` Menu path: (Top) → Sub Systems and OS Services → USB Device Support → USB CDC ACM Device Class support .. code-block:: kconfig config CDC_ACM_DTE_RATE_CALLBACK_SUPPORT bool "Support callbacks when the USB host changes the virtual baud rate" default BOOTLOADER_BOSSA depends on USB_CDC_ACM && USB_DEVICE_STACK help If set, enables support for a callback that is invoked when the remote host changes the virtual baud rate. This is used by Arduino style programmers to reset the device into the bootloader. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*