//结构 struct fb_fix_screeninfo finfo struct fb_var_screeninfo vinfo //打开设备 fd = open["/dev/fb0", O_RDWR] if [!fd] { printf["Cannot open framebuffer device.\n"] exit[1] } //取得固定信息 if [ioctl[fd, FBIOGET_FSCREENINFO, &finfo]] { printf["Error reading fixed information.\n"] exit[1] } if [ioctl[fd, FBIOGET_VSCREENINFO, &vinfo]] { printf["Error reading variable information.\n"] exit[1] }
资源简介://结构 struct fb_fix_screeninfo finfo struct fb_var_screeninfo vinfo //打开设备 fd = open["/dev/fb0", O_RDWR] if [!fd] { printf["Cannot open framebuffer device.\n"] exit[1] } //取得固定信息 if [ioctl...
上传时间: 2014-08-16
上传用户:gut1234567
资源简介:堆栈的数据结构和操作 ypedef struct{ HGLOBAL hMem //堆栈全局内存句柄 POINT *lpMyStack //指向该句柄的指针 LONG ElementsNum //堆栈的大小 LONG ptr //指向栈顶得指针
上传时间: 2013-11-26
上传用户:15736969615
资源简介:jffs2源码研究分析 全文分为 jffs2的数据实体及其内核描述符 描述jffs2特性的数据结构 注册文件系统 挂载文件系统 打开文件时建立inode的方法 jffs2中写正规文件的方法 jffs2中读正规文件的方法 jffs2中符号链接文件的方法表 jffs2中目录文...
上传时间: 2015-09-30
上传用户:zhichenglu
资源简介:STRUCT实应用 STRUCT实应用 STRUCT实应用
上传时间: 2013-12-21
上传用户:luopoguixiong
资源简介:本论文研究的课题是:ARM7处理器以及µ c/os-II操作系统,通过做实验,了解三星公司的S3C44BOX芯片的内部结构,工作原理以及其扩展的外围设备.熟悉基于µ c/os-II扩展的嵌入式系统的启动和应用程序的结构.掌握将µ c/os-II移植到ARM7处理器的基本方法...
上传时间: 2014-01-17
上传用户:dapangxie
资源简介:linuxdvb设备驱动的代码初始化dvb设备并且读取打开设备
上传时间: 2015-11-28
上传用户:冇尾飞铊
资源简介:编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩...
上传时间: 2016-04-13
上传用户:zxc23456789
资源简介:一、 实验内容 S语言的编译程序的词法分析部分实现 从左到右扫描每行S语言源程序的符号,拼成单词,换成内部表示(token) 二、 实验要求 要求实现编译器的以下功能:  组织源程序的输入  按规则拼写单词,并转换成二元形式  ...
上传时间: 2015-04-29
上传用户:refent
资源简介:帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <asm/page.h> #include <linux/fb.h> #def...
上传时间: 2013-12-11
上传用户:bjgaofei
资源简介://打开 USB 口读写, 由驱动程序的 Pipe 名确定 HANDLE hPipe = OpenMyDevPipe("MyPipe1") //驱动程序里面的 Pipe 名, 对应访问某个端点的 I/O, 这里我乱写的, 需要与驱动一致 if(hPipe != INVALID_HANDLE_VALUE) //打开 Pipe 成功 { ReadFile(hPipe,...
上传时间: 2014-11-25
上传用户:stampede