1 Star 0 Fork 8

Anderson/vtor_elec_module

forked from vtor3478/vtor_elec_module 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vtor_i2c.h 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
vtor3478 提交于 2024-04-02 21:57 . 借由vtor_board_home工程,
#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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Thomas_Ti/vtor_elec_module.git
git@gitee.com:Thomas_Ti/vtor_elec_module.git
Thomas_Ti
vtor_elec_module
vtor_elec_module
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385