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

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

USB-IF協(xié)會(huì)

  • USB是PC體系中的一套全新的工業(yè)標(biāo)準(zhǔn)

    USB是PC體系中的一套全新的工業(yè)標(biāo)準(zhǔn),它支持單個(gè)主機(jī)與多個(gè)外接設(shè)備同時(shí)進(jìn)行數(shù)據(jù)交換。 首先會(huì)介紹USB的結(jié)構(gòu)和特點(diǎn),包括總線特徵、協(xié)議定義、傳輸方式和電源管理等等。這部分內(nèi)容會(huì)使USB開發(fā)者和用戶對USB有一整體的認(rèn)識(shí)。

    標(biāo)簽: USB

    上傳時(shí)間: 2015-10-18

    上傳用戶:lixinxiang

  • WINXP 環(huán)境下 抓取USB封包的程式 (使用此程式 對於USB封包格式要很清楚 不然會(huì)看不懂)

    WINXP 環(huán)境下 抓取USB封包的程式 (使用此程式 對於USB封包格式要很清楚 不然會(huì)看不懂)

    標(biāo)簽: USB WINXP 程式

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

    上傳用戶:源碼3

  • USB協(xié)議深層剖析

    USB協(xié)議深層剖析,內(nèi)含完整的USB通訊中文的說明

    標(biāo)簽: USB

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

    上傳用戶:qq21508895

  • that main is usb and chuankou s contact and are used,I don t konw if they are used

    that main is usb and chuankou s contact and are used,I don t konw if they are used

    標(biāo)簽: used and are chuankou

    上傳時(shí)間: 2017-01-24

    上傳用戶:wangdean1101

  • USB接口控制器參考設(shè)計(jì),xilinx提供VHDL代碼 us

    USB接口控制器參考設(shè)計(jì),xilinx提供VHDL代碼 usb xilinx vhdl ;  This program is free software; you can redistribute it and/or modify ;  it under the terms of the GNU General Public License as published by ;  the Free Software Foundation; either version 2 of the License, or ;  (at your option) any later version. ;      ;  This program is distributed in the hope that it will be useful, ;  but WITHOUT ANY WARRANTY; without even the implied warranty of ;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the ;  GNU General Public License for more details. ;      ;  You should have received a copy of the GNU General Public License ;  along with this program; if not, write to the Free Software ;  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    標(biāo)簽: xilinx VHDL USB us

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

    上傳用戶:windgate

  • USB接口控制器參考設(shè)計(jì),xilinx提供VHDL代碼 us

    USB接口控制器參考設(shè)計(jì),xilinx提供VHDL代碼 usb xilinx vhdl ;  This program is free software; you can redistribute it and/or modify ;  it under the terms of the GNU General Public License as published by ;  the Free Software Foundation; either version 2 of the License, or ;  (at your option) any later version. ;      ;  This program is distributed in the hope that it will be useful, ;  but WITHOUT ANY WARRANTY; without even the implied warranty of ;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the ;  GNU General Public License for more details. ;      ;  You should have received a copy of the GNU General Public License ;  along with this program; if not, write to the Free Software ;  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    標(biāo)簽: xilinx VHDL USB us

    上傳時(shí)間: 2013-10-29

    上傳用戶:zhouchang199

  • This directory contains the memtest 8051 firmware for the Anchor Chips EZ-USB chip. The purpose

    This directory contains the memtest 8051 firmware for the Anchor Chips EZ-USB chip. The purpose of this software is to test the different memory segments in the Ez-Usb chip. This example will output the string "good" on the 7 segment LED if the mem test passes, or it will output the first address where the memtest fails.

    標(biāo)簽: directory the contains firmware

    上傳時(shí)間: 2015-05-04

    上傳用戶:zxc23456789

  • //打開 USB 口讀寫, 由驅(qū)動(dòng)程序的 Pipe 名確定 HANDLE hPipe = OpenMyDevPipe("MyPipe1") //驅(qū)動(dòng)程序里面的 Pipe 名, 對應(yīng)訪問某個(gè)端點(diǎn)

    //打開 USB 口讀寫, 由驅(qū)動(dòng)程序的 Pipe 名確定 HANDLE hPipe = OpenMyDevPipe("MyPipe1") //驅(qū)動(dòng)程序里面的 Pipe 名, 對應(yīng)訪問某個(gè)端點(diǎn)的 I/O, 這里我亂寫的, 需要與驅(qū)動(dòng)一致 if(hPipe != INVALID_HANDLE_VALUE) //打開 Pipe 成功 { ReadFile(hPipe, Buffer, BufSize, &nBytesRead, NULL) //從 hPipe 里讀取數(shù)據(jù)到 Buffer 里 //WriteFile(hPipe, Buffer, BytesToWrite, &nBytesWritten, NULL) //把 Buffer 里面的 BytesToWrite 字節(jié)寫入 hPipe CloseHandle(hPipe) } //使用 DeviceIoControl 訪問 USB 設(shè)備 HANDLE hDevice = OpenMyDevice() if(hDevice != INVALID_HANDLE_VALUE) //打開設(shè)備成功 { //這些 DeviceIoControl 功能都是由設(shè)備定義的, 具體看設(shè)備和驅(qū)動(dòng)的資料 if(DeviceIoControl(hDevice, IOCTL_READ_xxxx, &IOBlock, sizeof(IOBLOCK), &c, 1, &nBytes, NULL)) { //成功 } CloseHandle(hDevice) }

    標(biāo)簽: Pipe OpenMyDevPipe MyPipe1 HANDLE

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

    上傳用戶:stampede

  • 安全移除usb設(shè)備功能

    安全移除usb設(shè)備功能,可禁止某類usb設(shè)備的使用,實(shí)行系統(tǒng)安全控制Removing a USB drive using the Windows tray icon is easy - especially if you single left-click it... But sometimes it s useful to it from your program

    標(biāo)簽: usb 設(shè)備

    上傳時(shí)間: 2015-10-15

    上傳用戶:dianxin61

  • This directory contains the memtest 8051 firmware for the Anchor Chips EZ-USB chip. The purpose

    This directory contains the memtest 8051 firmware for the Anchor Chips EZ-USB chip. The purpose of this software is to test the different memory segments in the Ez-Usb chip. This example will output the string "good" on the 7 segment LED if the mem test passes, or it will output the first address where the memtest fails.

    標(biāo)簽: directory the contains firmware

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

    上傳用戶:gdgzhym

主站蜘蛛池模板: 惠安县| 梅河口市| 大田县| 崇仁县| 新野县| 湖口县| 建湖县| 元朗区| 桐梓县| 肃南| 巴马| 大同县| 澎湖县| 内江市| 关岭| 全椒县| 耿马| 道真| 遂昌县| 石嘴山市| 奎屯市| 玛多县| 留坝县| 康定县| 洛扎县| 本溪市| 平乡县| 原平市| 开阳县| 莲花县| 金塔县| 南郑县| 通州区| 林西县| 丹阳市| 固镇县| 抚松县| 英山县| 招远市| 永新县| 闻喜县|