linux下smbus的查询方式,ioctl I2C_SMBUS 实现smbus 用户态测试程序

该程序演示了如何使用Linux系统中的ioctl函数访问I2C_SMBUS,通过I2C_SLAVE与设备进行读写交互。首先打开/dev/i2c-0设备,然后设置地址,读取并写入24CXX配置寄存器,最后验证写入的数据是否正确。
摘要由CSDN通过智能技术生成

本测试程序通过 ioctl(fd, I2C_SMBUS, &ioctl_data)访问smbus。

#include #include #include #include #include #include #include

#define I2C_DEV    "/dev/i2c-0"

#define I2C_24CXX_ADDR  0x50 /* 0x58 for 0x24c64 or 0x50 for 24c128*/

#define REG_OFFSET    0x20

#define WRITE_VALUE         0x5a

#if 0

#define I2C_SMBUS_READ 1

#define I2C_SMBUS_WRITE 0

union i2c_smbus_data {

__u8 byte;

__u16 word;

__u8 block[I2C_SMBUS_BLOCK_MAX + 2]; /* block[0] is used for length */

/* and one more for user-space compatibility */

};

struct i2c_smbus_ioctl_data {

__u8 read_write;

__u8 command;

__u32 size;

union i2c_smbus_data __user *data;

};

#endif

int

main()

{

union i2c_smbus_data data;

struct i2c_smbus_ioctl_data ioctl

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值