代码拉取完成,页面将自动刷新
同步操作将从 vtor3478/vtor_elec_module 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef __VTOR_I2C_H_
#define __VTOR_I2C_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "vtor_elec_module_config.h"
#ifdef __VTOR_I2C__
typedef enum
{
VTOR_I2C_STATE_OK = 0x00U,
VTOR_I2C_STATE_ERROR = 0x01U,
VTOR_I2C_STATE_BUSY = 0x02U,
VTOR_I2C_STATE_TIMEOUT = 0x03U,
VTOR_I2C_STATE_DEV_ADDR_NAK = 0x04U,
VTOR_I2C_STATE_DEV_REG_NAK = 0x05U,
VTOR_I2C_STATE_DEV_DATA_NAKE = 0x06U,
}VTOR_I2C_State;
typedef enum
{
GPIO_DIR_OUTPUT = 0x00U,
GPIO_DIR_INPUT = 0x01U,
}GPIO_DirTypeDef;
typedef struct
{
uint8_t reserve;
}VtorI2c;
void VtorI2c_Delay(uint32_t tick);
#define GPIO_LEVEL_HIGH 1
#define GPIO_LEVEL_LOW 0
#define GPIO_DIR_INPUT 1
#define GPIO_DIR_OUTPUT 0
void VtorI2c_Init(void);
void VtorI2c_Start(VtorI2c* i2c);
void VtorI2c_Stop(VtorI2c* i2c);
void VtorI2c_SendByte(VtorI2c* i2c, uint8_t txd);
uint8_t VtorI2c_ReadByte(VtorI2c* i2c);
uint8_t VtorI2c_WaitAck(VtorI2c* i2c);
void VtorI2c_Ack(VtorI2c* i2c);
void VtorI2c_NAck(VtorI2c* i2c);
void VtorI2c_SetSCL(VtorI2c* i2c, uint8_t level);
void VtorI2c_SetSDA(VtorI2c* i2c, uint8_t level);
uint8_t VtorI2c_ReadSDA(VtorI2c* i2c);
uint8_t VtorI2c_ReadSCL(VtorI2c* i2c);
void VtorI2c_SetSDA_Dir(VtorI2c* i2c, uint8_t dir);
uint8_t VtorI2c_ReadMem(VtorI2c* i2c, uint8_t slaveAddress, uint16_t regAddress, uint8_t regAddrLen , uint8_t* buf, uint16_t len);
uint8_t VtorI2c_WriteMem(VtorI2c* i2c, uint8_t slaveAddress, uint16_t regAddress, uint8_t regAddrLen , uint8_t* buf, uint16_t len);
uint8_t VtorI2c_CheckIo(VtorI2c* i2c);
uint8_t VtorI2c_CheckDevice(VtorI2c* i2c, uint8_t addr);
#endif // __VTOR_I2C__
#ifdef __cplusplus
}
#endif
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。