17 lines
289 B
CMake
17 lines
289 B
CMake
# LISA ADC Driver Example
|
|
#
|
|
# Copyright (c) 2025, LISTENAI
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_LISA_ADC)
|
|
|
|
listenai_library_named(lisa_adc)
|
|
|
|
listenai_library_sources(
|
|
lisa_adc_arcs.c # 平台适配层实现
|
|
)
|
|
|
|
listenai_include_directories(.)
|
|
|
|
endif() # CONFIG_LISA_ADC
|