亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

Off-line

  • This document aims to provide instructions on how to configure the H.264/AVC encoder and decoder usi

    This document aims to provide instructions on how to configure the H.264/AVC encoder and decoder using the different command line options. Also, sample command line parameters are included for reference

    標(biāo)簽: instructions configure document decoder

    上傳時(shí)間: 2014-01-15

    上傳用戶(hù):coeus

  • CAN1.c and CAN2.c are a simple example of configuring a CAN network to transmit and receive data o

    CAN1.c and CAN2.c are a simple example of configuring a CAN network to transmit and receive data on a CAN network, and how to move information to and from CAN RAM message objects. Each C8051F040-TB CAN node is configured to send a message when it s P3.7 button is depressed/released, with a 0x11 to indicate the button is pushed, and 0x00 when released. Each node also has a message object configured to receive messages. The C8051 tests the received data and will turn on/off the target board s LED. When one target is loaded with CAN2.c and the other is loaded with CAN1.c, one target board s push-button will control the other target board s LED, establishing a simple control link via the CAN bus and can be observed directly on the target boards.

    標(biāo)簽: CAN configuring and transmit

    上傳時(shí)間: 2013-12-11

    上傳用戶(hù):weiwolkt

  • 液晶 OCM/TG240128 驅(qū)動(dòng) 編程語(yǔ)言: C 原產(chǎn)品硬件ATMega128/1280 ,晶振14.7456M 軟件AVR ICC7.14C 破解版 由產(chǎn)品源碼中提取,詳細(xì)的

    液晶 OCM/TG240128 驅(qū)動(dòng) 編程語(yǔ)言: C 原產(chǎn)品硬件ATMega128/1280 ,晶振14.7456M 軟件AVR ICC7.14C 破解版 由產(chǎn)品源碼中提取,詳細(xì)的字符和圖行操作.實(shí)現(xiàn)LCD內(nèi)任何位置的定位操作. void LCD_Init(void) void GMoveTo(U8 yline, U8 xcolumn) void TMoveTo(U8 y, U8 x,U8 len) void DispStartLine(U8 gt, U8 line) void LCD_ClrRam (void) void LCD_ON(unsigned char on) void Draw_Pixel(U8 x, U8 y) void LineTo(U8 x0, U8 y0, U8 x1, U8 y1) void Draw_Line(unsigned char x0, unsigned char y0, unsigned char yl) void disp_img(unsigned int x0, unsigned int y0, unsigned int xl, unsigned int yl, const U8 *img) void DispString(unsigned char x, unsigned char y, char* string) void Printf(U8 x, U8 y, char *fmt, ...) ......

    標(biāo)簽: 14.7456 240128 ATMega 1280

    上傳時(shí)間: 2013-12-27

    上傳用戶(hù):youke111

  • getip1.cpp // // This program reports the IP address for each adapter in your machine. // To comp

    getip1.cpp // // This program reports the IP address for each adapter in your machine. // To compile from command-line type: // // cl getip1.cpp wsock32.lib // // Make sure your INCLUDE and LIB environment variables are set up properly // you can run vcvars32.bat

    標(biāo)簽: address adapter program machine

    上傳時(shí)間: 2014-01-05

    上傳用戶(hù):bibirnovis

  • 電子報(bào)軟體. 你想輕輕鬆鬆的寄送電子報(bào) 功能介紹: 1. 支援多個(gè)伺服器分散流量. (已可設(shè)定每次的最大郵件數(shù)) 2. 支援多個(gè)設(shè)定檔選擇. 3. 可直接選擇硬碟內(nèi)的 HTML, 純文字檔當(dāng)做

    電子報(bào)軟體. 你想輕輕鬆鬆的寄送電子報(bào) 功能介紹: 1. 支援多個(gè)伺服器分散流量. (已可設(shè)定每次的最大郵件數(shù)) 2. 支援多個(gè)設(shè)定檔選擇. 3. 可直接選擇硬碟內(nèi)的 HTML, 純文字檔當(dāng)做寄信內(nèi)容. 4. 支援定時(shí)、每日、每週、每月送信. 5. 配合 ServiceAgent 可以成為NT/2000下的服務(wù). 6. 可夾帶附件檔案. 7. 在原本可直接選取電腦硬碟上的檔案(HTML)來(lái)做為HTML寄信的本文之外, 目前已能將 HTML 內(nèi)的圖檔(gif,jpg,bmp,png)的 <img> tag 和 音效檔(wav,mid,swf)的<EMBED> tag 的內(nèi)容一起勘進(jìn)郵件內(nèi)容裡. 8. 以 Command Line 執(zhí)行的方式就能啟動(dòng)寄信流程. 9. 透過(guò)電子郵件信箱即可啟動(dòng)自動(dòng)化電子報(bào)訂閱/取消功能! 開(kāi)發(fā)工具: 1. Delphi 5 2. Indy Winshoes8 (free delphi component)

    標(biāo)簽: HTML 伺服器 分散 流量

    上傳時(shí)間: 2014-01-05

    上傳用戶(hù):l254587896

  • Input : A set S of planar points Output : A convex hull for S Step 1: If S contains no more than f

    Input : A set S of planar points Output : A convex hull for S Step 1: If S contains no more than five points, use exhaustive searching to find the convex hull and return. Step 2: Find a median line perpendicular to the X-axis which divides S into SL and SR SL lies to the left of SR . Step 3: Recursively construct convex hulls for SL and SR. Denote these convex hulls by Hull(SL) and Hull(SR) respectively. Step 4: Apply the merging procedure to merge Hull(SL) and Hull(SR) together to form a convex hull. Time complexity: T(n) = 2T(n/2) + O(n) = O(n log n)

    標(biāo)簽: contains Output convex planar

    上傳時(shí)間: 2017-02-19

    上傳用戶(hù):wyc199288

  • PowerPCB教程簡(jiǎn)介 歡迎使用 PowerPCB 教程。本教程描述了PADS-PowerPCB 的絕大部分功能 和特點(diǎn)

    PowerPCB教程簡(jiǎn)介 歡迎使用 PowerPCB 教程。本教程描述了PADS-PowerPCB 的絕大部分功能 和特點(diǎn),以及使用的各個(gè)過(guò)程,這些功能包括: · 基本操作 · 建立元件(Component) · 建立板子邊框線(xiàn)(Board outline) · 輸入網(wǎng)表(Netlist) · 設(shè)置設(shè)計(jì)規(guī)則(Design Rule) ·元件(Part)的布局(Placement) · 手工和交互的布線(xiàn) · SPECCTRA全自動(dòng)布線(xiàn)器(Route Engine) ·覆銅(Copper Pour) · 建立分隔/混合平面層(Split/mixed Plane) · Microsoft 的目標(biāo)連接與嵌入(OLE)(Object Linking Embedding) · 可選擇的裝配選件(Assembly options) · 設(shè)計(jì)規(guī)則檢查(Design Rule Check) · 反向標(biāo)注(Back Annotation) · 繪圖輸出(Plot Output) 使用本教程后,你可以學(xué)到印制電路板設(shè)計(jì)和制造的許多基本知識(shí)。 你不必一次完成整個(gè)教程,如果在任何時(shí)候退出后,下次直接找到你要進(jìn)入 的部分,繼續(xù)學(xué)習(xí)本教程。 當(dāng)你完成了本教程的學(xué)習(xí)后,可以參考在線(xiàn)幫助(On-line Help)以便得到更多 的信息。如果你需要附加的信息內(nèi)容,你可以與PADS 在各地辦事處或代理商取 得聯(lián)系,以便得到更多的幫助。 歡迎使用PowerPCB進(jìn)行PCB設(shè)計(jì)!

    標(biāo)簽: PowerPCB PADS-PowerPCB 教程

    上傳時(shí)間: 2013-12-12

    上傳用戶(hù):caozhizhi

  • Have you ever seen players eyes light up as they explore the worlds that you ve created in your gam

    Have you ever seen players eyes light up as they explore the worlds that you ve created in your games? If you have, then game development probably has you hooked firmly in its grasp! If you ve never taken your games beyond the PC, now s the time! "J2ME Game Programming" is a hands-on guide that teaches you how to create games for micro-devices. You ll be amazed at just how cool the games you create can look and play. Focusing primarily on mobile phone game creation, you ll jump right in and create your own games as you work your way through the book. The thought has surely crossed your mind that it would be nice to make some money off of this cool hobby of yours. J2ME offers real opportunity to profit from your games. Learn how you can earn revenue from your games by taking them to market. If you have a basic understanding of Java, then you re ready to explore all that "J2ME Game Programming" has to offer!

    標(biāo)簽: you created players explore

    上傳時(shí)間: 2017-02-25

    上傳用戶(hù):lanhuaying

  • pccard driver s3c2440.The S3C2440A offers outstanding features with its CPU core, a 16/32-bit ARM92

    pccard driver s3c2440.The S3C2440A offers outstanding features with its CPU core, a 16/32-bit ARM920T RISC processor designed by Advanced RISC Machines, Ltd. The ARM920T implements MMU, AMBA BUS, and Harvard cache architecture with separate 16KB instruction and 16KB data caches, each with an 8-word line length.

    標(biāo)簽: outstanding S3C2440A features pccard

    上傳時(shí)間: 2013-12-24

    上傳用戶(hù):lizhen9880

  • ccsc-HTML幫助 PCB, PCM and PCH Overview Technical Support Directories File Formats Invoking t

    ccsc-HTML幫助 PCB, PCM and PCH Overview Technical Support Directories File Formats Invoking the Command Line Compiler

    標(biāo)簽: Directories ccsc-HTML Technical Overview

    上傳時(shí)間: 2014-01-11

    上傳用戶(hù):qoovoop

主站蜘蛛池模板: 天峻县| 大冶市| 通城县| 常宁市| 灯塔市| 永嘉县| 大庆市| 峨山| 麦盖提县| 汽车| 金门县| 云霄县| 察隅县| 昌宁县| 承德市| 汨罗市| 烟台市| 健康| 邵阳县| 商河县| 德昌县| 达日县| 北安市| 吴旗县| 军事| 边坝县| 会宁县| 寿光市| 星座| 台东市| 孟津县| 惠东县| 宁阳县| 云南省| 昌吉市| 葫芦岛市| 梅河口市| 松溪县| 聊城市| 伊吾县| 区。|