搜索资源列表
lgui_0.3.0.tar
- lgui是类似minigui的系统,功能非常不错 在-lgui MiniGUI is similar to the system, which is very good in
yaffs2.tar
- YAFFS,Yet Another Flash File System,是一种类似于JFFS/JFFS2的专门为Flash设计的嵌入式文件系统。与JFFS相比,它减少了一些功能,因此速度更快、占用内存更少。YAFFS和JFFS都提供了写均衡,垃圾收集等底层操作。-YAFFS, Yet Another Flash File System, a similar JFFS/JFFS2 specifically for the design of embedded Flash File System.
msLinux+msgui
- ADS环境下的类似linux内核的操作系统,加上GUI发布包-ADS environment similar to the Linux kernel of the operating system, coupled with GUI package released
pice-src.tar
- 一个类似与Windows环境下的softice的源代码,可以用来调试driver和应用程序。-similar to a Windows environment with the softice of source code, can be used to debug the driver and application procedures.
u-boot-lpc2200.tar.bz2
- 移植成功的u-boot-1.1.4版本for lpc2210.板子与周立功开发板基本类似,只是把RTL8019换成了CS8900A。下载后把文件名的.ZIP去掉即可。-transplant successful u-boot-1.1.4 version for lpc2210. Zhou, who with board Development board essentially similar, just RTL8019 replaced by the CS8900A. After downlo
sound
- 其中sound.c 用于录音和回放。其中特别需要注意的是:1。目前声卡似乎不能打开全双工,所以如果fd = open(\"/dev/dsp\", O_RDWR) ,则无法录音和回放。只能分别设置RDONLY和WRONLY。即半双工方式。否则,就是在录音的时候可以听见,但是无法回放。分析下来似乎是IIC总线中只分配了一个通道给声卡,或者是只启用了一个通道,所以无法录音和放音同步进行。解决方法就是分别以RDONLY方式打开进行录音和WRONLY方式打开进行放音。 Sound1.c用于将录音保存在
djview_qtopia_1.1_src.tar
- qtopia 下的DJVU阅读器源码,可以方便移植到qt环境,其中的djvu库可以在各个平台通用。djvu是一种类似于JPEG2000的图文压缩技术,用于浏览文献和高质量彩图。
EGui-2006-04-16.tar
- EGui是一个开源的图形系统软件,类似于QT/Embedded、GTK-FB、MicroWindow。目标是嵌入式平台整合解 决方案。基于Linux Framebuffer 设备驱动上实现。有完整的画点、线、矩形等操作。 他分以下几个部分: * 驱动部分; * 图形基本绘画部分; * widget 控件部分。
ppt
- 使用于2410终端上的一个播放类似ppt文件的程序,涉及Tcp/IP通信、局域网广播、Qt视窗系统、pThread等多个方面。修改makefile中编译工具即可编译,linux中应已经安装了qt2.7以上版本。
wifi.tar.gz
- QT4实现的嵌入式linux wifi 无线网络操作界面,对嵌入式linux的类似项目具有参考价值,Achieve QT4 embedded linux wifi wireless network interface, similar to embedded linux project reference value
GraphicsNavigator
- 基于Qt4.6开发的类似于ipad的界面向导,并运用qss进行界面的样式设计。-Developed based on similar ipad Qt4.6 wizard interface, and use the style to interface design qss
2410下boa_web服务器移植
- 移植过程参考网上文章,遇到诸多问题,最后在如下转载的帖中看到相同的,参考修改后移植成功。没有挂在NFS做为文件系统,所以其中的NFS中的文件操作是在对应的文件系统中,过程类似
linux_usbd.tar
- 该程序对VIVI扩展了USB下载功能,能够在S3C2410上通过USB下载bootloader,kernel,rootfs,主机环境是了linux。类似minicom,但是速度要远远快于minicom。 -Similar minicom, but the speed is much faster than minicom.
LINU_c_programm
- 它类似于函数库,这是我用的简约版本,查阅方便,详细版的整理后发-it act like a API library ,with a convenice on looking up
Linux
- 程序代码使用说明: (1)所有源代码目录下都提供了Makefile(非Qt),或者.pro(Qt),或者更详细的说明(第7章)。作为对比,也可以参考在书中的对应章节采用直接gcc命令的编译方法,来学习如何编写Makefile。 (2)Makefile中默认情况下采用“CC=gcc”或者“CPP=g++”的设置,交叉编译时请使用“ make CC=arm-linux-gcc CPP=arm-linux-g++”(假设你使用的是光盘中提供的arm-linux-gcc交叉编译工具链)或类
gps
- gps数据接收代码,包含gps.c,gps.h,main.c pudn中类似的代码在GetComma()函数中基本都是有误的。而且注释也不全。 这个是完整的版本,并且适合ARM2440/2410开发板。希望对大家有所帮助!-gps data receiving code, including gps.c, gps.h, main.c pudn in a similar code in GetComma () function are basically wrong in the. And
setting-meidaplay-2011-01-19
- 基于ARM9的高清媒体播放器系统设置模块,包含多个基本功能小模块,可以用做类似功能参考,如日历,闹钟等。-ARM9-based system to set high-definition player function module, containing a large number of basic functions of the module code can be used for reference, such as calendar and so on.
pid)
- 这是一个比较典型的PID处理程序,在使用单片机作为控制cpu时,请稍作简化,具体的PID 参数必须由具体对象通过实验确定。由于单片机的处理速度和ram资源的限制,一般不采用浮点数运算, 而将所有参数全部用整数,运算到最后再除以一个2的N次方数据(相当于移位),作类似定点数运算,可 大大提高运算速度,根据控制精度的不同要求,当精度要求很高时,注意保留移位引起的“余数”,做好余 数补偿。这个程序只是一般常用pid算法的基本架构,没有包含输入输出处理部分。 -This is a t
ezxterm
- 在linuxMobile上实现命令行程序,类似于windows的CMD。主要用于Motorola linux系统手机。-In linuxMobile to achieve command line program similar to the windows of the CMD. Motorola linux system is mainly used in mobile phones.
addressbook.tar
- 用qt实现的个人地址薄,类似于电话簿这样的工具,可以随时增加,删除,更新里面的数据,打开或者保存等功能。-With the realization of personal address thin qt, similar to the telephone directory such tools, can increase, delete, update the inside of the data, open or save etc. Function.