Prepare the driver to upcoming support of more mux references. Rename all TCA9546A related files to TCA954x. Keep ti,tca9546a and ti,tca9546a-channel compatible for backward compatibility reasons. New tca954x-base binding embedding common properties, tca9546a binding inherits from it and define its own compatibles fields. Signed-off-by: Aymeric Aillet <aymeric.aillet@iot.bzh>
8 lines
228 B
CMake
8 lines
228 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(i2c_tca954x)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|