17 lines
306 B
CMake
17 lines
306 B
CMake
# LISA UART Driver
|
|
#
|
|
# Copyright (c) 2025, LISTENAI
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_LISA_UART_DEVICE)
|
|
|
|
listenai_library_named(lisa_uart_device)
|
|
|
|
listenai_library_sources(
|
|
lisa_uart_arcs.c # ARCS 平台适配层
|
|
)
|
|
|
|
listenai_include_directories(.)
|
|
|
|
endif() # CONFIG_LISA_UART_DEVICE
|