#include
#include // ioctl
#include // 打开
#include // 读/写 usleep
#include <时间.h>
#include tinet/in.h> // htons
#include
#include "smbus.h"
#define ADDRESS 0x53 // AT24C32 在 I2C 总线上的地址
诠释主要(){
诠释;
if ((fd = open("/dev/i2c-2", O_RDWR)) < 0) { printf("无法打开设备!%dn", fd); 返回 1;}
if (ioctl(fd, I2C_SLAVE, ADDRESS) < 0) { printf("在地址上找不到设备!n"); 返回 1;}
写(fd,0x0000,0x01);
睡眠(500);
关闭(fd);
返回 0;
}
2023-1-17 09:46:57
请查看为 ST25DV-I2C 提供 Linux 用户空间驱动程序的 STSW-ST25DV007 软件包
该软件包随附用户手册,便于上手。
它必须提供您在 Linux 平台上访问 ST25DV-I2C 所需的内容。
请查看为 ST25DV-I2C 提供 Linux 用户空间驱动程序的 STSW-ST25DV007 软件包
该软件包随附用户手册,便于上手。
它必须提供您在 Linux 平台上访问 ST25DV-I2C 所需的内容。
举报