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