rt-thread/bsp/gd32450z-eval/drivers/drv_spi.h

43 lines
911 B
C
Raw Normal View History

2017-08-29 19:30:21 +08:00
/*
2017-08-30 15:30:38 +08:00
* File : gd32f20x_40x_spi.h
2017-08-29 19:30:21 +08:00
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2009 RT-Thread Develop Team
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rt-thread.org/license/LICENSE
*
* Change Logs:
* Date Author Notes
* 20012-01-01 aozima first implementation.
*/
2017-08-30 15:30:38 +08:00
#ifndef gd32F20X_40X_SPI_H_INCLUDED
#define gd32F20X_40X_SPI_H_INCLUDED
2017-08-29 19:30:21 +08:00
#include <rtthread.h>
#include <drivers/spi.h>
#include "gd32f4xx.h"
2017-08-30 15:30:38 +08:00
struct gd32f4_spi
2017-08-29 19:30:21 +08:00
{
uint32_t spi_periph;
rcu_periph_enum spi_clk;
struct rt_spi_bus *spi_bus;
};
2017-08-30 15:30:38 +08:00
struct gd32_spi_cs
2017-08-29 19:30:21 +08:00
{
uint32_t GPIOx;
uint32_t GPIO_Pin;
};
/* public function */
2017-08-30 15:30:38 +08:00
rt_err_t gd32_spi_bus_register(uint32_t spi_periph,
//struct gd32_spi_bus * gd32_spi,
2017-08-29 19:30:21 +08:00
const char * spi_bus_name);
2017-08-30 15:30:38 +08:00
#endif // gd32F20X_40X_SPI_H_INCLUDED