linux_驱动_iic总线获取si7006温湿度

news/2024/11/30 9:54:40/

应用层si7006.c

#include<stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <arpa/inet.h>
#include "head.h"int main(int argc,char const *argv[])
{int tem,hum;float tem1,hum1;int fd = open("/dev/si7006",O_RDWR);if(fd < 0){printf("设备文件打开失败\n");exit(-1);}while(1){//获取数据ioctl(fd,GET_HUM,&hum);ioctl(fd,GET_TEM,&tem);//大小端转换hum = ntohs(hum);tem = ntohs(tem);//计算数据hum1 = 125.0*hum/65536-6;tem1 = 175.72*tem/65536-46.85;printf("tem=%f,hum=%f\n",tem1,hum1);sleep(1);}return 0;
}

驱动层myiic.c

#include <linux/init.h>
#include <linux/module.h>
#include <linux/i2c.h>
#include <linux/fs.h>
#include <linux/device.h>
#include "head.h"unsigned int major;
struct class *cls;
struct device *dev;
struct i2c_client *client1;// 读取温湿度的函数
int i2c_read_hum_tem(char reg)
{short value;char r_buf[] = {reg};int ret;// 封装消息struct i2c_msg r_msg[] = {[0] = {.addr = client1->addr,.flags = 0,.len = sizeof(r_buf),.buf = r_buf,},[1] = {.addr = client1->addr,.flags = 1,.len = 2,.buf = (char *)&value,},};// 将消息传送ret = i2c_transfer(client1->adapter, r_msg, 2);if (ret != 2){printk("消息传输失败\n");return -EIO;}return value; // 将读取到的温度和湿度返回
}int si7006_open(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}long si7006_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{int tem, hum, ret;switch (cmd){case GET_HUM: // 读取湿度// 读取湿度的逻辑hum = i2c_read_hum_tem(0XE5);ret = copy_to_user((void *)arg, &hum, 4);if (ret < 0){printk("向用户拷贝数据失败\n");return ret;}break;case GET_TEM: // 读取温度// 读取温度的逻辑tem = i2c_read_hum_tem(0XE3);ret = copy_to_user((void *)arg, &tem, 4);if (ret < 0){printk("向用户拷贝数据失败\n");return ret;}break;}return 0;
}int si7006_close(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}struct file_operations fops = {.open = si7006_open,.unlocked_ioctl = si7006_ioctl,.release = si7006_close,
};// 给对象分配空间并初始化
int i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
{client1 = client;// 字符设备驱动的注册major = register_chrdev(0, "si7006", &fops);if (major < 0){printk("字符设备驱动注册失败\n");return major;}printk("字符设备驱动注册成功\n");// 自动创建设备节点cls = class_create(THIS_MODULE, "si7006");if (IS_ERR(cls)){printk("向上提交目录失败\n");return -PTR_ERR(cls);}printk("向上提交目录成功\n");// 向上提交设备节点dev = device_create(cls, NULL, MKDEV(major, 0), NULL, "si7006");if (IS_ERR(dev)){printk("向上提交节点信息失败\n");return -PTR_ERR(dev);}printk("向上提交节点信息成功\n");// 硬件信息的获取return 0;
}// remove 和设备信息分离时执行
int i2c_remove(struct i2c_client *client)
{// 销毁节点device_destroy(cls, MKDEV(major, 0));// 目录和设备信息的销毁class_destroy(cls);// 驱动的注销unregister_chrdev(major, "si7006");return 0;
}// 构建设备树匹配信息
struct of_device_id oftable[] = {{.compatible = "vivi,si7006",},{},
};// 分配iic驱动对象并初始化
struct i2c_driver i2c_drv = {.probe = i2c_probe,.remove = i2c_remove,.driver = {.name = "si7006",.of_match_table = oftable, // 设备树匹配},
};
module_i2c_driver(i2c_drv);
MODULE_LICENSE("GPL");

在根节点外添加设备树

*********添加************
在stm32mp157a-fsmp1a.dts文件的根节点外部,添加如下内容:&i2c1 {pinctrl-names = "default", "sleep";//关于pinctrl的一个列表,"default"表示默认工作模式//"sleep"表示低功耗模式pinctrl-0 = <&i2c1_pins_b>;//-0表示pinctrl-name列表中第一个值defaultpinctrl-1 = <&i2c1_sleep_pins_b>;//在stm32mp15-pinctrl.dtsi文件中存在内核添加的各种用于管脚复用的节点,i2c1_pins_a就是其中之一i2c-scl-rising-time-ns = <100>;i2c-scl-falling-time-ns = <7>;status = "okay";/delete-property/dmas;  //删除不必要的属性/delete-property/dma-names;si7006@40{  //添加SI7006的从机节点compatible="hqyj,si7006";reg=<0X40>;};};

效果演示

 

 

 

 


http://www.ppmy.cn/news/1006931.html

相关文章

【无标题】云原生在工业互联网的落地及好处!

什么是工业互联网&#xff1f; 工业互联网&#xff08;Industrial Internet&#xff09;是新一代信息通信技术与工业经济深度融合的新型基础设施、应用模式和工业生态&#xff0c;通过对人、机、物、系统等的全面连接&#xff0c;构建起覆盖全产业链、全价值链的全新制造和服务…

JS密码正则验证(不能连续字符(如123、abc)连续3位或3位以上)(不能相同字符(如111、aaa)连续3位或3位以上)

密码必须为8到16位且必须包含数字和字母密码必须包含特殊字符【_&#%】不能连续字符&#xff08;如123、abc&#xff09;连续3位或3位以上不能相同字符&#xff08;如111、aaa&#xff09;连续3位或3位以上 const regFun (str) > {// 密码必须包含数字和字母// 密码长度…

探秘手机隐藏的望远镜功能:开启后,观察任何你想看的地方

当今的智能手机不仅仅是通信工具&#xff0c;它们蕴藏着各种隐藏的功能&#xff0c;其中之一就是让你拥有望远镜般的观察能力。是的&#xff0c;你没有听错&#xff01;今天我们将探秘手机中隐藏的望远镜功能&#xff0c;这项神奇的功能可以让你打开后&#xff0c;轻松观察任何…

webpack基础知识四:说说webpack中常见的Plugin?解决了什么问题?

一、是什么 Plugin&#xff08;Plug-in&#xff09;是一种计算机应用程序&#xff0c;它和主应用程序互相交互&#xff0c;以提供特定的功能 是一种遵循一定规范的应用程序接口编写出来的程序&#xff0c;只能运行在程序规定的系统下&#xff0c;因为其需要调用原纯净系统提供…

Teams Room视频会议室方案

需求背景&#xff1a; 适合在40平米的会议室参加Teams视频会议&#xff0c;会议桌周围可以坐20人&#xff0c;要求&#xff1a; 1&#xff0c;操作简单&#xff0c;一键入会Teams Room&#xff1b; 2&#xff0c;任何人带上自己的笔记本电脑&#xff0c;可以分享电脑画面&#…

面试题:说说JS的this指向问题?

1、this永远指向一个对象&#xff1b; 2、this的指向完全取决于函数调用的位置&#xff1b; 可以借鉴这篇文章&#xff0c;说的很详细&#xff08;点击&#xff09; 总结&#xff1a; 1、 以方法的形式调用时&#xff0c; this 是调用方法的对象&#xff1b; 2、绑定事件函…

初级web前端开发工程师的岗位职责描述(合集)

初级web前端开发工程师的岗位职责描述1 职责&#xff1a; 1. 根据功能需求设计编写页面原型; 2. 前后端联调保证功能流畅; 3. 提高页面易用性、美观提出合理建议。 4、与后台工程师配合开发联调并交付产品; 5、持续优化前端页面体验和访问速度&#xff0c;保证页面精美高效…

P25透明屏:探究在商业广告领域的应用表现

P25透明屏是一种新型的显示屏技术&#xff0c;具有高透明度和高分辨率的特点。 它可以将图像或视频直接投影到透明的表面上&#xff0c;使得观众可以透过屏幕看到背后的景物&#xff0c;同时也能够看到屏幕上的内容。 P25透明屏广泛应用于商业展示、户外广告、产品展示等领域…