溫度傳感器用單總線DS18B20,CPU為2051,三個按鍵,分別為UP,DOWN,SET溫度調節上限為125度,下限為-55度。
上傳時間: 2013-12-03
上傳用戶:wlcaption
this is the documentation for intel processors, first volume. it contains detailed specification and instrucion set - for hardcore programers on assembly
標簽: documentation specification processors contains
上傳時間: 2017-06-05
上傳用戶:希醬大魔王
Novell.Press.Linux.Kernel.Development linux內核開發的經典書籍之一 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
標簽: 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 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.
標簽: language Nutshell Learning involves
上傳時間: 2013-12-25
上傳用戶:王者A
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
標簽: efficient construct powerful modeling
上傳時間: 2013-12-15
上傳用戶:cc1015285075
首先確認您的機器上已經安裝了VC6.0以上版本,要編譯生成可執行文件,需打開后綴名為dsw的文件,系統會默認用VC打開,然后選擇Build菜單下的Set Active Configuration選項,選擇Project Configuration為Win32 Release,然后編譯項目,得到可執行文件。連接數據庫請參照第2章的方法,在ODBC數據源內添加Microsoft Access數據庫
上傳時間: 2013-11-26
上傳用戶:pompey
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) //設置覆蓋模式 form_driver(form, REQ_OVL_MODE)
標簽: form cols rows scale_form
上傳時間: 2017-06-12
上傳用戶:wff
//初始化 if(initscr() == NULL) { perror("initcurs") exit(EXIT_FAILURE) } //設置模式 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)
標簽: EXIT_FAILURE initcurs initscr perror
上傳時間: 2013-12-20
上傳用戶:FreeSky
//初始化 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) //設置為5行單列的菜單 set_menu_format(mymenu, 5, 1) set_menu_mark(mymenu, "*") //獲得菜單的行數很列數 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) //設置菜單的窗口 set_menu_sub(mymenu, subwin) //在子窗口上放置菜單 post_menu(mymenu) refresh() wrefresh(win)
標簽: EXIT_FAILURE initcurs initscr cbreak
上傳時間: 2013-11-29
上傳用戶:小眼睛LSL
本程序采用ACC數據核心構件!! 功能介紹: 程序代碼重新設計與優化,瀏覽速度可以說是比較一流! 程序更新設計相對管理目錄!讓你修改更加方便! 全站無后臺控制的地方我們全用JS調用的方式進行管理,大大降低了您的工作量! 后臺控制封閉管理程式!! 特點: 更新家族對戰管理平臺!可以說在發布站界是第一的! 后臺采用HTML生成↓ (可以窗口化瀏覽生成代碼/主要是方便修改與觀看錯誤信息,優化了老發布系統的直接生成) 更多功能請在商業版本程序中體驗! 程序結構: Admin 后臺管理核心 Data 數據庫存放目錄 inc 發布站前臺核心文件 index_ad 廣告圖片存放目錄 index_img 前臺基本圖片存放目錄 index_top 前臺TOP圖片存放目錄 top_ad 發布站前臺文字廣告/圖片廣告/JS文件存放目錄/請自行修改JS代碼! Top_Go 發布站連接導航目錄 | | top_Wz.js 頂部文字導航JS文件!需要修改導航請修改JS代碼! 以下文件不懂請勿亂修改
上傳時間: 2013-11-28
上傳用戶:wanqunsheng