drv_spi.h 556 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * Copyright (C) 2018 Shanghai Eastsoft Microelectronics Co., Ltd.
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author        Notes
 * 2019-03-19     wangyq        the first version
 */

#ifndef DRV_SPI_H__
#define DRV_SPI_H__

#include <rtthread.h>
#include <rthw.h>
#include <rtdevice.h>

struct es32f0_hw_spi_cs
{
    rt_uint32_t pin;
};

/* cannot be used before completion init */
rt_err_t es32f0_spi_device_attach(rt_uint32_t pin, const char *bus_name, const char *device_name);
int rt_hw_spi_init(void);

#endif