16 lines
345 B
C
16 lines
345 B
C
/*
|
|
* iic.h
|
|
*
|
|
* Created on: Oct 24, 2021
|
|
* Author: wuwenfeng
|
|
*/
|
|
|
|
#ifndef IIC_H_
|
|
#define IIC_H_
|
|
|
|
#include "main.h"
|
|
void IIC_SAND_DATE(unsigned char DEVICE_ADD,unsigned char IN_DEVICE_ADD,char *DATAS,uint16_t LONG);
|
|
void IIC_READ_DATE(unsigned char DEVICE_ADD,unsigned char IN_DEVICE_ADD,char *DATAS,uint16_t LONG);
|
|
|
|
#endif /* IIC_H_ */
|