The backend uses a new USB device stack and bulk endpoints. Only a single instance of the backend function is currently supported. Both DAP packet processing and the new backend are prepared to support multiple instances, but require a user interface and minor modifications. New backen has similar functionality to what is provided by the function in the sample samples/subsys/dap. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
10 lines
267 B
CMake
10 lines
267 B
CMake
# Copyright (c) 2019, PHYTEC Messtechnik GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
zephyr_library()
|
|
zephyr_library_sources(cmsis_dap.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_DAP_BACKEND_USB dap_backend_usb.c)
|