幸福服饰

文章
4
资源
1
加入时间
2年10月21天

软件IIC

#ifndef __I2C_A_H#define __I2C_A_H#include "stm32f10x.h"#define I2CPORT GPIOB#define I2C_SCL GPIO_Pin_6 //时钟通信端口#define I2C_SDA GPIO_Pin_7 //数据通信端口#define SCL_HIGH() \ { \ PBout(6) = 1; \ } //时钟线置高#define SCL