db1fb82c18
Simple test for API rules, allocation, queue, and dequeu of the endpoint requests. USB device controller should not be connected to the host as this state is not covered by this test. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
12 lines
249 B
CMake
12 lines
249 B
CMake
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(test_udc_driver)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
)
|