专题8-I2C驱动程序设计-第5课-I2C自编设备驱动设计


1、概述

专题8-I2C驱动程序设计-第5课-I2C自编设备驱动设计

专题8-I2C驱动程序设计-第5课-I2C自编设备驱动设计

 

专题8-I2C驱动程序设计-第5课-I2C自编设备驱动设计

 

 

 2、编程

 

#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>

int main()
{
    int i, fd;
    char write_data[256];
    char read_data[256];
    
    //打开at24c02对应的sys文件
    fd=open("/sys/bus/i2c/devices/0-0050/eeprom", O_RDWR);
    
    //写入数据
    for(i=0; i<256; i++)
    {
        write_data[i]=i;
    }
    lseek(fd, 0, SEEK_SET);
    write(fd, read_data, 256);
    
    //读出来
    lseek(fd, 0, SEEK_SET);
    read(fd, read_data,256);
    //对比
    for(i=0; i<256; i++)
    {
        if(i%16 == 0) print("/n");
        printf("%3d ",read_data[i]);
    }
    return 0;
}

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279767.html

(0)
上一篇 2022年8月11日
下一篇 2022年8月11日

相关推荐

发表回复

登录后才能评论