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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

no-crashes-allowed

  • Qt/Embedded的安裝(本人親自安裝步驟) 準備源碼包 ◆ tmake 1.11 或更高版本;(生成Qt/Embedded應用工程的Makefile文件) ◆ Qt/Embedded 2.

    Qt/Embedded的安裝(本人親自安裝步驟) 準備源碼包 ◆ tmake 1.11 或更高版本;(生成Qt/Embedded應用工程的Makefile文件) ◆ Qt/Embedded 2.3.7 (Qt/Embedded 安裝包) ◆ Qt 2.3.2 for X11; (Qt的X11版的安裝包, 它將產生x11開發環境所需要的兩個工 具) 假設把源碼包解壓所在/root/build-arm下 1安裝tmake 進入tmake-1.11目錄 cd /root/build-arm/tmake-1.11 export TMAKEDIR=$PWD/tmake-1.11 export TMAKEPATH=$TMAKEDIR/lib/qws/linux-arm-g++ export PATH=$TMAKEDIR/bin:$PATH 2.安裝Qt/X11 2.3.2 cd qt-2.3.2 export QTDIR=$PWD export PATH=$QTDIR/bin:$PATH export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH ./configure -no-xft -thread -gif -system-jpeg -sm -shared [make] make -C tools/qvfb make -C tools/qembed

    標簽: Embedded Qt Makefile tmake

    上傳時間: 2013-12-22

    上傳用戶:sk5201314

  • //獲得當前的模式 oldmode = vga_getcurrentmode[] //初始化 vga_init[] //判斷是否支持該模式 if[vga_ha

    //獲得當前的模式 oldmode = vga_getcurrentmode[] //初始化 vga_init[] //判斷是否支持該模式 if[vga_hasmode[mode]] vga_setmode[mode] else { printf["No such mode\n"] exit[1] } //取得信息 width = vga_getxdim[] height = vga_getydim[] colors = vga_getcolors[] //繪圖 for[i=0 i<colors i++]{ vga_setcolor[i] vga_drawline[0, i, width-1, i] }

    標簽: vga_getcurrentmode vga_init oldmode vga_ha

    上傳時間: 2014-12-19

    上傳用戶:maizezhen

  • //獲得當前的模式 oldmode = vga_getcurrentmode[] //初始化 vga_init[] //判斷是否支持該模式 if[vga_ha

    //獲得當前的模式 oldmode = vga_getcurrentmode[] //初始化 vga_init[] //判斷是否支持該模式 if[vga_hasmode[mode]] vga_setmode[mode] else { printf["No such mode\n"] exit[1] } //獲得當前的模式 mode = vga_getcurrentmode[] info = vga_getmodeinfo[mode]

    標簽: vga_getcurrentmode vga_init oldmode vga_ha

    上傳時間: 2017-03-24

    上傳用戶:ecooo

  • Managing Humans is a selection of the best essays from Michael Lopps web site, Rands In Repose. Draw

    Managing Humans is a selection of the best essays from Michael Lopps web site, Rands In Repose. Drawing on Lopp s management experiences at Apple, Netscape, Symantec, and Borland, this book is full of stories based on companies in the Silicon Valley where people have been known to yell at each other. It is a place full of dysfunctional bright people who are in an incredible hurry to find the next big thing so they can strike it rich and then do it all over again. Among these people are managers, a strange breed of people who through a mystical organizational ritual have been given power over your future and your bank account. Whether you re an aspiring manager, a current manager, or just wondering what the heck a manager does all day, there is a story in this book that will speak to you. You will learn: * What to do when people start yelling at each other * How to perform a diving save when the best engineer insists on resigning * How to say "No" to the person who signs your paycheck

    標簽: selection Managing Michael Humans

    上傳時間: 2014-11-28

    上傳用戶:1427796291

  • Use the crypto module to encrypt sensitive data using a key you generated yourself... This is quite

    Use the crypto module to encrypt sensitive data using a key you generated yourself... This is quite handy with INI files which you can use to get and set data for you applications. You can also check out some dates related to passwords and expiry dates. Send emails using Microsoft Email client. No need to cater for SMTP nor Exchange mail accounts. If you can send email with your outlook, you can send email with your application. Get some windows info with the sysinfoctrls member.

    標簽: generated sensitive yourself encrypt

    上傳時間: 2017-04-04

    上傳用戶:yuanyuan123

  • 單總線多點測溫系統

    單總線多點測溫系統,單總線它采用單根信號線既傳輸時鐘又傳輸數據,而且數據傳輸是雙向的它具有節省I/O 口線資源結構簡單成本低廉便于總線擴展和 維護等諸多優點。本系統中所有的DS18B20都接在單片機的P1.1口上。用一個液晶屏顯示,從單片機P3口接上8個開關,與右邊的DS18B20 編號對應。當沒有開關按下時屏幕顯示"which NO you want press which key",要想看那一點處的溫度就按下幾號鍵(點擊key右邊的小紅 點,按一下彈下,再按一下彈起)。只能有一個按鍵按下,當有多個按鍵下時,屏幕上顯示“please press one key only !".

    標簽: 單總線 多點測溫

    上傳時間: 2017-04-07

    上傳用戶:小碼農lz

  • c pgm to find redundant paths in a graph.Many fault-tolerant network algorithms rely on an underlyin

    c pgm to find redundant paths in a graph.Many fault-tolerant network algorithms rely on an underlying assumption that there are possibly distinct network paths between a source-destination pair. Given a directed graph as input, write a program that uses depth-first search to determine all such paths. Note that, these paths are not vertex-disjoint i.e., the vertices may repeat but they are all edge-disjoint i.e., no two paths have the same edges. The input is the adjacency matrix of a directed acyclic graph and a pair(s) of source and destination vertices and the output should be the number of such disjoint paths and the paths themselves on separate lines. In case of multiple paths the output should be in order of paths with minimum vertices first. In case of tie the vertex number should be taken in consideration for ordering.

    標簽: fault-tolerant algorithms redundant underlyin

    上傳時間: 2013-12-18

    上傳用戶:jkhjkh1982

  • Shortest Paths with Multiplicative Cost. In a given undirected graph, the path cost is measured as a

    Shortest Paths with Multiplicative Cost. In a given undirected graph, the path cost is measured as a product of all the edges in the path. The weights are rational numbers (e.g., 0.25, 0.75, 3.75 etc) or integers (2, 3). There are no negative edges. Given such a graph as input, you are to output the shortest path between any two given vertices. Input is the adjacency matrix and the two vertices. You must output the path.

    標簽: Multiplicative undirected Shortest measured

    上傳時間: 2017-04-08

    上傳用戶:邶刖

  • Using an easy-to-follow format, this book explains the basics of MATLAB up front. You ll find out ho

    Using an easy-to-follow format, this book explains the basics of MATLAB up front. You ll find out how to plot functions, solve algebraic equations, and compute integrals. You ll also learn how to solve differential equations, generate numerical solutions of ODEs, and work with special functions. Packed with hundreds of sample equations and explained solutions, and featuring end-of-chapter quizzes and a final exam, this book will teach you MATLAB essentials in no time at all.

    標簽: easy-to-follow explains MATLAB basics

    上傳時間: 2017-04-10

    上傳用戶:時代電子小智

  • MATLAB implementation of time series prediction Based on the VQTAM method described in the following

    MATLAB implementation of time series prediction Based on the VQTAM method described in the following papers: G. A. Barreto & A. F. R. Araujo (2004) "Identification and Control of Dynamical Systems Using the Self-Organizing Map" IEEE Transactions on Neural Networks, vol. 15, no. 5.

    標簽: implementation prediction described following

    上傳時間: 2013-12-22

    上傳用戶:windwolf2000

主站蜘蛛池模板: 镇安县| 泾阳县| 武威市| 汾西县| 城步| 郑州市| 桑日县| 新河县| 达孜县| 汝州市| 古浪县| 永州市| 贺州市| 涟源市| 沂源县| 平陆县| 武清区| 普格县| 台山市| 芜湖市| 青神县| 杨浦区| 长沙县| 吉木萨尔县| 泰宁县| 平罗县| 左云县| 桐城市| 漠河县| 北海市| 民权县| 丹寨县| 济源市| 建阳市| 苍南县| 浪卡子县| 罗城| 交口县| 蕉岭县| 宝丰县| 潮安县|