/* * Copyright (c) 2006-2023, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2023-09-24 Vandoul first version */ #ifndef __DRV_SCI_H__ #define __DRV_SCI_H__ #include #include #include "hal_data.h" #include "board.h" #include #include #include #ifdef __cplusplus extern "C" { #endif rt_err_t drv_sci_spi_device_attach(const char *bus_name, const char *device_name, rt_base_t cs_pin); #ifdef __cplusplus } #endif #endif /*__DRV_SCI_H__ */