30 lines
452 B
C
30 lines
452 B
C
/*
|
|
* IIC.h
|
|
*
|
|
* Created on: 2022年03月12日
|
|
* Author: User
|
|
*/
|
|
#ifndef __IIC_H
|
|
#define __IIC_H
|
|
|
|
#include <Public.h>
|
|
|
|
#define SCL_1 P0_2
|
|
#define SDA_1 P0_1
|
|
|
|
#define HIGH 1
|
|
#define LOW 0
|
|
|
|
typedef struct // IIC 结构体
|
|
{
|
|
void (*start)(void); //开启命令
|
|
void (*write)(uint8_t); //写数据命令
|
|
void (*ACK)(void); //应答命令
|
|
void (*stop)(void); //停止命令
|
|
} IIC_t;
|
|
|
|
extern IIC_t IIC_1;
|
|
|
|
|
|
#endif
|