Examples

2015年6月4日

linux驱动之jiffies的理解

摘要: 本文主要借鉴了http://blog.csdn.net/allen6268198/article/details/7270194,非常感谢该网友的分享。在LINUX的时钟中断中涉及至二个全局变量一个是xtime,它是timeval数据结构变量,另一个则是jiffies。首先看timeval结构:st... 阅读全文

posted @ 2015-06-04 16:02 足各火丁 阅读(1942) 评论(0) 推荐(0) 编辑

linux驱动之定时器的介绍和内核时间的学习

摘要: 本文章摘自下面的网友:http://blog.sina.com.cn/s/blog_6e5b342e0100m87d.html一、内核中如何记录时间任何程序都需要时间控制,其主要目的是:测量时间流逝和比较时间知道当前时间指定时间量的延时操作为达到这个目的,应用程序使用日历时间(年月日时分秒)或者自1... 阅读全文

posted @ 2015-06-04 14:48 足各火丁 阅读(1184) 评论(0) 推荐(0) 编辑

linux驱动之定时器的使用

摘要: 被文章摘自一下几位网友。非常感谢他们。http://blog.sina.com.cn/s/blog_57330c3401011cq3.htmlLinux的内核中定义了一个定时器的结构:#includestruct timer_list{ struct list_head list; unsign... 阅读全文

posted @ 2015-06-04 11:44 足各火丁 阅读(7838) 评论(0) 推荐(1) 编辑

linux驱动之模块化编程

摘要: 今天刚开始学习linux驱动的编写。在网上开了许多网友的博客,感觉比较好的摘抄下来,以便以后忘记可以随时查看。下面是摘抄文章的地址,非常感谢他们。http://blog.chinaunix.net/uid-26833883-id-4366882.html -------草根老师 阅读全文

posted @ 2015-06-04 10:41 足各火丁 阅读(357) 评论(0) 推荐(0) 编辑

2015年3月27日

linux下的scp传输文件

摘要: 转载于:http://moyu2010.blog.163.com/blog/static/177439041201112710243064/,再次谢谢作者。1、功能说明scp就是security copy,用于将文件或者目录从一个Linux系统拷贝到另一个Linux系统下。scp传输数据用的是SSH... 阅读全文

posted @ 2015-03-27 16:50 足各火丁 阅读(961) 评论(0) 推荐(0) 编辑

编译u-boot时候,make distclean 出现rm:无法删除,****是一个目录

摘要: 今天在编译u-boot的时候,make distclean,出现了rm:无法删除"include/asm-arm/arch":是一个目录。经过查看网友的解决办法,已经解决了。具体解决办法:在uboot顶层有个mkconfig文件,vim打开后,在里面所有的rm后面都加上 -r。例如:rm -d as... 阅读全文

posted @ 2015-03-27 16:44 足各火丁 阅读(2119) 评论(0) 推荐(0) 编辑

2014年9月24日

编译gawk出现问题,没有安装gawk。

摘要: 安装gawk 阅读全文

posted @ 2014-09-24 17:38 足各火丁 阅读(4752) 评论(0) 推荐(0) 编辑

2014年9月23日

'gets' undeclared here (not in a function)

摘要: 'gets' undeclared here (not in a function) 阅读全文

posted @ 2014-09-23 13:49 足各火丁 阅读(16358) 评论(0) 推荐(0) 编辑

2014年7月24日

TS流解码过程-ES-PES-PTS-DTS

摘要: 主要介绍了DTS和PTS 阅读全文

posted @ 2014-07-24 15:06 足各火丁 阅读(3762) 评论(0) 推荐(0) 编辑

2014年7月23日

I帧B帧P帧

摘要: 简单分析I帧P帧B帧 阅读全文

posted @ 2014-07-23 09:26 足各火丁 阅读(294) 评论(0) 推荐(0) 编辑

导航

Examples