当前位置: 首页 > news >正文

底层驱动day8作业

代码:

//驱动程序
#include<linux/init.h>
#include<linux/module.h>
#include<linux/of.h>
#include<linux/of_gpio.h>
#include<linux/gpio.h>
#include<linux/timer.h>struct device_node *dnode;
//unsigned int gpiono;
char kbuf[128] = {0};
//定义定时器对象
struct timer_list mytimer;
struct gpio_desc *gpiono;int major;
struct class *cls;
struct device *dev;
int mycdev_open(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}ssize_t mycdev_write(struct file *file, const char *ubuf, size_t size, loff_t *lof)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);int ret=copy_from_user(kbuf,ubuf,size);if(ret){printk("copy_from_user filed\n");return -EIO;}printk("%d\n",kbuf[0] - 48);gpiod_set_value(gpiono,kbuf[0] - 48);return 0;
}
int mycdev_close(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}// 定义操作方法结构体变量并赋值
struct file_operations fops = {.open = mycdev_open,.write = mycdev_write,.release = mycdev_close,
};void handler(struct timer_list *timer)
{printk("hello world\n");mod_timer(timer,jiffies + 5 * HZ);
}static int __init mycdev_init(void)
{dnode = of_find_node_by_path("/myled");if(NULL == dnode){printk("解析设备节点信息失败\n");return  -ENXIO;}//获取LED1 GPIO编号gpiono = gpiod_get_from_of_node(dnode,"led1-gpio",0,GPIOD_OUT_LOW,NULL);if(IS_ERR(gpiono)){printk("申请gpio信息失败\n");return -PTR_ERR(gpiono);}//初始化定时器对象timer_setup(&mytimer,handler,0);mytimer.expires = jiffies + HZ;//注册定时器add_timer(&mytimer);major = register_chrdev(0, "mychrdev", &fops);if (major < 0){printk("字符设备驱动注册失败\n");return major;}printk("字符设备驱动注册成功:major=%d\n", major);// 向上提交目录cls = class_create(THIS_MODULE, "mychrdev");if (IS_ERR(cls)){printk("向上提交目录失败\n");return -PTR_ERR(cls);}printk("向上提交目录成功\n");// 向上提交设备节点信息int i; // 向上提交三次设备节点信息for (i = 0; i < 3; i++){dev = device_create(cls, NULL, MKDEV(major, i), NULL, "myled%d", i);if (IS_ERR(dev)){printk("向上提交设备节点失败\n");return -PTR_ERR(dev);}}printk("向上提交设备节点成功\n");return 0;
}static void __exit mycdev_exit(void)
{del_timer(&mytimer);//gpio_free(gpiono);gpiod_put(gpiono);// 销毁设备节点信息int i;for (i = 0; i < 3; i++){device_destroy(cls, MKDEV(major, i));}// 销毁目录class_destroy(cls);// 注销字符设备驱动unregister_chrdev(major, "mychrdev");
}module_init(mycdev_init);
module_exit(mycdev_exit);
MODULE_LICENSE("GPL");
//应用程序
#include<stdio.h>
#include<stdlib.h>
#include<sys/ioctl.h>
#include<string.h>
#include<sys/stat.h>
#include<sys/types.h>
#include<unistd.h>
#include<fcntl.h>
int main(int argc, char const *argv[])
{char buf[128] = {0};int fd = open("/dev/myled0",O_RDWR);while(1){printf("请输入>>>");scanf("%s",buf);write(fd,buf,1);}return 0;
}

 实验现象:

 

http://www.lryc.cn/news/210302.html

相关文章:

  • openWRT SFTP 实现远程文件安全传输
  • 麒麟KYLINOS2303版本上使用KDE桌面共享软件
  • H5游戏源码分享-手机捉鬼游戏
  • vite中将css,js文件归类至文件夹
  • 【通信原理】第一章|绪论|信息度量和通信系统的性能指标
  • 基于STM32+OneNet设计的物联网智能鱼缸(2023升级版)
  • NET-MongoDB的安装使用
  • 简化geojson策略
  • 一个Binder的前生今世 (二):Binder进程和线程的创建
  • RocketMq源码分析(八)--消息消费流程
  • sql--索引使用
  • alibaba.fastjson的使用(三)-- Map、List ==》JSON字符串
  • pycharm 2023.2.3设置conda虚拟环境
  • 安卓Frida 脱壳
  • 【C】为什么7.0会被存储为6.99999
  • Framework -- 系统架构
  • 1.1 计算机安全概念
  • react中的函数柯里化
  • Unity点乘的实战案例1
  • Hive数据查询详解
  • 人工智能基础_机器学习008_使用正规方程_损失函数进行计算_一元一次和二元一次方程演示_sklearn线性回归演示---人工智能工作笔记0048
  • 【详细】Java网络通信 TCP、UDP、InetAddress
  • Linux(Centos7)操作记录
  • Vue全局事件总线实现任意组件间通信
  • linux-tools-$(uname -r) linux-headers-$(uname -r)工具安装:
  • hive sql,年月日 时分秒格式的数据,以15分钟为时间段,找出每一条数据所在时间段的上下界限时间值(15分钟分区)
  • C#学习系列之继承
  • PyTorch入门学习(六):神经网络的基本骨架使用
  • “体检报告健康解读技术传承人”授牌仪式圆满结束
  • 查询计算机GUID码