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

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

現(xiàn)場(chǎng)總線

  • This manual describes SAMSUNG s S3C2410A 16/32-bit RISC microprocessor. This product is designed to

    This manual describes SAMSUNG s S3C2410A 16/32-bit RISC microprocessor. This product is designed to provide hand-held devices and general applications with cost-effective, low-power, and high-performance micro-controller solution in small die size. To reduce total system cost, the S3C2410A includes the following components separate 16KB Instruction and 16KB Data Cache, MMU to handle virtual memory management, LCD Controller (STN & TFT), NAND Flash Boot Loader, System Manager (chip select logic and SDRAM Controller), 3-ch UART, 4-ch DMA, 4-ch Timers with PWM, I/O Ports, RTC, 8-ch 10-bit ADC and Touch Screen Interface, IIC-BUS Interface, IIS-BUS Interface, USB Host, USB Device, SD Host & Multi-Media Card Interface, 2-ch SPI and PLL for clock generation.

    標簽: This microprocessor describes S3C2410A

    上傳時間: 2013-11-30

    上傳用戶:GavinNeko

  • 學會一個程式語言

    學會一個程式語言,是一回事兒;學會如何以此語言設計並實作出有效的程式,又是一回事兒。C++ 尤其如此,因為它很不尋常地涵蓋了罕見的威力和豐富的表現力,不但建立在一個全功能的傳統語言(C)之上,更提供極為廣泛的物件導向(object-oriented)性質,以及對templates 和exceptions(異常狀態)的支援。

    標簽: 程式

    上傳時間: 2013-12-09

    上傳用戶:ANRAN

  • introduce the reader to the fundamentals of modelling, analysis, and simulation of mobile fading ch

    introduce the reader to the fundamentals of modelling, analysis, and simulation of mobile fading channels

    標簽: fundamentals simulation introduce the

    上傳時間: 2013-12-20

    上傳用戶:bruce

  • 跟類神經網路有點像的東西

    跟類神經網路有點像的東西, 不過現今最常拿來就是做分類也就是說,如果我有一堆已經分好類的東西 (可是分類的依據是未知的!) ,那當收到新的東西時, SVM 可以預測 (predict) 新的資料要分到哪一堆去。

    標簽:

    上傳時間: 2014-01-18

    上傳用戶:hasan2015

  • busybox 配置錯誤的解決方法 2007-07-26 11:04 1. 如何編譯 2. 常見問題 - 如何將 busybox 編譯成 static linking - make menu

    busybox 配置錯誤的解決方法 2007-07-26 11:04 1. 如何編譯 2. 常見問題 - 如何將 busybox 編譯成 static linking - make menuconfig 出現下列錯誤

    標簽: busybox linking static 2007

    上傳時間: 2014-01-23

    上傳用戶:tfyt

  • 關于制造回文 描述 回文

    關于制造回文 描述 回文,亦稱回環,是正讀反讀都能讀通的句子,亦有將文字排列成圓圈者,是一種修辭方式和文字游戲。回文運用得當,可以表現兩種事物或現象相互依靠或排斥的關系。總有人以為回文是英文的專利,其實不然,中文中也有很多回文的例子,譬如: 鶯啼岸柳弄春晴, 柳弄春晴夜月明。 明月夜晴春弄柳, 晴春弄柳岸啼鶯。 看著很有意思,可要想寫出回文,并不是一件很容易的事情。如果有一個字符串,怎樣才能插入最少的內容,把它變成回文呢? 例如,要想把字符串 "Zb3bd" 變成回文,就需要插入兩個字符,變成 "dZb3bZd" 或者 "Zdb3bdZ",插入一個字符,是肯定不行的。 輸入 輸入的第一行是字符串的長度 N,3 <= N <= 5000,第二行是一個長度為 N 的字符串。該字符串由英文大小寫字母和數字組成,英文大寫字母和小寫字母是不同的。 輸出 程序輸出要把該字符串變成回文,需要插入的最少字符數。

    標簽: 制造

    上傳時間: 2014-01-24

    上傳用戶:gundamwzc

  • File: dir.h ScanOneDirectorySector(unsigned long sector, char *name) extern void MakeFileName(ch

    File: dir.h ScanOneDirectorySector(unsigned long sector, char *name) extern void MakeFileName(char *inname, char *outname) ScanOneDirectorySector(unsigned long sector, char *name) extern void MakeFileName(char *inname, char *outname)

    標簽: ScanOneDirectorySector MakeFileName unsigned extern

    上傳時間: 2014-12-04

    上傳用戶:hn891122

  • File: dir_39 canOneDirectorySector(unsigned long sector, char *name) extern void MakeFileName(ch

    File: dir_39 canOneDirectorySector(unsigned long sector, char *name) extern void MakeFileName(char *inname, char *outname) ScanOneDirectorySector(unsigned long sector, char *name) extern void MakeFileName(char *inname, char *outname)

    標簽: canOneDirectorySector MakeFileName unsigned extern

    上傳時間: 2014-01-20

    上傳用戶:894898248

  • client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> i

    client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr *)&address, len) if(result == -1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) printf("char from server = c\n", ch) close(sockfd) exit(0) }

    標簽: include socket sys gt

    上傳時間: 2017-07-29

    上傳用戶:wab1981

  • 檔案傳輸協定(FTP)為目前相當普遍與廣泛使用之網路 應用。然而在傳統檔案傳輸協定之設計下

    檔案傳輸協定(FTP)為目前相當普遍與廣泛使用之網路 應用。然而在傳統檔案傳輸協定之設計下,資料 傳輸透過Out-of-Band(OOB)之機制,意即透過控制頻道(control channel)傳輸指令 ,而實際資料 傳輸則另外透過特定之通訊埠以及TCP連 線,進行 傳送。如此一來 可確保資料 傳輸之可靠與穩定性,但另一方面則會造成傳輸率 (throughput)效能低落 。因此,在本計劃中,我們透過使用SCTP協定並利 用多重串 流 (multi-stream)機制,達到以In-Band機制達成Out-of-Band傳輸之相同效果。在本研究之最後亦透過於開放原始碼系統實作並實際量 測,証

    標簽: 63799 FTP

    上傳時間: 2013-12-10

    上傳用戶:2467478207

主站蜘蛛池模板: 福泉市| 景泰县| 满城县| 成安县| 凤城市| 金塔县| 永吉县| 翁源县| 边坝县| 河北省| 聊城市| 巴南区| 海宁市| 鹤庆县| 潮安县| 东丰县| 鄂州市| 岳阳县| 永新县| 正安县| 雅江县| 阿巴嘎旗| 柳林县| 霍山县| 册亨县| 普格县| 富源县| 景洪市| 望江县| 洮南市| 方正县| 吉木萨尔县| 淮阳县| 黄平县| 洞口县| 特克斯县| 东丰县| 府谷县| 开远市| 秭归县| 且末县|