1# Copyright (c) 2016-2023 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4module = NRF_USBD_COMMON 5module-str = nRF USBD common 6source "subsys/logging/Kconfig.template.log_config" 7 8config NRF_USBD_COMMON 9 bool "USBD driver" 10 depends on HAS_NRFX 11 depends on $(dt_has_compat,$(DT_COMPAT_NORDIC_NRF_USBD)) 12 13config NRF_USBD_ISO_IN_ZLP 14 bool "Send ZLP on ISO IN when not ready" 15 depends on NRF_USBD_COMMON 16 default y 17 help 18 Controls the response of the ISO IN endpoint to an IN token when no 19 data is ready to be sent. When enabled, ZLP is sent when no data is 20 ready. When disabled, no response is sent (bus timeout occurs). 21