rt-thread-official/bsp/lpc55sxx/Libraries/drivers/drv_spi.h

17 lines
329 B
C
Raw Normal View History

2019-10-24 17:56:09 +08:00
/*
2021-03-17 02:26:35 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2019-10-24 17:56:09 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*/
2021-03-17 02:26:35 +08:00
#ifndef __DRV_SPI_H__
#define __DRV_SPI_H__
#include <rtthread.h>
#include <rtdevice.h>
2019-10-24 17:56:09 +08:00
int rt_hw_spi_init(void);
2021-03-17 02:26:35 +08:00
rt_err_t lpc_spi_bus_attach_device(const char *bus_name, const char *device_name, rt_uint32_t pin);
2019-10-24 17:56:09 +08:00
#endif