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

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

SET-TOP-Box

  • 溫度傳感器用單總線DS18B20

    溫度傳感器用單總線DS18B20,CPU為2051,三個按鍵,分別為UP,DOWN,SET溫度調(diào)節(jié)上限為125度,下限為-55度。

    標(biāo)簽: 18B B20 DS 18

    上傳時間: 2013-12-03

    上傳用戶:wlcaption

  • this is the documentation for intel processors, first volume. it contains detailed specification and

    this is the documentation for intel processors, first volume. it contains detailed specification and instrucion set - for hardcore programers on assembly

    標(biāo)簽: documentation specification processors contains

    上傳時間: 2017-06-05

    上傳用戶:希醬大魔王

  • Novell.Press.Linux.Kernel.Development linux內(nèi)核開發(fā)的經(jīng)典書籍之一 The Linux kernel is one of the most interes

    Novell.Press.Linux.Kernel.Development linux內(nèi)核開發(fā)的經(jīng)典書籍之一 The Linux kernel is one of the most interesting yet least understood open-source projects. It is also a basis for developing new kernel code. That is why Sams is excited to bring you the latest Linux kernel development information from a Novell insider in the second edition of Linux Kernel Development. This authoritative, practical guide will help you better understand the Linux kernel through updated coverage of all the major subsystems, new features associated with Linux 2.6 kernel and insider information on not-yet-released developments. You ll be able to take an in-depth look at Linux kernel from both a theoretical and an applied perspective as you cover a wide range of topics, including algorithms, system call interface, paging strategies and kernel synchronization. Get the top information right from the source in Linux Kernel Development

    標(biāo)簽: Linux Development interes Novell

    上傳時間: 2017-06-06

    上傳用戶:songyue1991

  • C in A Nutshell Learning a language--any language--involves a process wherein you learn to rely les

    C in A Nutshell Learning a language--any language--involves a process wherein you learn to rely less and less on instruction and more increasingly on the aspects of the language you ve mastered. Whether you re learning French, Java, or C, at some point you ll set aside the tutorial and attempt to converse on your own. It s not necessary to know every subtle facet of French in order to speak it well, especially if there s a good dictionary available. Likewise, C programmers don t need to memorize every detail of C in order to write good programs. What they need instead is a reliable, comprehensive reference that they can keep nearby. C in a Nutshell is that reference.

    標(biāo)簽: language Nutshell Learning involves

    上傳時間: 2013-12-25

    上傳用戶:王者A

  • Buses are a powerful and efficient modeling construct. Using them to produce optimal code is depende

    Buses are a powerful and efficient modeling construct. Using them to produce optimal code is dependent on following a basic set of best practices. This document provides a set of patterns that can be followed the best results

    標(biāo)簽: efficient construct powerful modeling

    上傳時間: 2013-12-15

    上傳用戶:cc1015285075

  • 首先確認您的機器上已經(jīng)安裝了VC6.0以上版本

    首先確認您的機器上已經(jīng)安裝了VC6.0以上版本,要編譯生成可執(zhí)行文件,需打開后綴名為dsw的文件,系統(tǒng)會默認用VC打開,然后選擇Build菜單下的Set Active Configuration選項,選擇Project Configuration為Win32 Release,然后編譯項目,得到可執(zhí)行文件。連接數(shù)據(jù)庫請參照第2章的方法,在ODBC數(shù)據(jù)源內(nèi)添加Microsoft Access數(shù)據(jù)庫

    標(biāo)簽: 6.0 VC 機器 版本

    上傳時間: 2013-11-26

    上傳用戶:pompey

  • form = new_form(fields) scale_form(form, &rows, &cols) win = newwin(rows+3, cols+4, 3, 20)

    form = new_form(fields) scale_form(form, &rows, &cols) win = newwin(rows+3, cols+4, 3, 20) subwin = derwin(win, rows, cols, 1, 2) set_form_sub(form, subwin) box(win, 0, 0) keypad(win, TRUE) post_form(form) refresh() wrefresh(win) wrefresh(subwin) //設(shè)置覆蓋模式 form_driver(form, REQ_OVL_MODE)

    標(biāo)簽: form cols rows scale_form

    上傳時間: 2017-06-12

    上傳用戶:wff

  • //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //設(shè)置模式

    //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //設(shè)置模式 cbreak() noecho() keypad(stdscr, TRUE) //建立窗口 win = newwin(h, w, 3, 20) box(win, 0, 0) keypad(win, TRUE) wmove(win, cury, curx) mvaddstr(16, 1, "Press arrow keys to move the cursor within the window.\n") mvaddstr(17, 1, "Press q to quit.\n") refresh() wrefresh(win)

    標(biāo)簽: EXIT_FAILURE initcurs initscr perror

    上傳時間: 2013-12-20

    上傳用戶:FreeSky

  • //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } cbreak()

    //初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } cbreak() noecho() keypad(stdscr, TRUE) //建立菜單項 for(i=0 i<N_ITEMS i++){ items[i] = new_item(months[i], "") } //建立菜單 mymenu = new_menu(items) //設(shè)置為5行單列的菜單 set_menu_format(mymenu, 5, 1) set_menu_mark(mymenu, "*") //獲得菜單的行數(shù)很列數(shù) scale_menu(mymenu, &mrows, &mcols) //建立窗口和子窗口 win = newwin(mrows + 2, mcols + 2, 3, 30) keypad(win, TRUE) box(win, 0, 0) subwin = derwin(win, 0, 0, 1, 1) //設(shè)置菜單的窗口 set_menu_sub(mymenu, subwin) //在子窗口上放置菜單 post_menu(mymenu) refresh() wrefresh(win)

    標(biāo)簽: EXIT_FAILURE initcurs initscr cbreak

    上傳時間: 2013-11-29

    上傳用戶:小眼睛LSL

  • 本程序采用ACC數(shù)據(jù)核心構(gòu)件!! 功能介紹: 程序代碼重新設(shè)計與優(yōu)化

    本程序采用ACC數(shù)據(jù)核心構(gòu)件!! 功能介紹: 程序代碼重新設(shè)計與優(yōu)化,瀏覽速度可以說是比較一流! 程序更新設(shè)計相對管理目錄!讓你修改更加方便! 全站無后臺控制的地方我們?nèi)肑S調(diào)用的方式進行管理,大大降低了您的工作量! 后臺控制封閉管理程式!! 特點: 更新家族對戰(zhàn)管理平臺!可以說在發(fā)布站界是第一的! 后臺采用HTML生成↓ (可以窗口化瀏覽生成代碼/主要是方便修改與觀看錯誤信息,優(yōu)化了老發(fā)布系統(tǒng)的直接生成) 更多功能請在商業(yè)版本程序中體驗! 程序結(jié)構(gòu): Admin 后臺管理核心 Data 數(shù)據(jù)庫存放目錄 inc 發(fā)布站前臺核心文件 index_ad 廣告圖片存放目錄 index_img 前臺基本圖片存放目錄 index_top 前臺TOP圖片存放目錄 top_ad 發(fā)布站前臺文字廣告/圖片廣告/JS文件存放目錄/請自行修改JS代碼! Top_Go 發(fā)布站連接導(dǎo)航目錄 | | top_Wz.js 頂部文字導(dǎo)航JS文件!需要修改導(dǎo)航請修改JS代碼! 以下文件不懂請勿亂修改

    標(biāo)簽: ACC 程序 數(shù)據(jù) 代碼

    上傳時間: 2013-11-28

    上傳用戶:wanqunsheng

主站蜘蛛池模板: 肇州县| 和田县| 苍山县| 增城市| 大关县| 承德市| 双桥区| 霞浦县| 东安县| 冀州市| 卢龙县| 陆良县| 平果县| 江城| 全椒县| 九龙城区| 兰州市| 华蓥市| 车险| 庆云县| 康定县| 习水县| 鄂伦春自治旗| 嵩明县| 嵊泗县| 柳河县| 静乐县| 汝州市| 肇州县| 皋兰县| 吉水县| 唐海县| 沧州市| 独山县| 石台县| 克东县| 邵东县| 玉门市| 宣威市| 扶风县| 梁平县|