Embedded System
文章平均质量分 78
会思考的草
这个作者很懒,什么都没留下…
展开
-
Windows CE的显示设备驱动笔记
显示驱动概述一、显示设备驱动接口(DDI)是Windows NT DDI的子集。WinCE的显示驱动和NT的有三点不同:1.CE的显示驱动功能单一,GDI不会去查询一个驱动的设备能力2.对于一个复杂的操作,CE的显示驱动不会拒收并把它还给GDI让GDI将其分解成一系列简单的操作,因为CE的显示驱动自己具备这个功能(分解的功能?),GDI会在调用显示驱动之前将操作进行分解。原创 2007-03-25 16:11:00 · 2076 阅读 · 1 评论 -
USB总线枚举过程
(1)集线器检测新设备 主机集线器监视着每个端口的信号电压,当有新设备接入时便可觉察。(集线器端口的两根信号线的每一根都有15kΩ的下拉电阻,而每一个设备在D+都有一个 1.5kΩ的上拉电阻。当用USB线将PC和设备接通后,设备的上拉电阻使信号线的电位升高,因此被主机集线器检测到。) (2)主机知道了新设备连接后 每个集线器用中断传输来报告在集线器上的事件。当主机知道了这转载 2007-08-21 11:25:00 · 2031 阅读 · 0 评论 -
在Ubuntu上搭建E-Ink AM-100开发环境
E-Ink的AM-100 Active Matrix Prototyping Kit主要由4块板组成:6英寸Active matrix displayApollo显示控制模块Gumstix单板计算机(基于Intel XScale PXA 255)串口适配器一、编译Gumstix1,安装必须的软件包。>sudo apt-get install build-essential libncurses-d原创 2007-08-23 16:19:00 · 2145 阅读 · 1 评论 -
在Windows Mobile 5中使用DirectShow控制摄像头
By Amit RanjanJuly 21, 2006A number of Windows Mobile 5.0 APIs (for example, SHCameraCapture) make it trivial for a mobile application developer to access a camera, but their ease of use comes at a转载 2007-08-27 19:19:00 · 4559 阅读 · 4 评论 -
定制自己的Windows CE 5.0 ARM中文模拟器
一、生成OS1. 安装Windows CE 5.0(记得CPU类型里把ARMV4I选上)装完之后装DeviceEmulatorBSP.msi,这是ARMV4I模拟器的BSP。2. 运行Platform Builder,新建一个Platform,给你的新Platform取一个名字,我这里取为MyCEEmu。BSP选择Microsoft DeviceEmulator:ARMV4I,Design原创 2007-09-14 15:51:00 · 3097 阅读 · 0 评论 -
Windows CE中的字库链接
先翻译MSDN中关于链接字体的解释:Windows Embedded CE提供了链接字库的能力,它可以将一个或多个字库链接到另一个字库上,前者称为被链接字库,后者称为基本字库。一旦你链接了字库,你就可以使用被链接的字库显示在基本字库中不存在的码字。比如,将日文字库链接到拉丁字库,你就可以在使用拉丁字库的UNICODE文本API中显示日文字符。如果你的设备上启用了字库链接,你可以通过原创 2009-05-19 11:49:00 · 3482 阅读 · 1 评论 -
Windows Embedded Codenames
Windows CE 1.0 - Alder (Nov 1996)Windows CE 2.0 - Birch (Nov 1997)Windows CE 3.0 - Cedar (Apr 2000) Windows CE 4.0 - Talisker (Jan 2002) Windows CE 4.1 - Jameson (Jun 2002) Windows CE 4.2 - McKendric原创 2009-09-01 15:32:00 · 792 阅读 · 0 评论 -
Tips for Writing a File System Filter
Ariane JansenThere have been a few questions posted to the newsgroup over the past few months on the scope of the initial setup, and the registry settings of file system filters. I hope to answer so转载 2010-03-18 19:43:00 · 952 阅读 · 0 评论