1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_sources(usb_dfu.c)
4
5if(CONFIG_USB_DEVICE_PID EQUAL CONFIG_USB_DEVICE_DFU_PID)
6  message(WARNING
7    "Run-Time and DFU Mode VID and PID are equal, which can lead to incorrect \
8    behavior on some operating systems; see DFU 1.1 Specification Ch. 2 for \
9    more details."
10    )
11endif()
12