搜索:usb-i
找到约 500 项符合「usb-i」的查询结果
结果 500
按分类筛选
- 全部
- 技术资料 (1712)
- USB编程 (1057)
- 单片机开发 (809)
- 驱动编程 (336)
- 微处理器开发 (282)
- 嵌入式/单片机编程 (218)
- 其他 (205)
- Linux/Unix编程 (190)
- 其他书籍 (151)
- 其他嵌入式/单片机内容 (142)
- 嵌入式Linux (124)
- DSP编程 (108)
- 单片机编程 (106)
- VHDL/FPGA/Verilog (95)
- 软件设计/软件工程 (93)
- 系统设计方案 (86)
- 通讯编程文档 (82)
- VC书籍 (65)
- 文章/文档 (59)
- 汇编语言 (58)
- Windows CE (57)
- 电子书籍 (56)
- 接口技术 (51)
- matlab例程 (47)
- 串口编程 (46)
- 通讯/手机编程 (42)
- Delphi控件源码 (33)
- Java编程 (32)
- uCOS (32)
- 数学计算 (28)
- 书籍源码 (27)
- 数据结构 (27)
- 软件工程 (26)
- 学术论文 (24)
- 嵌入式综合 (24)
- 网络 (23)
- 中间件编程 (22)
- 技术书籍 (21)
- 编译器/解释器 (21)
- 教程资料 (19)
- 操作系统开发 (18)
- 压缩解压 (18)
- VxWorks (17)
- 数值算法/人工智能 (16)
- 文件格式 (16)
- *行业应用 (14)
- 软件 (14)
- 加密解密 (13)
- 技术管理 (13)
- 人工智能/神经网络 (12)
- Java书籍 (12)
- 电源技术 (11)
- 可编程逻辑 (11)
- 电子技术 (10)
- 通信网络 (10)
- 磁盘编程 (10)
- 其他行业 (10)
- 通信技术 (9)
- 电子书籍 (9)
- 行业应用文档 (9)
- 技术教程 (9)
- 实用工具 (9)
- 驱动程序 (8)
- 开发工具 (8)
- Internet/网络编程 (8)
- 源码 (8)
- 开发板开源 (7)
- 测试测量 (6)
- 手机短信编程 (6)
- 编辑器/阅读器 (6)
- 其他数据库 (6)
- FlashMX/Flex源码 (6)
- 行业发展研究 (6)
- 书籍 (6)
- C/C++语言编程 (5)
- 模拟电子 (5)
- 教程资料 (5)
- SCSI/ASPI (5)
- GPS编程 (5)
- 实用电子技术 (4)
- 电路图 (4)
- 并口编程 (4)
- 能源行业(电力石油煤炭) (4)
- 精品软件 (4)
- 手册 (4)
- 其他 (4)
- PCB相关 (3)
- 设计相关 (3)
- 数据库系统 (3)
- 其他文档 (3)
- 资料/手册 (3)
- 工控技术 (3)
- Modem编程 (3)
- 传真(Fax)编程 (3)
- 多国语言处理 (3)
- 金融证券系统 (3)
- SQL Server (3)
- 3G开发 (3)
- 教程 (3)
- 电路图 (3)
https://www.eeworm.com/dl/643/401417.html
USB编程
good book for usb development which i digg from driverdevelop.com
good book for usb development which i digg from driverdevelop.com
https://www.eeworm.com/dl/687/257396.html
其他嵌入式/单片机内容
A example for I/O of USB interface in AVR single chip.
A example for I/O of USB interface in AVR single chip.
https://www.eeworm.com/dl/843247.html
技术资料
RTL8211F (I) /RTL8211FD (I) datasheet
the realtek rtl8211f-cg/rtl8211fd0cg/rtl8211fi-cg/rtl8211fdi-cg is a highly integrated ethermet transceiver that complies with 10base-t,100base-x,and 1000base-t ieee 802.3 standards.
https://www.eeworm.com/dl/836300.html
技术资料
RTL8211F(I) / RTL8211FD(I) Datasheet
RTL 8211 规格书 用于了解产品特性和电气参数 硬件参考设计RTL8211F-CG RTL8211FD-CG
RTL8211FI-CG RTL8211FDI-CG
https://www.eeworm.com/dl/639/426632.html
文件格式
This is a PCI to USB bridge schematic that i was draw by hand from a PCI to USB card, the schematic
This is a PCI to USB bridge schematic that i was draw by hand from a PCI to USB card, the schematic use VT6212L to make bridge, the idear is that we can use microcontroler interface to PC through PCI slot by USB, ha ha it is too easy.
https://www.eeworm.com/dl/654/393662.html
数据结构
void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=
void Knight(int i , int j)
{
// printf("%d %dn",i,j)
if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size )
{
return
}
step++
board[i][j]=step
if (step == Size*Size)
{
showboard()
system("PAUSE")
return
}
//DFS
Knight(i-2,j-1) //left
Knight(i-2,j+1)
Kni ...