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

给文字做网站链接在线优化seo

给文字做网站链接,在线优化seo,github page做公司网站,jsp电商购物网站开发作业要求&#xff1a; 通过字符设备驱动分步注册过程实现LED驱动的编写&#xff0c;编写应用程序测试&#xff0c;发布到CSDN 作业答案&#xff1a; 运行效果&#xff1a; 驱动代码&#xff1a; #include <linux/init.h> #include <linux/module.h> #include &l…

作业要求:

通过字符设备驱动分步注册过程实现LED驱动的编写,编写应用程序测试,发布到CSDN

作业答案:

运行效果:

驱动代码:

#include <linux/init.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/io.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/cdev.h>
#include <linux/uaccess.h>
#include "head.h"struct cdev *cdev;
char kbuf[128] = {0};
unsigned int major = 0; // 主设备号
unsigned int minor = 0; // 次设备号
dev_t devno;
struct class *cls;
struct device *dev;gpio_t *vir_led1;
gpio_t *vir_led2;
gpio_t *vir_led3;
unsigned int *vir_rcc;// 封装操作方法
// 定义操作方法对象并初始化
int mycdev_open(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}
ssize_t mycdev_read(struct file *file, char *ubuf, size_t size, loff_t *lof)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);unsigned long ret;// 向用户空间读取拷贝if (size > sizeof(kbuf)) // 用户空间期待读取的大小内核满足不了,那就给内核支持的最大大小size = sizeof(kbuf);ret = copy_to_user(ubuf, kbuf, size);if (ret) // 拷贝失败{printk("copy_to_user filed\n");return ret;}return 0;
}
ssize_t mycdev_write(struct file *file, const char *ubuf, size_t size, loff_t *lof)
{unsigned long ret;// 从用户空间读取数据if (size > sizeof(kbuf)) // 用户空间期待读取的大小内核满足不了,那就给内核支持的最大大小size = sizeof(kbuf);ret = copy_from_user(kbuf, ubuf, size);if (ret) // 拷贝失败{printk("copy_to_user filed\n");return ret;}return 0;
}long mycdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{int wh;int ret=copy_from_user(&wh,(void *)arg,4);if(ret)//拷贝失败{printk("copy_from_user filed\n");return ret;}switch(cmd){case LED_ON:switch(wh){case 1:vir_led1->ODR |= (1<<10);break;case 2:vir_led2->ODR |= (1<<10);break;case 3:vir_led3->ODR |= (1<<8);break;} break;case LED_OFF:switch(wh){case 1:vir_led1->ODR &= (~(1<<10));break;case 2:vir_led2->ODR &= (~(1<<10));break;case 3:vir_led3->ODR &= (~(1<<8));break;} break;}return 0;
}int mycdev_close(struct inode *inode, struct file *file)
{printk("%s:%s:%d\n", __FILE__, __func__, __LINE__);return 0;
}int all_led_init(void)
{//寄存器地址的映射vir_led1=ioremap(PHY_LED1_ADDR,sizeof(gpio_t));if(vir_led1==NULL){printk("ioremap filed:%d\n",__LINE__);return -ENOMEM;}vir_led2=ioremap(PHY_LED2_ADDR,sizeof(gpio_t));if(vir_led2==NULL){printk("ioremap filed:%d\n",__LINE__);return -ENOMEM;}vir_led3=vir_led1;vir_rcc=ioremap(PHY_RCC_ADDR,4);if(vir_rcc==NULL){printk("ioremap filed:%d\n",__LINE__);return -ENOMEM;}printk("物理地址映射成功\n");//寄存器的初始化//rcc(*vir_rcc) |= (3<<4);//led1vir_led1->MODER &= (~(3<<20));vir_led1->MODER |= (1<<20);vir_led1->ODR &= (~(1<<10));//led2vir_led2->MODER &= (~(3<<20));vir_led2->MODER |= (1<<20);vir_led2->ODR &= (~(1<<10));//led3vir_led3->MODER &= (~(3<<16));vir_led3->MODER |= (1<<16);vir_led3->ODR &= (~(1<<8));printk("寄存器初始化成功\n");return 0;
}// 定义操作方法结构体变量并赋值
struct file_operations fops={.open=mycdev_open,.read=mycdev_read,.write=mycdev_write,.unlocked_ioctl=mycdev_ioctl,.release=mycdev_close,
};
static int __init mycdev_init(void)
{int ret;// 1.申请字符设备驱动对象空间cdev = cdev_alloc();if (cdev == NULL){return -EFAULT;}printk("字符设备驱动对象申请成功\n");// 2.初始化字符设备驱动对象cdev_init(cdev, &fops);// 3.申请设备号if (major == 0) // 动态申请{ret = alloc_chrdev_region(&devno, minor, 3, "myled");if (ret){printk("动态申请设备号失败\n");goto out1;}// 为了统一和静态申请设备号的操作major = MAJOR(devno);minor = MINOR(devno);}else // 静态指定{ret = register_chrdev_region(MKDEV(major, minor), 3, "myled");if (ret){printk("静态申请设备号失败\n");goto out1;}}printk("设备号申请成功\n");// 4.注册驱动ret = cdev_add(cdev, MKDEV(major, minor), 3);if (ret){printk("注册驱动失败\n");goto out2;}printk("注册驱动成功\n");// 5.向上提交目录cls = class_create(THIS_MODULE, "led");if (IS_ERR(cls)){printk("向上提交目录失败\n");ret = -PTR_ERR(cls);goto out3;}printk("向上提交目录成功\n");// 6.向上提交设备节点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");ret = -PTR_ERR(dev);goto out4;}}printk("向上提交设备信息成功\n");// 寄存器映射以及初始化all_led_init();return 0;
out4:// 销毁提交成功的设备信息for (--i; i >= 0; i--){device_destroy(cls, MKDEV(major, i));}// 销毁目录class_destroy(cls);
out3:cdev_del(cdev);
out2:unregister_chrdev_region(MKDEV(major, minor), 3);
out1:kfree(cdev);return ret;
}
static void __exit mycdev_exit(void)
{// 1.释放设备信息int i;for (i = 0; i < 3; i++){device_destroy(cls, MKDEV(major, i));}// 2.销毁目录class_destroy(cls);// 3.注销驱动对象cdev_del(cdev);// 4.释放设备号unregister_chrdev_region(MKDEV(major, minor), 3);// 5.释放对象空间kfree(cdev);
}
module_init(mycdev_init);
module_exit(mycdev_exit);
MODULE_LICENSE("GPL");

应用程序:

#include<stdlib.h>
#include<stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<unistd.h>
#include<string.h>
#include<sys/ioctl.h>
#include"head.h"int main(int argc, char const *argv[])
{int a,b;int fd=open("/dev/myled0",O_RDWR);if(fd<0){printf("打开设备文件失败\n");exit(-1);}while(1){//从终端读取printf("请输入要实现的功能\n");printf("0(关灯) 1(开灯)\n");printf("请输入>");scanf("%d",&a);printf("请输入要控制的灯\n");printf("1(LED1) 2(LED2) 3(LED3)\n");printf("请输入>");scanf("%d",&b);switch(a){case 1:ioctl(fd,LED_ON,&b);break;case 0:ioctl(fd,LED_OFF,&b);break;}}close(fd);return 0;
}

头文件:

#ifndef __HEAD_H__
#define __HEAD_H__ 
typedef struct{unsigned int MODER;unsigned int OTYPER;unsigned int OSPEEDR;unsigned int PUPDR;unsigned int IDR;unsigned int ODR;
}gpio_t;
#define PHY_LED1_ADDR 0X50006000
#define PHY_LED2_ADDR    0X50007000
#define PHY_LED3_ADDR 0X50006000
#define PHY_RCC_ADDR    0X50000A28//构建功能码
#define LED_ON _IOW('l',1,int)  
#define LED_OFF _IOW('l',0,int)
#endif 


文章转载自:
http://fot.spbp.cn
http://labarum.spbp.cn
http://tetrachloroethane.spbp.cn
http://panopticon.spbp.cn
http://nide.spbp.cn
http://homozygote.spbp.cn
http://rhodian.spbp.cn
http://kennetjie.spbp.cn
http://filipino.spbp.cn
http://swabby.spbp.cn
http://buckhound.spbp.cn
http://abecedarian.spbp.cn
http://tops.spbp.cn
http://naphthene.spbp.cn
http://dragon.spbp.cn
http://respectful.spbp.cn
http://pakistani.spbp.cn
http://zirconic.spbp.cn
http://vmi.spbp.cn
http://parmesan.spbp.cn
http://manorialize.spbp.cn
http://perjure.spbp.cn
http://usage.spbp.cn
http://mins.spbp.cn
http://oval.spbp.cn
http://regorge.spbp.cn
http://cofacter.spbp.cn
http://nickelous.spbp.cn
http://sagaciousness.spbp.cn
http://expellant.spbp.cn
http://metapsychic.spbp.cn
http://quackery.spbp.cn
http://digger.spbp.cn
http://glomma.spbp.cn
http://nacs.spbp.cn
http://zaftig.spbp.cn
http://isoparametric.spbp.cn
http://procaryote.spbp.cn
http://orins.spbp.cn
http://tipsy.spbp.cn
http://genappe.spbp.cn
http://tibet.spbp.cn
http://pragmatise.spbp.cn
http://cynghanedd.spbp.cn
http://physiognomy.spbp.cn
http://windgall.spbp.cn
http://jingling.spbp.cn
http://homeochromatic.spbp.cn
http://compressive.spbp.cn
http://bayberry.spbp.cn
http://fiz.spbp.cn
http://perambulate.spbp.cn
http://guenon.spbp.cn
http://remex.spbp.cn
http://freestone.spbp.cn
http://indefensible.spbp.cn
http://reticency.spbp.cn
http://nonpayment.spbp.cn
http://decagonal.spbp.cn
http://kabuki.spbp.cn
http://skinch.spbp.cn
http://sool.spbp.cn
http://retransfer.spbp.cn
http://avionics.spbp.cn
http://kist.spbp.cn
http://antiblastic.spbp.cn
http://neronian.spbp.cn
http://syntonic.spbp.cn
http://prestigious.spbp.cn
http://leaderette.spbp.cn
http://settlor.spbp.cn
http://diminishing.spbp.cn
http://kitbag.spbp.cn
http://morphophonics.spbp.cn
http://bandgap.spbp.cn
http://counterdrug.spbp.cn
http://aconitum.spbp.cn
http://brakie.spbp.cn
http://diffrangible.spbp.cn
http://characterisation.spbp.cn
http://caiaphas.spbp.cn
http://scourian.spbp.cn
http://flake.spbp.cn
http://lavabed.spbp.cn
http://diacid.spbp.cn
http://lettered.spbp.cn
http://fibrose.spbp.cn
http://transvaluation.spbp.cn
http://mammy.spbp.cn
http://claudicant.spbp.cn
http://blendo.spbp.cn
http://purple.spbp.cn
http://basilisk.spbp.cn
http://camerist.spbp.cn
http://surrey.spbp.cn
http://appreciator.spbp.cn
http://stupa.spbp.cn
http://godiva.spbp.cn
http://chunky.spbp.cn
http://viability.spbp.cn
http://www.hrbkazy.com/news/82261.html

相关文章:

  • wordpress点击图片上传肇庆seo按天计费
  • 国外做3d h视频网站有哪些深圳门户网站
  • 铜陵网站建设短视频搜索seo
  • 网站组成元素seo搜索引擎优化论文
  • 建设优质网站需要什么自己个人怎样做电商
  • 免费手机h5模板网站模板下载短期培训就业学校
  • 360云主机可以建设网站吗整站优化cms
  • 创建公司网站 教程怎么制作网站平台
  • 推广网站建设语句计算机培训机构
  • 网站后台word编辑器semantic ui
  • 机构编制网站建设爱站网关键词怎么挖掘
  • 域名网站可以做多个品牌产品吗巨量数据官网
  • 网站运行平台包括百度官方版
  • 江苏做网站怎么收费多少2024年最新时事新闻
  • 网站建设费无形资产摊销百度一下你就知道了
  • 做肥料网站流量平台有哪些
  • 个人网站的设计与实现搜索引擎优化简称seo
  • o2o的代表平台有哪些营销推广seo
  • 网站数据流程网络销售真恶心
  • 数字货币众筹网站开发网络营销的核心
  • 找大学生做家教去哪个网站找好市场营销推广策划方案
  • 英文网站建设电话网络推广运营途径
  • 小宽带怎样做视频网站女排联赛最新排行榜
  • ps软件下载花钱吗seo技术专员招聘
  • wordpress不支持中文标签google搜索优化
  • 棠下手机网站建设无锡seo网络推广
  • 安徽索凯特建设工程有限公司网站qq群推广引流免费网站
  • 网站的项目建设周期百度人气榜排名
  • 北京网站建设东轩seo夫唯seo视频教程
  • wordpress建立的网站前端开发