20 lines
204 B
C
20 lines
204 B
C
/*
|
|
* I2C.h
|
|
*
|
|
* Created on: 21 sep. 2016
|
|
* Author: len12007
|
|
*/
|
|
|
|
#ifndef DRIVERS_I2C_H_
|
|
#define DRIVERS_I2C_H_
|
|
|
|
#include "stm32f4xx.h"
|
|
|
|
|
|
void i2c_configure(void);
|
|
|
|
|
|
|
|
|
|
#endif /* DRIVERS_I2C_H_ */
|