Chinaunix首页 | 论坛 | 博客
  • 博客访问: 697943
  • 博文数量: 152
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1793
  • 用 户 组: 普通用户
  • 注册时间: 2013-09-12 12:26
个人简介

相信自己,只有不想做的,没有做不到的。

文章分类

全部博文(152)

文章存档

2021年(1)

2015年(2)

2014年(74)

2013年(75)

发布时间:2013-12-13 10:36:01

//配置MACifconfig eth0 downifconfig eth0 hw ether D6:53:5D:EA:1C:09  //更改MAC地址ifconfig eth0 up//配置IP-GW-DNSifconfig eth0 192.168.1.8 netmask 255.255.255.0 up  //配置IP地址ifconfig eth0 up                         &nb.........【阅读全文】

阅读(2294) | 评论(0) | 转发(0)

发布时间:2013-12-12 13:26:16

//在s5pc100_pwm.c中#include  #include #include #include #include #include #include #include #include "s5pc100_pwm.h"MODULE_LICENSE("Dual BSD/GPL");static int pw.........【阅读全文】

阅读(941) | 评论(0) | 转发(0)

发布时间:2013-12-12 13:02:17

定时器1>/*second设备结构体*/struct second_dev{ struct cdev cdev; /*cdev结构体*/ atomic_t counter;/* 一共经历了多少秒?*/ struct timer_list s_timer; /*设备要使用的定时器*/};2>/*文件打开函数*/int second_open(struct inode *inode, struct file *filp){ /*初始化定时器*.........【阅读全文】

阅读(867) | 评论(0) | 转发(0)

发布时间:2013-12-12 13:01:21

poll//8 poll的使用/定义.poll = globalfifo_poll,//结构体/*globalfifo设备结构体*/struct globalfifo_dev                               &nbs.........【阅读全文】

阅读(680) | 评论(0) | 转发(0)

发布时间:2013-12-12 13:00:34

//7简单睡眠机制//1.定义wait_queue_head_t readq;//初始化init_waitqueue_head(&readq);//等队列待被唤醒wait_event_interruptible(readq, flags != 0);//唤醒等待的队列wake_up_interruptible(&readq);......【阅读全文】

阅读(413) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册