LCD DRIVE I2C INTERFACE RESOURCE FILE
标签: INTERFACE RESOURCE DRIVE FILE
上传时间: 2014-01-20
上传用户:Amygdala
# This resource site for "Grid Computing: Making the Global Infrastructure a Reality " edited by Fran Berman, Geoffrey Fox and Tony Hey. This is a book (over 1000 pages) published March 2003 by Wiley and (for those papers not published elsewhere) a special issue of Concurrency and Computation: Practice and Experience
标签: Infrastructure Computing resource Reality
上传时间: 2013-11-28
上传用户:924484786
完整源码,您可以二次开发,增减功能,文件及支持的芯片看下面说明: PCRecord.cpp PCRecord.h PCRecordDlg.cpp PCRecordDlg.h Resource.h wavrec.cpp wavefile.cpp wavefile.h wavrec.h <Platforms> <Platform Name="JZ4740 (MIPSII)" /> <Platform Name="QQ2440 (ARMV4I)" /> <Platform Name="Smartphone 2003 (ARMV4)" /> <Platform Name="Win32" /> </Platforms>
标签: PCRecordDlg PCRecord cpp Resource
上传时间: 2013-12-21
上传用户:啊飒飒大师的
非常适合内嵌式mp3播放,例如控制台!注意看压缩包里readme.doc 详细过程,在ARM及MIPS下通过 新建一个 wce application,选择 a simple windows ce application 在 1.tool->options->directories>include files里包含必要的头文件 D:\WINCE500\pubilc\directx\SDK\INC D:\WINCE500\pubilc\common\SDK\INC D:\WINCE500\pubilc\common\OAK\INC D:\WINCE500\pubilc\common\DDK\INC 2. >Library files D:\WINCE500\PUBLIC\DIRECTX\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\OAK\LIB\MIPSII\RETAIL 3.可能要在Project->Settings->link的object/library modules 加入 commctrl.lib coredll.lib ole32.lib oleaut32.lib uuid.lib strmiids.lib newres.h play.cpp play.vcw resource.h StdAfx.cpp StdAfx.h 下面为播放源码 #include "stdafx.h" #include<dshow.h> #include<streams.h> .......其实编译时的 object/library modules 只要看 sourse 文件包含哪个dll,或lib 就行
标签: application windows readme simple
上传时间: 2016-05-05
上传用户:ynsnjs
Implementation of common functions required for subchannel allocation and resource management of a WLAN/Wimax OFDMA air-interface. Includes STC and MIMO handling.
标签: Implementation allocation management subchannel
上传时间: 2016-05-10
上传用户:qiaoyue
对应於codeworker的说明文档;CodeWorker is a versatile Open Source (GNU Lesser General Public License) parsing tool and a source code generator devoted to generative programming.
标签: codeworker CodeWorker versatile General
上传时间: 2014-08-14
上传用户:libenshu01
//按柱面和磁道来读取磁盘数据,要求 Public Function ReadDisk(ByVal Cylinders As Long, ByVal Tracks As Long, db() As Byte) As Boolean
标签: ByVal Long Cylinders Function
上传时间: 2014-01-13
上传用户:zxc23456789
复数运算#include<iostream.h> class Complex { public: Complex( double r =0, double i =0 ) Complex(int a) { Real = a Image = 0 } void print() const friend Complex operator+ ( const Complex & c1, const Complex & c2 ) friend Complex operator- ( const Complex & c1, const Complex & c2 ) friend Complex operator- ( const Complex & c ) private: double Real, Image }
标签: Complex double iostream include
上传时间: 2016-06-30
上传用户:wang5829
编写JavaBean必须满足以下几点: 所有的JavaBean必须放在一个包中 JavaBean必须声明成public class类型 所有的属性必须封装 设置和取得属性可以通过set,get
上传时间: 2016-07-04
上传用户:AbuGe
package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("队是空的,无法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }
标签: private public Node LinkQuery
上传时间: 2016-07-08
上传用户:天诚24