25 lines
555 B
C
25 lines
555 B
C
|
/*
|
||
|
* File : drv_iic.c
|
||
|
* This file is part of RT-Thread RTOS
|
||
|
* COPYRIGHT (C) 2017 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
|
||
|
* 2017-06-05 tanek first implementation.
|
||
|
*/
|
||
|
|
||
|
#ifndef STM32F4XX_IIC_INCLUDED
|
||
|
#define STM32F4XX_IIC_INCLUDED
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <drivers/spi.h>
|
||
|
|
||
|
#include "stm32f4xx_hal.h"
|
||
|
|
||
|
|
||
|
#endif // STM32F20X_40X_SPI_H_INCLUDED
|