Implementing USB-C Source functionality can be difficult. This sample application serves as an example of how to create an application with Power Delivery Source functionality. Signed-off-by: Sam Hurst <sbh1187@gmail.com>
8 lines
209 B
CMake
8 lines
209 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(usb_c_sink)
|
|
|
|
target_sources(app PRIVATE src/main.c src/power_ctrl.c)
|