代码搜索结果

找到约 10,000 项符合 Serial 的代码

serial-api.txt

BlueZ D-Bus Serial API description ********************************** Copyright (C) 2004-2008 Marcel Holtmann Serial hierarchy ================ Service org.bluez Interface

serial-api.txt

Bluetooth serial service API description **************************************** Copyright (C) 2006-2007 Marcel Holtmann Manager hierarchy ================= Interface org.b

serial_key.c

/*************************************************************************************************** 功能:基于74HC165串行键盘驱动 ******************************************************************************

7920serial.lnp

"STARTUP.obj", "st7920serial.obj" TO "7920serial" RAMSIZE(256)

7920serial.hex

:03000000020BDE12 :0C0BDE00787FE4F6D8FD758121020C251B :10000E0030313233343536373839203A2E00D2BBC0 :10001E0000B6FE00C800CBC400CEE500C1F900C892 :10002E00D500B9D800BFAA00B5E7D7D3CDF2C4EA40 :10003E00

7920serial.opt

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.s*; *.src; *.a*) oExt (*.obj) lExt (*.lib) tExt (*.txt; *.h; *.inc) pExt (*.plm) CppX (*.cpp) DaveTm {

7920serial.plg

礦ision3 Build Log Project: F:\board\7-23\board\st7920串行\7920serial.uv2 Project File Date: 07/24/2007 Output: Build target 'Target 1' assembli

serial-2410.c

/***************************************************************************\ Copyright (c) 2004-2007 threewater@up-tech.com, All rights reserved. by threewter 2004.4.26 \************************

serial_pal.v

module serial_pal(clk,reset,en,in,out); input clk,reset,en,in; output[3:0] out; reg[3:0] out; always @(posedge clk) begin if(reset) out

serial2.v

module serial2(q,a,clk); output q,a; input clk; reg q,a; always @(posedge clk) begin a=~q; q=~q; end endmodule