全部博文(1493)
发布时间:2013-03-28 12:23:57
学习函数指针写的,直接上代码,请大神多多指教:点击(此处)折叠或打开#include #include #define NUM 3enum {GREEN,YELLOW,RED};void OutputSignal(int sig){.........【阅读全文】
发布时间:2013-03-28 12:21:11
V4L2用户空间和kernel层driver的交互过程这篇文章详细分析了V4L2用户空间和kernel层driver的交互过程,目的只有一个:更清晰的理解V4L2视频驱动程序的系统结构,驱动编程方法,为以后开发视频驱动打好基础既然从用户层出发探究驱动层,这里先贴出应用层code:#include <stdio.h> #include <st.........【阅读全文】
发布时间:2013-03-26 09:59:38
第一章 Bios启动电源--Initial北桥--将程序装入内存--读南桥COMS data--建立SMBIOS--POST 北桥控制CPU、内存 南桥控制所有外设 BIOS(Basic Input Output System)的主要作用: 自动检测并进行初始化; 记录系统设置值(如onboard显卡内存大小); 中断处理; 加载操作.........【阅读全文】
发布时间:2013-03-26 09:56:03
1,字符串连接char *strcat(char *dest, const char *src);char *strncat(char *dest, const char *src, size_t n);英文manual并不难,直接上英文:The strcat() function appends the src string to the dest string, over‐writing the terminating null byte ('\0') at the end of dest, an.........【阅读全文】